/* =========================================================
   VERSÁTIL · MANUTENÇÃO PREDIAL & CONSTRUÇÃO
   Paleta e tipografia extraídas do site original (base44).
   ========================================================= */

:root {
    --background: 60 8% 95%;
    --foreground: 240 2% 10%;
    --primary: 14 49% 47%;
    --primary-foreground: 60 8% 95%;
    --secondary: 60 3% 81%;
    --muted-foreground: 240 2% 38%;
    --border: 240 4% 82%;

    --font-heading: "Syne", ui-sans-serif, system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-mono);
    font-size: 18px;
    line-height: 1.6;
    cursor: crosshair;
    overflow-x: hidden;
}

::selection {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.tag {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.95;
}

h1 {
    font-size: clamp(2.75rem, 8vw, 4rem);
}

h1 .destaque {
    color: hsl(var(--primary));
    font-size: 0.8em;
}

h2 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    overflow-wrap: break-word;
}

h2 .destaque {
    color: hsl(var(--primary));
}

h2 .contorno {
    color: transparent;
    -webkit-text-stroke: 1px hsl(var(--foreground));
}

.description,
.secao-intro {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
}

/* ===== LOGO / NAV FIXOS ===== */

.logo-mark {
    height: 1.75rem;
    width: 1.75rem;
    color: hsl(var(--foreground));
    flex-shrink: 0;
}

.logo-accent {
    fill: hsl(var(--primary));
}

