/* ==========================================================================
   1. RESET E CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

/* ACESSIBILIDADE — Foco visível para navegação por teclado */
:focus-visible {
    outline: 2px solid #DCC9B6;
    outline-offset: 4px;
    border-radius: 3px;
}

/* Elementos com foco customizado não recebem outline duplo */
.step-input:focus-visible,
.menu-btn:focus-visible,
.btn-close:focus-visible {
    outline: none;
}

/* Classe utilitária para ocultar visualmente mas manter acessível */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip link — visível apenas ao receber foco */
.skip-link {
    position: fixed;
    top: -100%;
    left: 24px;
    padding: 12px 24px;
    background-color: #DCC9B6;
    color: #252525;
    font-family: 'Degitan', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    z-index: 99999;
    transition: top 0.2s ease;
}

.skip-link:focus-visible {
    top: 0;
    outline: none;
}

.page-fade {
    position: fixed;
    inset: 0;
    background: #252525;
    z-index: 99998;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.page-fade--out {
    opacity: 0;
}

body {
    background-color: #252525;
    min-height: 100vh;
    font-family: 'Degitan', sans-serif;
    cursor: none;
}

/* ==========================================================================
   2. IMPORTAÇÃO DE FONTES
   ========================================================================== */
@font-face {
    font-family: 'Degitan';
    src: url('../fonts/Degitan/Degitan Sans Variable-VF.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Gretha Serif';
    src: url('../fonts/Gretha/Gretha Serif Var-VF.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

/* ==========================================================================
   3. CURSOR PERSONALIZADO (Bolinha Vermelha)
   ========================================================================== */

#btn-topo {
    position: fixed;
    bottom: 48px;
    right: 48px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#btn-topo.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.diagnostico-ativo #btn-topo {
    opacity: 0 !important;
    pointer-events: none !important;
}

#btn-topo:focus,
#btn-topo:focus-visible {
    outline: none;
    box-shadow: none;
}

.cursor-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 100000;
    will-change: transform;
}

.cursor-custom::after {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid #DCC9B6;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    transition:
        width  0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        height 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        margin 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cursor-custom.is-hover::after {
    width: 68px;
    height: 68px;
    margin: -34px 0 0 -34px;
}

/* ==========================================================================
   4. LENIS (Scroll Suave)
   ========================================================================== */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* ==========================================================================
   5. NAVBAR
   ========================================================================== */
@keyframes navbar-appear {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    margin-top: 32px;
    margin-bottom: 32px;
    font-size: 28px;
    text-transform: uppercase;
    color: #DCC9B6;
    font-family: 'Degitan', sans-serif;
}

/* NAVBAR FLUTUANTE — páginas normais */
.navbar.is-floating {
    position: fixed;
    top: 16px;
    left: 24px;
    right: 24px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 24px;
    height: 58px;
    background-color: rgba(10, 15, 21, 0.45);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    color: #DCC9B6;
    animation: navbar-appear 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* NAVBAR FLUTUANTE — páginas de case: efeito vidro */
.navbar.case-page.is-floating {
    background-color: rgba(10, 15, 21, 0.45);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(161, 202, 204, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    color: #DCC9B6;
}

.navbar.case-page.is-floating .nav-phone,
.navbar.case-page.is-floating .menu-btn {
    color: #DCC9B6;
}

.navbar.case-page {
    color: #ffffff;
}

.navbar.case-page .nav-phone,
.navbar.case-page .menu-btn {
    color: #ffffff;
}

.nav-phone, .menu-btn {
    color: inherit;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: 300;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* ==========================================================================
   6. FOTO E LOGO
   ========================================================================== */
.foto-topo {
    text-align: center;
    margin-bottom: 80px;
}

.foto-topo img {
    width: 126px;
    height: auto;
}

.logo-full-width {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.logo-svg {
    width: 100%;
    display: block;
    margin: 0 auto 112px auto; 
}

/* ==========================================================================
   7. BLOCO DE TEXTO E AÇÃO
   ========================================================================== */
.bloco-texto {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 48px;
}

.bloco-texto h1 {
    font-family: 'Gretha Serif', serif;
    font-size: 38px;
    font-weight: bold;
    line-height: 160%;
    color: #DCC9B6;
    margin-bottom: 24px;
    word-wrap: break-word;
}

/* Ajuste do botão */
.btn-acao {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    color: #7373D0;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Degitan', sans-serif;
    margin-bottom: 112px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.subtitulo {
    font-size: 28px;
    color: #9E8468;
    line-height: 1.6;
    margin-bottom: 112px;
}

.btn-acao:hover {
    color: #3F3FCC;
}

.btn-seta {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    /* currentColor herda a cor do .btn-acao e transita junto com ela */
}

/* Variáveis de Design: Garantem escalabilidade e manutenção centralizada */
:root {
    --bg-dark: #252525;
    --sand-300: #DCC9B6;
    --sand-500: #9E8468;
    --sand-accent: #6D4C3D;
    --neutral-700: #404040;

    /* Mesmo grid das cases (ver css/cases.css) — repetido aqui porque
       style.css carrega em todas as páginas, não só nas cases. */
    --grid-max: 1440px;
    --grid-margin: 115px;
    --grid-gutter: 24px;
    --grid-col: calc((var(--grid-max) - (var(--grid-margin) * 2) - (var(--grid-gutter) * 11)) / 12);
}

/* ==========================================================================
   8. SEÇÃO DE PROJETOS (ATUALIZADO COM EFEITO HOVER)
   ========================================================================== */
.project-section {
    padding-top: 40px;
    border-top: none;
}

.section-title {
    font-family: 'Degitan', sans-serif;
    font-size: 28px;
    color: #DCC9B6;
    margin: 0 48px 40px 48px;
    font-weight: 300;
}

.project-card {
    position: relative; /* Isso é o que segura os elementos absolutos dentro dele */
    width: 100%;
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
    height: 216px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.project-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 48px;
    height: 100%;
}

.project-title {
    font-family: 'Gretha Serif', serif;
    font-size: 96px;
    font-weight: 700;
    color: var(--sand-300);
    
    /* Ajustes finos para centralização visual */
    line-height: 0.8;      /* Reduz o espaço fantasma superior da letra */
    padding-top: 10px;     /* Empurra o texto levemente para baixo para centralizar */
    
    transition: opacity 0.4s ease;
}

.project-info {
    display: flex;
    align-items: center;
    gap: 80px;
    transition: opacity 0.4s ease;
    margin-right: 80px;
}

.description {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    color: #9E8468;
    line-height: 160%;
    width: 401px;
}

/* Seta fixa absoluta à direita */
.arrow {
    position: absolute;
    right: 48px;
    width: 24px;
    pointer-events: none;
}

.hover-content {
    position: absolute;
    left: 48px;
    opacity: 0;
    transition: opacity 0.4s ease;
    
    /* Aplicação da fonte Gretha */
    font-family: 'Gretha Serif', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--sand-500);
    
    /* Alinhamento dos ícones com o texto */
    display: flex;
    align-items: center;
    gap: 15px; /* Espaçamento entre texto e ícone */
    pointer-events: none;
}

/* Ajuste fino da imagem do ícone */
.sep-icon {
    width: 20px; /* Ajuste o tamanho conforme seu arquivo original */
    height: auto;
}

/* Lógica do Hover */
.project-card:hover .project-title,
.project-card:hover .project-info {
    opacity: 0;
}

.project-card:hover .hover-content {
    opacity: 1;
}

/* ==========================================================================
   ANIMAÇÃO HOVER: SLIDE SUAVE
   ========================================================================== */

/* 1. Estado inicial dos elementos */
.project-title, 
.project-info {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    transform: translateY(0);
}

.hover-content {
    position: absolute;
    left: 48px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(30px); /* Começa um pouco abaixo */
    font-family: 'Gretha Serif', serif;
    font-size: 28px;
    font-weight: bold;
    color: var(--sand-500);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 2. Lógica do Hover no Card */
.project-card:hover .project-title {
    opacity: 0;
    transform: translateY(-30px); /* Desliza para cima e some */
}

.project-card:hover .project-info {
    opacity: 0;
    transform: translateY(-30px); /* Desliza para cima e some */
}

.project-card:hover .hover-content {
    opacity: 1;
    transform: translateY(0); /* Desliza para a posição original */
}

/* ==========================================================================
   9. SEÇÃO DE CONTATO E RODAPÉ
   ========================================================================== */

/* Container geral da seção */
.contact-section {
    margin-top: 112px;
    margin-bottom: 80px;
    width: 100%;
}

/* Container Flex: define altura de 678px e garante alinhamento */
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Estica ambos os lados para preencher os 678px */
    height: 678px;
    width: 100%;
    overflow: hidden; /* Garante que nada vaze do container */
}

/* Coluna da esquerda (Texto) */
.text-column {
    padding-left: 48px;
    max-width: 700px; /* Múltiplo de 8 (48x8) para manter consistência */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente o texto na altura do bloco */
}

/* Título de Contato */
.contact-title {
    font-family: 'Gretha Serif', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 160%;
    color: #DCC9B6;
    margin-bottom: 24px;
}

/* Saudação (Tudo de bom...) */
.greeting {
    font-family: 'Degitan', sans-serif;
    font-size: 28px;
    line-height: 130%;
    color: #9E8468;
    margin-bottom: 80px;
}

/* Rodapé do bloco (Design e código...) */
.footer-text {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    line-height: 160%;
    color: #9E8468;
}

/* Estilização do link LinkedIn (Bold apenas no termo) */
.footer-text a {
    color: #9E8468;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
    outline: none;
}

.footer-text a:hover {
    color: #DCC9B6; /* Efeito hover leve para o link */
}

/* Coluna da direita (Imagem colada na borda) */
.image-column {
    height: 100%;
    flex-shrink: 0;
}

.image-column img {
    height: 100%;        /* Força a altura da foto ser 678px */
    width: auto;         /* Preserva proporção da imagem original */
    display: block;      /* Elimina respiros indesejados */
    object-fit: cover;   /* Garante que preencha a área sem distorcer */
}

.no-preloader .preloader {
    display: none !important;
}

.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #252525;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader {
    opacity: 1;
    visibility: visible;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Fundo: Camada 0 */
.bg-loader {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('../imagens/bg-direita.png');
    background-size: cover;
    background-position: center;
    z-index: 1; /* Camada inferior */
    animation: panBackground 20s linear infinite;
    will-change: transform;
}
/* Animação lenta da imagem */
@keyframes panBackground {
    from { transform: translateX(0); }
    to { transform: translateX(10%); }
}


/* Texto: Camada 1 (acima do fundo) */
.loader-content {
    position: relative;
    z-index: 2; /* Garante que o texto fique por cima */
    display: flex;
    justify-content: center;
    align-items: center;
}


.loader-percentage {
    font-family: 'Gretha Serif', serif;
    font-size: 152px;
    font-weight: 900;
    color: #9E8468;
    z-index: 1;
}


/* Bloco CTA - Altura 426px, bordas precisas */
.contact-cta {
    margin: 112px 0;
    height: 426px;
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-cta-content {
    padding-left: 48px;
    padding-right: 48px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cta-email-link {
    display: block;
    line-height: 0;
}

.cta-email-link img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-question {
    font-family: 'Degitan', sans-serif;
    font-size: 28px;
    font-weight: 300; /* Regular */
    color: #DCC9B6;
    margin: 0;
    margin-bottom: 36px;
}



.footer-section {
    padding-top: 80px;
    text-align: center;
    background-color: #252525;
}

.status-title {
    font-family: 'Gretha Serif', serif;
    font-size: 38px;
    font-weight: 700;
    color: #DCC9B6;
    margin: 0;
}

.status-text {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    color: #9E8468;
    margin: 8px auto 24px auto;
    max-width: 600px; /* Mantém a leitura confortável */
}

.contact-info {
    font-family: 'Degitan', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #9E8468;
    line-height: 1.4;
}

/* Links Sociais */
.social-links {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.social-links a img {
    height: 40px;
    object-fit: contain;
}

/* Gráfico de Rodapé */
.footer-graphic {
    margin-top: 112px;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 0;
    font-size: 0;
}

.footer-graphic img {
    width: 100%;
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}

/* Enquanto <html> tem esta classe (removida pelo script.js só depois de
   window.load), nenhuma transição roda — evita o "flash" de elementos com
   transform animando na primeira renderização (ex.: recarregar a página). */
html.preload .menu-overlay {
    transition: none !important;
}

/* ====== SUPER MENU — NOVO LAYOUT ====== */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    background-color: #DCC9B6;
    transform: translateY(-100%);
    transition: transform 0.52s cubic-bezier(0.87, 0, 0.13, 1);
}

.menu-overlay.is-open {
    pointer-events: auto;
    transform: translateY(0);
}

.menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 24px var(--grid-margin);
    display: flex;
    flex-direction: column;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-logo {
    display: block;
    line-height: 0;
    text-decoration: none;
}

.menu-logo img {
    height: 28px;
    width: auto;
    display: block;
}

.btn-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    line-height: 0;
}

.btn-close img {
    height: 28px;
    width: auto;
    display: block;
}

.menu-grid {
    display: grid;
    /* 3 colunas de 4 (das 12 do grid da case) cada, com o mesmo gutter. */
    grid-template-columns: repeat(3, calc(var(--grid-col) * 4 + var(--grid-gutter) * 3));
    align-items: start;
    margin-top: 92px;
    gap: 0 var(--grid-gutter);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-bottom: 14px;
}

.nav-links li:last-child {
    margin-bottom: 0;
}

.nav-links a {
    font-family: 'Degitan', sans-serif;
    font-weight: 300;
    font-size: 38px;
    color: #252525;
    text-decoration: none;
    display: block;
    line-height: 1;
    text-transform: uppercase;
    padding-left: 0;
    transition: color 0.2s ease;
}

.nav-links a.is-active {
    color: #252525;
    padding-left: 0;
}

.nav-links a:hover {
    color: #876F56;
    padding-left: 0;
}

.menu-sub {
    pointer-events: none;
    margin-left: -100px;
}

.menu-sub.is-visible {
    pointer-events: auto;
}

.menu-sub-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-sub-links li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.menu-sub-links li:last-child {
    margin-bottom: 0;
}

.menu-sub.is-visible .menu-sub-links li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0s; }
.menu-sub.is-visible .menu-sub-links li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.07s; }
.menu-sub.is-visible .menu-sub-links li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.14s; }
.menu-sub.is-visible .menu-sub-links li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.21s; }

.menu-sub-links a {
    font-family: 'Degitan', sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: #252525;
    text-decoration: none;
    display: block;
    line-height: 1;
    transition: color 0.2s ease;
}

.menu-sub-links a:visited {
    color: #252525;
}

.menu-sub-links a.is-active,
.menu-sub-links a.is-active:visited {
    color: #876F56;
}

.menu-sub-links a:hover,
.menu-sub-links a:visited:hover {
    color: #876F56;
}

.menu-sub-links a:focus,
.menu-sub-links a:focus-visible {
    color: #252525;
    outline: none;
}

.menu-sub-links a.is-active:focus,
.menu-sub-links a.is-active:focus-visible {
    color: #876F56;
}

.menu-preview-label {
    font-family: 'Degitan', sans-serif;
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 32px;
    line-height: 1.25;
}

.menu-preview-desc {
    font-family: 'Degitan', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
    color: #876F56;
    display: block;
    text-decoration: underline;
    text-decoration-color: rgba(135, 111, 86, 0.5);
    text-decoration-thickness: 0.5px;
    text-underline-offset: 3px;
}

.menu-preview-desc strong {
    font-weight: 700;
    color: #876F56;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 28px;
    margin-top: auto;
}

.menu-socials {
    display: flex;
    flex-direction: row;
    gap: 41px;
}

.menu-socials a {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #876F56;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-socials a:hover {
    color: #876F56;
}

.social-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
    top: -2px;
}

.menu-brand {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #876F56;
    display: inline-block;
    width: fit-content;
}

.menu-preview {
    max-width: 296px;
    margin-left: auto;
    margin-right: -90px; /* ajuste esse valor pra controlar o quanto mais pra direita */
}

/* ==========================================================================
   10. NAVBAR Z-INDEX (garante que fique acima do overlay de diagnóstico)
   ========================================================================== */
.navbar {
    position: relative;
    z-index: 1000;
}

/* ==========================================================================
   11. PÁGINA DE CONTATO — INTRO
   ========================================================================== */
.contato-intro {
    padding: 112px 48px 112px 48px;
    transition: opacity 0.4s ease;
}

.bloco-contato {
    max-width: 960px;
}

.bloco-contato h1 {
    font-family: 'Gretha Serif', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #DCC9B6;
    margin-bottom: 28px;
}

.subtitulo-contato {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #DCC9B6;
    line-height: 160%;
    margin-bottom: 56px;
    max-width: 680px;
}

.btn-iniciar-diag {
    margin-bottom: 0;
}

/* ==========================================================================
   12. DIAGNÓSTICO — OVERLAY
   ========================================================================== */
.diagnostico-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #252525;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.diagnostico-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.diag-step {
    position: absolute;
    left: 48px;
    right: 48px;
    top: 192px; /* 80px navbar + 112px gap */
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.diag-step.active {
    opacity: 1;
    pointer-events: none;
    transform: translateY(0);
}

.diagnostico-overlay.is-open .diag-step.active {
    pointer-events: all;
}

.diag-step.exiting {
    opacity: 0;
    transform: translateY(-40px);
}

.step-counter {
    font-family: 'Degitan', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #5D5D5D;
    display: block;
    margin-bottom: 56px;
}

.step-question {
    font-family: 'Gretha Serif', serif;
    font-size: 38px;
    font-weight: 700;
    color: #DCC9B6;
    line-height: 160%;
    margin-bottom: 28px;
}

.input-wrapper {
    width: 100%;
    margin-bottom: 112px;
}

.step-input {
    width: 100%;
    height: 64px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #404040;
    outline: none;
    font-family: 'Degitan', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #7E7E7E;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: text;
    caret-color: #DCC9B6;
}

.step-input:focus {
    border-bottom-color: #DCC9B6;
}

.step-input::placeholder {
    color: #5D5D5D;
    font-weight: 300;
}

.campo-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* .btn-avancar herda tudo de .btn-acao — sem estilos adicionais necessários */

.btn-avancar:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.diag-erro {
    display: none;
    font-family: 'Degitan', sans-serif;
    font-size: 14px;
    color: #E06666;
    margin-top: 16px;
}

.diag-erro.is-visible {
    display: block;
}

.diag-sucesso .step-question {
    margin-bottom: 24px;
}

.sucesso-texto {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    color: #9E8468;
    font-weight: 300;
}

/* ==========================================================================
   13. DIVIDER E RODAPÉ DA PÁGINA DE CONTATO
   ========================================================================== */
.contato-divider {
    height: 1px;
    background-color: #404040;
    margin: 0;
}

.footer-contato {
    padding-top: 112px;
    padding-bottom: 0;
    transition: opacity 0.4s ease;
}

/* ==========================================================================
   14. PÁGINA SOBRE — HERO
   ========================================================================== */
.sobre-hero {
    padding: 112px 48px 224px;
    border-bottom: 1px solid #404040;
    text-align: left;
}

.sobre-saudacao {
    font-family: 'Gretha Serif', serif;
    font-size: 96px;
    font-weight: 500;
    color: #DCC9B6;
    line-height: 1.1;
    margin: 0 0 32px;
    padding-top: 40px;
    display: block;
}

@keyframes sobre-palavra-revelar {
    from { transform: translateY(28px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.sobre-palavra {
    display: inline-block;
}

.sobre-palavra span {
    display: inline-block;
    animation: sobre-palavra-revelar 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sobre-nome {
    font-family: 'Gretha Serif', serif;
    font-size: 96px;
    font-weight: 500;
    color: #DCC9B6;
    line-height: 1.1;
    margin: 0;
    display: block;
}

/* ==========================================================================
   15. SOBRE — BIO
   ========================================================================== */
.sobre-bio {
    padding: 112px 48px;
}

.sobre-bio-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sobre-bio-texto {
    font-family: 'Degitan', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #DCC9B6;
    line-height: 160%;
    width: 586px;
    flex-shrink: 0;
}

.sobre-bio-destaque {
    font-weight: 700;
}

.sobre-bio-fotos {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
}

.sobre-bio-fotos > img {
    width: 160px;
    height: 213px;
    display: block;
}

.sobre-bio-foto-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sobre-bio-foto-wrapper img {
    width: 203px;
    height: 360px;
    display: block;
}

.sobre-bio-foto-caption {
    font-family: 'Degitan', sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    color: #DCC9B6;
    line-height: 140%;
    max-width: 203px;
    text-align: right;
}

/* ==========================================================================
   16. SOBRE — VALORES / ADORO TRABALHAR
   ========================================================================== */
.sobre-valores {
    padding: 176px 48px;
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.valores-frase {
    font-family: 'Gretha Serif', serif;
    font-size: 54px;
    font-weight: 500;
    color: #DCC9B6;
    line-height: 140%;
    max-width: 860px;
}

.valores-frase em {
    font-style: italic;
    color: #9E8468;
}

.valores-simbolo {
    display: block;
    width: auto;
    height: auto;
    animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ==========================================================================
   17. SOBRE — TAGS (CLIENTES / PROJETOS)
   ========================================================================== */
.sobre-tags-section {
    padding: 0 48px 112px;
}

.sobre-tags-clientes,
.sobre-tags-projetos {
    padding: 224px 48px;
    border-bottom: 1px solid #404040;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 56px;
}

.sobre-tags-clientes .sobre-tags-titulo,
.sobre-tags-projetos .sobre-tags-titulo {
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 54px;
    text-wrap: pretty;
}

.sobre-tags-clientes .sobre-tags-titulo {
    max-width: 340px;
}

.sobre-tags-projetos .sobre-tags-titulo {
    max-width: 560px;
}

.sobre-tags-clientes .tags-grid,
.sobre-tags-projetos .tags-grid {
    align-content: flex-start;
    max-width: 560px;
    margin-left: 360px;
}

.sobre-tags-projetos .tags-grid {
    max-width: 680px;
    margin-left: 240px;
}

.sobre-tags-titulo {
    font-family: 'Gretha Serif', serif;
    font-size: 32px;
    font-weight: 500;
    color: #DCC9B6;
    line-height: 160%;
    margin-bottom: 32px;
}

.sobre-tags-titulo em {
    font-style: italic;
    color: #9E8468;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Projetos */
.projetos-hero {
    padding: 112px 48px;
    text-align: center;
}

.projetos-hero-titulo {
    font-family: 'Gretha Serif', serif;
    font-size: 54px;
    font-weight: 500;
    color: #DCC9B6;
    line-height: 1.2;
    margin: 0 auto 40px;
    max-width: 860px;
    text-wrap: balance;
}

.projetos-hero-desc {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #9E8468;
    line-height: 160%;
    margin: 0 auto;
    max-width: 600px;
}

/* Processos */
.processos-hero {
    padding: 112px 48px 160px;
    border-bottom: 1px solid #404040;
    text-align: center;
}

.processos-hero-label {
    display: block;
    font-family: 'Degitan', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #9E8468;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 40px;
}

.processos-hero-titulo {
    font-family: 'Gretha Serif', serif;
    font-size: 72px;
    font-weight: 500;
    color: #DCC9B6;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 860px;
    text-wrap: balance;
}

.processos-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 48px;
    border-bottom: 1px solid #404040;
}

.processos-step-numero {
    font-family: 'Degitan', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #9E8468;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.processos-step-titulo {
    font-family: 'Gretha Serif', serif;
    font-size: 48px;
    font-weight: 700;
    color: #DCC9B6;
    line-height: 1.15;
    margin: 0 0 28px;
}

.processos-step-desc {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #9E8468;
    line-height: 160%;
    margin: 0;
    max-width: 600px;
}

.processos-step-icon {
    margin-top: 112px;
    display: block;
}

.processos-step--last {
    border-bottom: none;
}

/* Depoimentos */
.sobre-depoimentos {
    padding: 180px 0;
    border-bottom: 1px solid #404040;
    overflow: hidden;
}

.depoimentos-titulo {
    font-family: 'Gretha Serif', serif;
    font-size: 54px;
    font-weight: 500;
    color: #DCC9B6;
    line-height: 1.1;
    text-align: center;
    margin: 0 0 112px;
}

.depoimentos-track {
    display: flex;
    align-items: stretch;
    gap: 64px;
    width: max-content;
    animation: depoimentos-scroll 60s linear infinite;
    cursor: grab;
    padding: 0 48px;
}

.depoimentos-track.is-paused {
    animation-play-state: paused;
}

@keyframes depoimentos-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.depo-item {
    width: 480px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.depo-texto {
    font-family: 'Degitan', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #DCC9B6;
    line-height: 140%;
    margin: 0;
}

.depo-autor {
    font-family: 'Degitan', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #DCC9B6;
    margin: 0;
}

.depo-site {
    font-weight: 300;
    color: #9E8468;
}

.depo-sep {
    flex-shrink: 0;
    width: 1px;
    height: 80px;
    background: #404040;
    align-self: center;
}


.tag {
    font-family: 'Degitan', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #DCC9B6;
    border: 1px solid #404040;
    height: 62px;
    padding: 0 26px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.3s, color 0.3s;
    cursor: default;
}


/* ==========================================================================
   18. SOBRE — DECK DE ROTINA (SCROLL HORIZONTAL)
   ========================================================================== */
.deck-section {
    border-top: 1px solid #404040;
    padding: 80px 0 0;
}

.deck-track {
    display: flex;
    align-items: center;
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
    padding-bottom: 96px;
    margin-bottom: -96px;
}

.deck-track:active { cursor: grabbing; }

/* Sem scrollbar visível */
.deck-track::-webkit-scrollbar { display: none; }
.deck-track { scrollbar-width: none; -ms-overflow-style: none; }

.deck-arrows {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 48px 0 64px;
}

.deck-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #404040;
    border-radius: 50%;
    background: transparent;
    color: #9E8468;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, color 0.25s;
}

.deck-arrow:hover {
    border-color: #9E8468;
    color: #DCC9B6;
}

.deck-arrow:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.deck-intro {
    flex-shrink: 0;
    width: auto;
    padding-left: 48px;
    padding-right: 56px; /* gap antes da primeira imagem */
    display: flex;
    flex-direction: column;
}

.deck-title {
    font-family: 'Gretha Serif', serif;
    font-size: 38px;
    font-weight: 500;
    color: #DCC9B6;
    line-height: 140%;
    margin-bottom: 24px;
    max-width: 520px;
    text-wrap: balance;
}

.deck-subtitle {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #DCC9B6;
    line-height: 160%;
    max-width: 420px;
    margin-bottom: 56px;
    text-wrap: balance;
}


/* ==========================================================================
   19. DECK — ITENS (IMAGEM + TEXTO)
   ========================================================================== */
.deck-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 80px;
}

.deck-item--last {
    margin-right: 48px; /* padding final da track */
}

.deck-item-img {
    width: 354px;
    height: 497px;
    flex-shrink: 0;
    overflow: hidden;
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.38));
}

.deck-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.deck-item-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 200px;
}

.deck-item-title {
    font-family: 'Degitan', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #DCC9B6;
    line-height: 140%;
    text-wrap: pretty;
}

.deck-item-text {
    font-family: 'Degitan', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #9E8468;
    line-height: 140%;
    text-wrap: pretty;
}

.deck-item-text a {
    color: #9E8468;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.deck-item-text a:hover {
    color: #DCC9B6;
}

/* ==========================================================================
   20. SOBRE — RODAPÉ
   ========================================================================== */

.footer-sobre {
    padding-top: 112px;
    padding-bottom: 0;
}

/* ==========================================================================
   21. CASE PAGES (C&A, Pet You Go, etc.)
   ========================================================================== */

.case-hero {
    padding: 112px 48px 80px;
    text-align: center;
    background: #252525;
}

.case-hero-titulo {
    font-family: 'Gretha Serif', serif;
    font-size: 88px;
    font-weight: 400;
    color: #DCC9B6;
    line-height: 1;
    margin-bottom: 24px;
    text-wrap: balance;
}

.case-hero-desc {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #9E8468;
    line-height: 160%;
    margin: 0 auto;
    max-width: 800px;
}

.case-section {
    padding: 80px 48px;
    border-bottom: 1px solid #404040;
}

.case-section--destaque {
    background: rgba(66, 66, 66, 0.25);
}

.case-section-content {
    max-width: 900px;
    margin: 0 auto;
}

.case-section-titulo {
    font-family: 'Gretha Serif', serif;
    font-size: 54px;
    font-weight: 400;
    color: #DCC9B6;
    line-height: 1.2;
    margin-bottom: 40px;
    text-wrap: balance;
}

.case-section-texto {
    font-family: 'Degitan', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #9E8468;
    line-height: 160%;
    margin: 0;
}

.case-abordagem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 56px;
}

.abordagem-item {
    text-align: left;
}

.abordagem-titulo {
    font-family: 'Gretha Serif', serif;
    font-size: 24px;
    font-weight: 400;
    color: #DCC9B6;
    line-height: 1.2;
    margin-bottom: 16px;
}

.abordagem-texto {
    font-family: 'Degitan', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #9E8468;
    line-height: 160%;
    margin: 0;
}

.case-resultados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    margin-top: 56px;
}

.resultado-item {
    text-align: center;
}

.resultado-numero {
    font-family: 'Gretha Serif', serif;
    font-size: 72px;
    font-weight: 400;
    color: #6F1D1B;
    line-height: 1;
    margin: 0 0 16px 0;
}

.resultado-label {
    font-family: 'Degitan', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #9E8468;
    line-height: 160%;
    margin: 0;
}

.case-cta-section {
    padding: 80px 48px;
    text-align: center;
    border-top: 1px solid #404040;
}

.case-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.case-cta-titulo {
    font-family: 'Gretha Serif', serif;
    font-size: 54px;
    font-weight: 400;
    color: #DCC9B6;
    line-height: 1.2;
    margin-bottom: 56px;
    text-wrap: balance;
}

.case-cta-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.case-cta-link {
    font-family: 'Degitan', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #DCC9B6;
    text-decoration: none;
    padding: 16px 32px;
    border: 1px solid #404040;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.case-cta-link:hover {
    background: #6F1D1B;
    border-color: #6F1D1B;
    color: #DCC9B6;
}

.case-cta-link--destaque {
    background: #6F1D1B;
    border-color: #6F1D1B;
}

.case-cta-link--destaque:hover {
    background: transparent;
    border-color: #6F1D1B;
    color: #6F1D1B;
}


/* ==========================================================================
   BARRA DE COOKIES
   ========================================================================== */
/* Mesmo efeito vidro/flutuante do .navbar.is-floating, só que ancorada embaixo. */
.cookie-bar {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 16px;
    z-index: 9500;
    background-color: rgba(10, 15, 21, 0.45);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transform: translateY(calc(100% + 16px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cookie-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-bar-text {
    font-family: 'Degitan', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: var(--sand-300);
    margin: 0;
    max-width: 720px;
}

.cookie-bar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-bar-btn {
    font-family: 'Degitan', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    cursor: pointer;
    border-radius: 100px;
    height: 46px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-bar-recusar {
    background: none;
    border: 1px solid #404040;
    color: var(--sand-300);
}

.cookie-bar-recusar:hover {
    border-color: var(--sand-500);
    color: var(--sand-500);
}

.cookie-bar-aceitar {
    background-color: var(--sand-500);
    border: 1px solid var(--sand-500);
    color: var(--bg-dark);
}

.cookie-bar-aceitar:hover {
    background-color: var(--sand-accent);
    border-color: var(--sand-accent);
    color: var(--sand-300);
}

/* ==========================================================================
   GATE MOBILE — site ainda não tem telas mobile desenhadas; trava o acesso
   em vez de deixar o layout quebrado aparecer. Remover quando o mobile
   estiver desenhado (basta apagar este bloco e a seção 14 do script.js).
   ========================================================================== */
.mobile-gate {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    gap: 16px;
}

.mobile-gate-title {
    font-family: 'Degitan', sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--sand-300);
    margin: 0;
}

.mobile-gate-text {
    font-family: 'Degitan', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: var(--sand-500);
    max-width: 320px;
    margin: 0;
}

.mobile-gate-logo {
    height: 26px;
    width: auto;
    margin-bottom: 8px;
}

.mobile-gate-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.mobile-gate-contact a {
    font-family: 'Degitan', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--sand-300);
    text-decoration: underline;
    text-decoration-color: rgba(220, 201, 182, 0.4);
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.mobile-gate-contact a:hover {
    color: var(--sand-500);
}

.mobile-gate-socials {
    margin-top: 8px;
}

/* Abaixo do frame de 1440px, o super menu deixa de usar as colunas fixas do
   grid da case (que só cabem a 1440px) e volta a ser fluido, senão a partir
   daqui até o gate mobile (1024px) o menu vaza e quebra o layout. */
@media (max-width: 1439px) {
    .menu-content {
        padding: 24px 48px;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0 24px;
    }
}

@media (max-width: 1024px) {
    html, body {
        overflow: hidden !important;
    }

    .mobile-gate {
        display: flex;
    }
}

/* ==========================================================================
   23. RESPONSIVIDADE — MOBILE (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .cookie-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 24px;
    }

    .cookie-bar-actions {
        width: 100%;
    }

    .cookie-bar-btn {
        flex: 1;
        text-align: center;
    }

    /* Navbar */
    .navbar {
        padding: 0 24px;
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 48px;
    }

    /* Cursor personalizado invisível em touch */
    .cursor-custom { display: none; }
    body { cursor: auto; }

    /* Foto e logo */
    .foto-topo { margin-bottom: 40px; }
    .foto-topo img { width: 88px; }
    .logo-svg { margin-bottom: 48px; }

    /* Hero home */
    .bloco-texto { padding: 0 24px; }
    .bloco-texto h1 { font-size: 26px; }
    .subtitulo { font-size: 18px; margin-bottom: 48px; }
    .btn-acao { font-size: 16px; margin-bottom: 64px; }

    /* Seção de projetos */
    .section-title { font-size: 16px; margin: 0 24px 24px; }
    .project-card { height: auto; min-height: 120px; }
    .project-inner { flex-direction: column; align-items: flex-start; margin: 24px; gap: 8px; height: auto; }
    .project-title { font-size: 40px; }
    .project-info { margin-right: 0; gap: 16px; }
    .description { font-size: 15px; width: auto; max-width: 100%; }
    .arrow { right: 24px; }
    .hover-content { display: none; }

    /* Seção contato / hero home */
    .contact-section { margin-bottom: 48px; }
    .contact-content { flex-direction: column; height: auto; }
    .text-column { padding: 48px 24px 40px; max-width: 100%; }
    .contact-title { font-size: 26px; }
    .greeting { font-size: 20px; margin-bottom: 48px; }
    .footer-text { font-size: 15px; }
    .image-column { width: 100%; }
    .image-column img { width: 100%; height: auto; max-height: 420px; object-fit: cover; }

    /* CTA email */
    .contact-cta { margin: 64px 0; height: auto; padding: 64px 0; }
    .contact-cta-content { padding-left: 24px; padding-right: 24px; }
    .cta-question { font-size: 20px; margin-bottom: 24px; }
    .cta-email-link img { max-width: 100%; }

    /* Footer */
    .footer-section { padding-top: 64px; }
    .status-title { font-size: 28px; }
    .status-text { font-size: 16px; }
    .contact-info { font-size: 18px; }
    .social-links { flex-wrap: wrap; gap: 10px; margin-top: 48px; }
    .footer-graphic { margin-top: 64px; }

    /* Menu overlay */
    .menu-content { padding: 20px 24px; }
    .menu-logo img { max-height: 26px; }
    .btn-close img { height: 22px; }
    .menu-grid { grid-template-columns: 1fr; gap: 0; margin-top: 48px; }
    .menu-sub, .menu-preview { display: none; }
    .nav-links a { font-size: 36px; }
    .nav-links li { margin-bottom: 24px; }
    .menu-footer { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 20px; }
    .menu-socials { gap: 16px; flex-wrap: wrap; }
    .menu-socials a { font-size: 14px; line-height: 1.4; }

    /* Sobre — Hero */
    .sobre-hero { padding: 80px 24px 112px; }
    .sobre-saudacao,
    .sobre-nome { font-size: 56px; transform: none; }

    /* Sobre — Bio */
    .sobre-bio { padding: 64px 24px; }
    .sobre-bio-inner { flex-direction: column; gap: 48px; }
    .sobre-bio-texto { width: 100%; font-size: 18px; }
    .sobre-bio-fotos { flex-direction: row; gap: 16px; justify-content: center; }
    .sobre-bio-fotos > img { width: 120px; height: 160px; }
    .sobre-bio-foto-wrapper img { width: 152px; height: 270px; }

    /* Sobre — Valores */
    .sobre-valores { padding: 80px 24px; }
    .valores-frase { font-size: 32px; }

    /* Sobre — Tags clientes/projetos */
    .sobre-tags-clientes,
    .sobre-tags-projetos {
        flex-direction: column;
        align-items: flex-start;
        padding: 64px 24px;
        gap: 32px;
    }
    .sobre-tags-clientes .sobre-tags-titulo,
    .sobre-tags-projetos .sobre-tags-titulo { font-size: 32px; max-width: 100%; }
    .sobre-tags-clientes .tags-grid,
    .sobre-tags-projetos .tags-grid { margin-left: 0; max-width: 100%; }

    /* Sobre — Depoimentos */
    .sobre-depoimentos { padding: 80px 0; }
    .depoimentos-titulo { font-size: 28px; margin: 0 24px 64px; }
    .depo-item { width: 280px; }
    .depo-texto { font-size: 18px; }

    /* Sobre — Deck */
    .deck-section { padding: 48px 0 0; }
    .deck-intro { padding-left: 24px; padding-right: 32px; }
    .deck-title { font-size: 26px; }
    .deck-subtitle { font-size: 18px; }
    .deck-item-img { width: 240px; height: 337px; }

    /* Processos / Soluções */
    .processos-hero { padding: 64px 24px 80px; }
    .processos-hero-titulo { font-size: 38px; }
    .processos-step { padding: 56px 24px; }
    .processos-step-titulo { font-size: 32px; }
    .processos-step-desc { font-size: 16px; }
    .processos-step-icon { margin-top: 64px; }

    /* Projetos */
    .projetos-hero { padding: 64px 24px; }
    .projetos-hero-titulo { font-size: 32px; }
    .projetos-hero-desc { font-size: 16px; }
}

/* Tablet intermediário */
@media (min-width: 769px) and (max-width: 1100px) {

    .navbar { padding: 0 32px; font-size: 20px; }
    .bloco-texto { padding: 0 32px; }
    .bloco-texto h1 { font-size: 30px; }
    .subtitulo { font-size: 20px; }

    .contact-content { height: auto; flex-direction: column; }
    .text-column { padding: 48px 32px; max-width: 100%; }
    .image-column { width: 100%; }
    .image-column img { width: 100%; height: auto; max-height: 500px; object-fit: cover; }

    .project-title { font-size: 64px; }
    .description { width: auto; }
    .project-inner { margin: 0 32px; }
    .arrow { right: 32px; }

    .sobre-bio-inner { gap: 32px; }
    .sobre-bio-texto { width: 420px; }
    .sobre-bio-fotos { gap: 24px; }

    .sobre-tags-clientes,
    .sobre-tags-projetos {
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px;
        gap: 32px;
    }
    .sobre-tags-clientes .tags-grid,
    .sobre-tags-projetos .tags-grid { margin-left: 0; max-width: 100%; }

    .processos-hero-titulo { font-size: 52px; }
    .processos-step-titulo { font-size: 38px; }

    .footer-section { padding-top: 64px; }
    .social-links { flex-wrap: wrap; gap: 10px; }
    .menu-content { padding: 40px 32px; }
    .nav-links a { font-size: 52px; }
}

