/* ==========================================================================
   1. RESET E CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html, body {
    overflow-x: hidden;
}

.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 {
    width: 16px;
    height: 16px;
    background-color: #6F1D1B;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100000;
    will-change: transform;
}

/* ==========================================================================
   4. LENIS (Scroll Suave)
   ========================================================================== */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* ==========================================================================
   5. NAVBAR
   ========================================================================== */
.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.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;
}

/* ==========================================================================
   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; /* Centraliza verticalmente o conteúdo */
}

.contact-cta-content {
    padding-left: 48px;
    display: flex;
    flex-direction: column;
}

.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;
}

/* Container Overlay */
.menu-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    z-index: 9999; 
    visibility: hidden; 
}

.blind { 
    flex: 1; 
    height: 100%; 
    background: #727D71; 
    /* Solução definitiva: sangra a cor em 1px e elimina as linhas pretas sem quebrar o Flexbox */
    box-shadow: 0 0 0 1px #727D71; 
    transform: scaleY(0); 
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1); 
    transform-origin: top; 
}

/* Tipografia */
.home-link, .btn-close { font-family: 'Degitan', sans-serif; font-size: 28px; font-weight: 300; color: #DCC9B6; text-decoration: none; cursor: pointer; background: none; border: none; }
.social-links-menu a { font-family: 'Degitan', sans-serif; font-size: 18px; color: #DCC9B6; display: block; margin-bottom: 8px; text-decoration: none; outline: none; }
.social-links-menu a:hover,
.social-links-menu a:visited,
.social-links-menu a:active { color: #DCC9B6; }

/* Trigger Ativo */
.menu-overlay.is-open { visibility: visible; }
.is-open .blind { transform: scaleY(1); }
.is-open .menu-content { opacity: 1; }  

/* --- HEADER: TOP MENU --- */
.menu-header { 
    display: flex; 
    justify-content: space-between; /* Empurra o nome para esquerda e fechar para direita */
    width: 100%; 
    font-family: 'Degitan', sans-serif; 
    font-weight: 300;
    font-size: 28px; 
    color: #DCC9B6; 
    margin-top: -18px;
}


.nav-links a {
    font-family: 'Gretha Serif', serif;
    font-size: 56px;
    font-weight: 500;
    color: #DCC9B6;
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
    padding-left: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* --- EFEITO HOVER (O MOVIMENTO E A COR) --- */
.nav-links a:hover { 
    padding-left: 40px;      /* Move o texto 40px para a direita */
    color: #6F1D1B;          /* Muda para o tom avermelhado solicitado */
}

/* --- FOOTER: SOCIAL --- */
.footer-area {
    margin-top: 40px;
    text-align: left;
    padding-left: 0;
}

/* Quando estiver aberto, aplicamos o delay apenas na abertura */
.is-open .menu-content { 
    opacity: 1; 
    transition: opacity 0.3s 0.5s ease; /* Delay apenas ao abrir */
}

/* --- BARRAS: EFEITO BLINDS (Entrada e Saída) --- */
/* Estado Aberto: Barras descem */
.is-open .blind { transform: scaleY(1); }

/* Estado Fechando: Barras sobem */
.is-closing .blind {
    transform-origin: bottom;
    transform: scaleY(0);
}

/* --- MENU CONTENT --- */
.menu-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 48px 80px;
    opacity: 0;
    transition: opacity 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

/* --- NAV LINKS --- */
.nav-links { 
    list-style: none; 
    margin-top: 80px; 
    text-align: left;            /* Garante que os itens da lista fiquem à esquerda */
    width: 100%;                 /* Ocupa a largura necessária */
}

.nav-links li { 
    text-align: left; 
}

/* --- SOCIAL LINKS --- */
.social-links-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;     /* Força os links sociais à esquerda */
    text-align: left;
}

/* ==========================================================================
   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;
}

/* .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;
}


/* ==========================================================================
   23. RESPONSIVIDADE — MOBILE (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* 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: 40px 24px; }
    .menu-header { font-size: 20px; }
    .nav-links a { font-size: 36px; }
    .nav-links { margin-top: 48px; }

    /* 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; }
}