.logo-word {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.logo-fixo {
    position: fixed;
    left: 1.25rem;
    top: 1.25rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: hsl(var(--background) / 0.85);
    border: 1px solid hsl(var(--foreground) / 0.15);
    padding: 0.5rem 0.75rem;
}

.nav-fixa {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 50;
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.nav-fixa.oculto,
.menu-toggle.oculto {
    opacity: 0;
    pointer-events: none;
}

.nav-link {
    position: relative;
    padding: 0.25rem 0;
    color: hsl(var(--foreground) / 0.7);
    transition: color 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1px;
    width: 0;
    background: hsl(var(--primary));
    transition: width 0.3s;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 50;
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid hsl(var(--foreground));
    background: hsl(var(--background));
    transition: opacity 0.3s;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: hsl(var(--foreground));
    position: relative;
    transition: transform 0.25s, opacity 0.25s;
}

.menu-icon::before {
    position: absolute;
    top: -6px;
}

.menu-icon::after {
    position: absolute;
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.menu-mobile {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: hsl(var(--background));
}

.menu-mobile.aberto {
    display: flex;
}

.nav-link-mobile {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.75rem;
}

.nav-link-mobile span {
    color: hsl(var(--primary));
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-right: 0.75rem;
}

@media (min-width: 768px) {
    .nav-fixa {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
}

/* ===== SEÇÕES ===== */

.secao-header {
    max-width: 72rem;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.secao-intro {
    max-width: 24rem;
    flex: 0 1 24rem;
}

.secao-header > * {
    min-width: 0;
}

.secao-header > div:first-child {
    flex: 1 1 auto;
}

#processo,
#monografia,
#contato {
    position: relative;
    padding: 6rem 1.5rem;
}

@media (min-width: 640px) {
    #processo, #monografia, #contato { padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (min-width: 768px) {
    #processo, #monografia, #contato { padding: 10rem 4rem; }
    .secao-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 6rem;
    }
}

.processo > *,
.trabalhos > *,
.orcamento > * {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.trabalhos {
    background: hsl(var(--secondary) / 0.4);
}

/* ===== HERO ===== */

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-imagem {
    position: relative;
    height: 45vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-imagem {
        height: auto;
    }
}

.hero-imagem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-imagem-gradiente {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--background) / 0.4), transparent);
}

.hero-imagem-legenda {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(60 8% 95% / 0.8);
}

.hero-conteudo {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 1.5rem;
}

@media (min-width: 640px) {
    .hero-conteudo { padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (min-width: 768px) {
    .hero-conteudo { padding: 0 4rem; }
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.logo-mark-grande {
    height: 3rem;
    width: 3rem;
}

.logo-word-grande {
    font-size: 1.75rem;
}

.hero h1 {
    margin-bottom: 1.25rem;
}

.hero .subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    color: hsl(var(--foreground) / 0.75);
    margin-bottom: 2rem;
}

.hero .description {
    max-width: 28rem;
    margin-bottom: 2.5rem;
}

.cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.55rem 1.1rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s;
}

.cta:hover {
    background: hsl(var(--foreground));
}

.cta-accent {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    height: 0.5rem;
    width: 0.5rem;
    background: hsl(var(--primary));
}

.hero-role {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-role svg {
    animation: quicar 1s infinite;
}

@keyframes quicar {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(.8,0,1,1); }
    50% { transform: none; animation-timing-function: cubic-bezier(0,0,.2,1); }
}

/* ===== ACORDEÃO (PROCESSO) ===== */

.acordeao {
    max-width: 72rem;
    margin: 0 auto;
    border-top: 1px solid hsl(var(--foreground) / 0.2);
}

.acordeao-item {
    border-bottom: 1px solid hsl(var(--foreground) / 0.2);
}

.acordeao-cabecalho {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    text-align: left;
}

@media (min-width: 768px) {
    .acordeao-cabecalho { gap: 2rem; padding: 2rem 0; }
}

.acordeao-codigo {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    width: 4rem;
    flex-shrink: 0;
}

.acordeao-titulo {
    flex: 1;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.5rem;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .acordeao-titulo { font-size: 2.25rem; }
}

.acordeao-item:hover .acordeao-titulo {
    color: hsl(var(--primary));
}

.acordeao-icone {
    flex-shrink: 0;
}

.acordeao-corpo {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.acordeao-item.aberto .acordeao-corpo {
    max-height: 60rem;
}

.acordeao-corpo-interno {
    padding: 0 0 2rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .acordeao-corpo-interno {
        padding-left: 6rem;
    }
}

.acordeao-desc-camadas {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .acordeao-desc-camadas {
        grid-template-columns: 1fr 1fr;
    }
}

.acordeao-desc {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

.camadas-titulo {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.75rem;
}

.camada-linha {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid hsl(var(--foreground) / 0.15);
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.camada-linha .camada-num {
    color: hsl(var(--primary));
    font-size: 10px;
}

/* ===== FOTOS DO SERVIÇO (fileira + lightbox) ===== */

.fotos-fileira {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.foto-thumb {
    flex: 0 0 auto;
    height: 4.5rem;
    width: 4.5rem;
    padding: 0;
    border: 1px solid hsl(var(--foreground) / 0.2);
    overflow: hidden;
    background: hsl(var(--secondary));
    transition: border-color 0.2s;
}

.foto-thumb:hover {
    border-color: hsl(var(--primary));
}

.foto-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(240 2% 10% / 0.92);
    padding: 1.5rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-conteudo img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid hsl(60 8% 95% / 0.2);
}

.lightbox-contador {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: hsl(60 8% 95% / 0.8);
}

.lightbox-fechar {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    height: 2.75rem;
    width: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsl(60 8% 95% / 0.4);
    color: hsl(60 8% 95%);
    background: transparent;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsl(60 8% 95% / 0.4);
    color: hsl(60 8% 95%);
    background: transparent;
}

.lightbox-anterior {
    left: 1.25rem;
}

.lightbox-proxima {
    right: 1.25rem;
}

.lightbox-fechar:hover,
.lightbox-nav:hover {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
}

/* ===== TRABALHOS / PROJETOS ===== */

.lista-projetos {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

@media (min-width: 768px) {
    .lista-projetos { gap: 8rem; }
}

.projeto-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .projeto-item {
        grid-template-columns: repeat(12, 1fr);
        gap: 2.5rem;
    }
    .projeto-item:nth-child(even) .projeto-visual { order: 2; }
    .projeto-item:nth-child(even) .projeto-info { order: 1; }
}

.projeto-visual {
    grid-column: span 8;
}

.projeto-info {
    grid-column: span 4;
}

@media (min-width: 768px) {
    .projeto-info { padding-top: 2rem; }
}

.slider-moldura {
    position: relative;
    border: 1px solid hsl(var(--foreground) / 0.2);
}

.slider-canto {
    position: absolute;
    height: 1rem;
    width: 1rem;
    border-color: hsl(var(--primary));
    z-index: 2;
}
.slider-canto-tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.slider-canto-tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.slider-canto-bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }
.slider-canto-br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }

.slider-rodape {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
}

.slider-antes-depois {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    background: hsl(var(--secondary));
}

.slider-antes-depois img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
}

.slider-camada-antes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slider-etiqueta {
    position: absolute;
    top: 0.75rem;
    z-index: 20;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--background));
    background: hsl(var(--foreground) / 0.7);
    padding: 0.25rem 0.5rem;
}

.slider-etiqueta-depois { right: 0.75rem; }
.slider-etiqueta-antes { left: 0.75rem; }

.slider-divisor {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 30;
    width: 1px;
    background: hsl(var(--background));
    pointer-events: none;
}

.slider-alca {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    height: 2.5rem;
    width: 2.5rem;
    border: 1px solid hsl(var(--foreground));
    background: hsl(var(--background));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-indisponivel {
    position: absolute;
    inset: 0;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: hsl(var(--secondary));
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
}

.projeto-codigo {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
}

.projeto-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .projeto-info h3 { font-size: 2.25rem; }
}

.projeto-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.25rem;
}

.projeto-meta div {
    margin-bottom: 0.25rem;
}

.projeto-notas {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: hsl(var(--foreground) / 0.8);
    line-height: 1.7;
}

/* ===== ORÇAMENTO / FORMULÁRIO ===== */

.orcamento-caixa {
    max-width: 72rem;
    margin: 0 auto;
}

.form-orcamento {
    display: grid;
    gap: 2.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.tipo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tipo-grid { grid-template-columns: repeat(3, 1fr); }
}

.tipo-botao {
    position: relative;
    text-align: left;
    padding: 1rem 1.25rem;
    border: 1px solid hsl(var(--foreground) / 0.25);
    background: hsl(var(--background));
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.tipo-botao:hover {
    border-color: hsl(var(--foreground));
}

.tipo-botao.selecionado {
    border-color: hsl(var(--primary));
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.tipo-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.tipo-nome {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.tipo-botao.selecionado .tipo-marcador {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    height: 0.5rem;
    width: 0.5rem;
    background: hsl(var(--primary-foreground));
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
    .form-full { grid-column: span 2; }
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid hsl(var(--foreground) / 0.3);
    padding: 0.75rem 0;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: hsl(var(--foreground));
}

.form-input:focus {
    outline: none;
    border-bottom-color: hsl(var(--primary));
}

.form-textarea {
    resize: none;
}

.form-envio {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-orcamento {
    position: relative;
    border: 2px solid hsl(var(--primary));
    padding: 1.25rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--primary));
    transition: background 0.3s, color 0.3s;
}

.btn-orcamento:hover:not(:disabled) {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-orcamento:disabled {
    opacity: 0.5;
    cursor: default;
}

.btn-canto {
    position: absolute;
    height: 0.75rem;
    width: 0.75rem;
    border: 1px solid hsl(var(--primary));
}

.btn-canto-tl { top: -0.375rem; left: -0.375rem; }
.btn-canto-br { bottom: -0.375rem; right: -0.375rem; }

.orcamento-nota {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    max-width: 20rem;
}

.orcamento-sucesso {
    border: 1px solid hsl(var(--foreground));
    padding: 3rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .orcamento-sucesso { padding: 4rem 3rem; }
}

.sucesso-icone {
    margin: 0 auto 1.5rem;
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border: 2px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.orcamento-sucesso h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.orcamento-sucesso p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    max-width: 28rem;
    margin: 0 auto;
    line-height: 1.7;
}

.link-reset {
    margin-top: 2rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.link-reset:hover {
    color: hsl(var(--primary));
}

/* ===== RODAPÉ ===== */

footer {
    border-top: 1px solid hsl(var(--foreground) / 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-imagem {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .footer-imagem { height: auto; }
}

.footer-imagem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.footer-contato {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-contato { padding: 3rem; }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s;
}

.footer-link:not(.footer-link-static):hover {
    color: hsl(var(--primary));
}

.footer-link-static {
    color: hsl(var(--muted-foreground));
}

.footer-bottom {
    border-top: 1px solid hsl(var(--foreground) / 0.2);
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 640px) {
    .footer-bottom { flex-direction: row; padding-left: 2.5rem; padding-right: 2.5rem; }
}

.footer-marca {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-diamante {
    height: 0.5rem;
    width: 0.5rem;
    background: hsl(var(--primary));
    transform: rotate(45deg);
}

.footer-dev-logo {
    height: 1.75rem;
    width: auto;
}
