/* DESIGN SYSTEM & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Paleta Inspirada na Logo */
    --navy: #0b2829;       /* Fundo Principal Escuro - Verde */
    --blue: #163e3f;       /* Verde Médio */
    --gold: #C5A16D;       /* Dourado Metálico Claro da Logo */
    --gold-dark: #97662A;  /* Dourado/Bronze Escuro da Logo */
    --cream: #F5EDD8;      /* Creme - Fundo Claro */
    --nude: #EDE0C4;       /* Nude - Fundo Alternativo */
    --white: #FFFFFF;
    
    /* Cores de apoio */
    --text-dark: #1A1A1A;
    --text-light: #F5EDD8;
    --text-muted: #8E9EA5;
    
    /* Tipografia */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Animações e Fluidez */
    --ease-premium: cubic-bezier(0.16, 1, 0.25, 1); /* Curva de Luxo Apple estendida */
    --t-snappy: 0.4s var(--ease-premium);
    --t-smooth: 1.1s var(--ease-premium);
}

/* RESET */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--navy);
    color: var(--text-light);
    font-family: var(--font-sans);
}

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
}

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

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

button, input {
    font: inherit;
}

/* NAVBAR INTELIGENTE */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: transform var(--t-smooth), opacity var(--t-smooth), background-color var(--t-smooth), backdrop-filter var(--t-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: height var(--t-snappy);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 6px 0;
    transition: color var(--t-snappy);
}

/* Micro-interação de Link: Linha expansível */
@media (hover: hover) and (pointer: fine) {
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1.5px;
        background-color: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--t-snappy);
    }

    .nav-links a:hover {
        color: var(--gold);
    }

    .nav-links a:hover::after {
        transform: scaleX(1);
    }
}

/* Estados da Navbar controlados por JS */
.nav-scrolled {
    background-color: rgba(11, 40, 41, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 161, 109, 0.1);
}

.nav-scrolled .logo img {
    height: 28px;
}

.nav-scrolled .nav-container {
    padding: 12px 24px;
}

@media (max-width: 768px) {
    .logo img {
        height: 32px;
    }
    .nav-scrolled .logo img {
        height: 26px;
    }
}

.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* SEÇÃO 1: HERO (#inicio) */
#inicio {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--navy);
    /* Degradê linear para esfumaçar a imagem perto do texto à esquerda + Imagem + Grain Noise */
    background-image: 
        linear-gradient(to right, var(--navy) 40%, rgba(11, 40, 41, 0.9) 65%, rgba(11, 40, 41, 0.15) 100%),
        url("office_hero.png"),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: cover, cover, auto;
    background-position: center right, center right, left top;
    background-repeat: no-repeat, no-repeat, repeat;
    padding: 160px 0 80px 0; /* Removido padding lateral da section */
    position: relative;
}

@media (max-width: 991px) {
    #inicio {
        background-image: 
            linear-gradient(to bottom, rgba(11, 40, 41, 0.85) 50%, rgba(11, 40, 41, 0.95) 100%),
            url("office_hero.png"),
            url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px; /* Alinhamento estrito com a grid do site */
}

.hero-content {
    max-width: 680px; /* Dá mais espaço para os detalhes da imagem à direita */
    margin: 0 auto 0 0; /* Ancorado na esquerda do container */
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 24px;
    max-width: 750px;
}

.hero-content p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

/* BOTÕES GERAIS E HOVER SOFISTICADO */
.btn-cta {
    display: inline-flex;
    align-items: center;
    background-color: var(--gold);
    color: var(--navy);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    border-radius: 4px; /* Borda máxima de 4px */
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: transform var(--t-snappy), background-color var(--t-snappy), border-color var(--t-snappy), box-shadow var(--t-snappy);
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .btn-cta:hover {
        background-color: var(--gold-dark);
        border-color: var(--gold-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }
}

/* SEÇÃO 2: SOBRE / O ADVOGADO (#sobre) */
#sobre {
    background-color: var(--cream);
    color: var(--navy);
    padding: 100px 24px;
}

.sobre-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 768px) {
    .sobre-container {
        grid-template-columns: 4.5fr 5.5fr;
    }
}

/* Foto do Advogado */
.sobre-imagem {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.sobre-photo-croqui {
    aspect-ratio: 3/4;
    border: 1px solid rgba(11, 40, 41, 0.1);
    border-radius: 8px; /* Raio máximo 8px */
    background-color: rgba(11, 40, 41, 0.02);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 40, 41, 0.12);
}

.sobre-photo-croqui img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform var(--t-smooth);
}

@media (hover: hover) and (pointer: fine) {
    .sobre-photo-croqui:hover img {
        transform: scale(1.03);
    }
}

.sobre-texto h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    color: var(--navy);
}

.sobre-texto p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(11, 40, 41, 0.85);
}

/* SEÇÃO 3: ÁREAS DE ATUAÇÃO (#atuacao) */
#atuacao {
    background-color: var(--navy);
    color: var(--cream);
    padding: 100px 24px;
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.atuacao-container {
    max-width: 1200px;
    margin: 0 auto;
}

.atuacao-header {
    margin-bottom: 50px;
    transition: margin-bottom var(--t-smooth);
}

.atuacao-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    transition: transform var(--t-smooth), color var(--t-smooth);
    transform-origin: left;
}

/* Dinâmica do título principal da seção: diminui quando há um card ativo */
.atuacao-container:has(.atuacao-card.active) .atuacao-header h2 {
    transform: scale(0.85);
    color: rgba(245, 237, 216, 0.7);
}

.atuacao-container:has(.atuacao-card.active) .atuacao-header {
    margin-bottom: 30px;
}

.atuacao-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.atuacao-card {
    background-color: rgba(30, 62, 98, 0.15);
    border: 1px solid rgba(197, 161, 109, 0.12);
    border-radius: 8px; /* Borda máxima 8px */
    padding: 24px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    transition: transform var(--t-snappy), border-color var(--t-smooth), background-color var(--t-smooth), box-shadow var(--t-smooth), flex var(--t-smooth);
}

.atuacao-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: flex-direction var(--t-smooth), align-items var(--t-smooth), justify-content var(--t-smooth);
}

.atuacao-card h3 {
    font-size: 1.25rem;
    color: var(--gold);
    line-height: 1.3;
    transition: font-size var(--t-smooth), color var(--t-smooth), writing-mode var(--t-smooth), transform var(--t-smooth);
    transform-origin: center;
}

.atuacao-card-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(197, 161, 109, 0.15);
    line-height: 1;
    transition: color var(--t-smooth), transform var(--t-smooth);
}

.atuacao-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Wrapper de Conteúdo com animação de visibilidade e altura controlada */
.atuacao-card-content {
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Sem barra de rolagem */
    margin-top: 16px;
}

.atuacao-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.atuacao-card li {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
    transition: color var(--t-snappy), transform var(--t-snappy), opacity var(--t-snappy);
}

.atuacao-card li::before {
    content: '—';
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
    transition: transform var(--t-snappy);
    transform-origin: left;
}

.atuacao-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-top: auto;
    transition: color var(--t-snappy);
}

.atuacao-card-link .arrow {
    font-size: 0.95rem;
    line-height: 1;
    transition: transform var(--t-snappy);
}

/* LÓGICA DE TRANSIÇÃO E ESTADOS: MOBILE FIRST */
.atuacao-card:not(.active) .atuacao-card-content {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: max-height var(--t-smooth), opacity var(--t-snappy), transform var(--t-snappy), visibility var(--t-snappy);
}

.atuacao-card.active .atuacao-card-content {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: max-height var(--t-smooth), opacity var(--t-smooth) 0.15s, transform var(--t-smooth) 0.15s, visibility var(--t-smooth) 0.15s;
}

.atuacao-card.active {
    background-color: rgba(30, 62, 98, 0.3);
    border-color: rgba(197, 161, 109, 0.35);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.atuacao-card.active .atuacao-card-number {
    color: rgba(197, 161, 109, 0.4);
}

/* MEDIA QUERY PARA DESKTOP: TRANSFORMA EM ACCORDION HORIZONTAL */
@media (min-width: 992px) {
    .atuacao-grid {
        flex-direction: row;
        gap: 20px;
        height: 590px; /* Aumentado para comportar todo o conteúdo sem barras de rolagem */
        align-items: stretch;
    }

    .atuacao-card {
        flex: 1;
        min-width: 0; /* Impede overflow horizontal do grid */
        height: 100%;
        padding: 32px 28px;
        position: relative; /* Base de posicionamento absoluto interno */
    }

    /* Comportamento de foco */
    .atuacao-grid:has(.atuacao-card.active) .atuacao-card:not(.active) {
        flex: 0.65;
        opacity: 0.55;
    }

    .atuacao-card.active {
        flex: 2.05;
        background-color: rgba(30, 62, 98, 0.35);
        border-color: rgba(197, 161, 109, 0.45);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    /* Título e número com posicionamento absoluto para transição suave */
    .atuacao-card h3 {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-90deg);
        transform-origin: center;
        white-space: nowrap;
        font-size: 1.15rem;
        color: var(--text-muted);
        transition: transform var(--t-smooth), color var(--t-smooth), font-size var(--t-smooth), top var(--t-smooth), left var(--t-smooth);
    }

    .atuacao-card .atuacao-card-number {
        position: absolute;
        top: 32px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(197, 161, 109, 0.08);
        transition: color var(--t-smooth), transform var(--t-smooth), top var(--t-smooth), left var(--t-smooth), right var(--t-smooth);
    }

    /* Sobrescrita quando o card está ativo */
    .atuacao-card.active h3 {
        top: 32px;
        left: 32px;
        transform: translate(0, 0) rotate(0deg);
        white-space: nowrap;
        font-size: 1.4rem;
        color: var(--gold);
    }

    .atuacao-card.active .atuacao-card-number {
        top: 32px;
        left: auto;
        right: 32px;
        transform: none;
        color: rgba(197, 161, 109, 0.4);
    }

    /* Abertura de espaço e preenchimento vertical do conteúdo */
    .atuacao-card-content {
        margin-top: 54px; /* Abre espaço vertical exato para o título absoluto */
        height: calc(100% - 54px);
    }

    .atuacao-card:not(.active) .atuacao-card-content {
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: opacity var(--t-snappy), transform var(--t-snappy), visibility var(--t-snappy);
    }

    .atuacao-card.active .atuacao-card-content {
        max-height: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity var(--t-smooth) 0.3s, transform var(--t-smooth) 0.3s, visibility var(--t-smooth) 0.3s;
    }
}

@media (hover: hover) and (pointer: fine) {
    .atuacao-card:not(.active):hover {
        background-color: rgba(30, 62, 98, 0.22);
        border-color: rgba(197, 161, 109, 0.25);
        transform: translateY(-2px);
    }
    
    .atuacao-card li:hover {
        color: var(--white);
        opacity: 1;
        transform: translateX(4px);
    }
    
    .atuacao-card li:hover::before {
        transform: scaleX(1.3);
    }
    
    .atuacao-card-link:hover {
        color: var(--white);
    }
    
    .atuacao-card-link:hover .arrow {
        transform: translateX(6px);
    }
}

/* SEÇÃO 4: METODOLOGIA (#metodologia) */
#metodologia {
    background-color: var(--nude);
    color: var(--navy);
    padding: 100px 24px;
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.metodologia-container {
    max-width: 1200px;
    margin: 0 auto;
}

.metodologia-header {
    margin-bottom: 60px;
}

.metodologia-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.metodologia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

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

.metodologia-col {
    position: relative;
    padding-top: 40px;
}

.metodologia-num {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(11, 40, 41, 0.15); /* Opacidade reduzida */
    position: absolute;
    top: -20px;
    left: 0;
}

.metodologia-col h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.metodologia-col p {
    font-size: 0.95rem;
    color: rgba(11, 40, 41, 0.8);
    line-height: 1.6;
}

/* SEÇÃO 5: FAQ (#faq) */
#faq {
    background-color: var(--cream);
    color: var(--navy);
    padding: 100px 24px;
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid rgba(11, 40, 41, 0.1);
    padding-bottom: 16px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--t-snappy);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-family: var(--font-sans);
    color: var(--gold);
    transition: transform var(--t-smooth);
}

.faq-item.active .faq-question {
    color: var(--gold-dark);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* Accordion usando CSS Grid com animação suave de grid-template-rows */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--t-smooth);
}

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 8px 0 16px 0;
    font-size: 1rem;
    color: rgba(11, 40, 41, 0.8);
    line-height: 1.6;
}

/* SEÇÃO 6: CTA FINAL (#contato) */
#contato {
    background-color: var(--navy);
    color: var(--cream);
    padding: 120px 24px;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--cream);
}

.cta-container p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* SEÇÃO 7: FOOTER (#footer) */
footer {
    background-color: #060e18;
    color: var(--cream);
    border-top: 1px solid rgba(197, 161, 109, 0.1);
    padding: 80px 24px 40px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

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

.footer-brand .footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color var(--t-snappy);
}

@media (hover: hover) and (pointer: fine) {
    .footer-links a:hover {
        color: var(--gold);
    }
}

.footer-contact-info {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info p {
    display: flex;
    flex-direction: column;
}

.footer-contact-info span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 2px;
}

/* Redes Sociais no Footer com CSS Mask */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px; /* Área de clique mínima de 48px */
    border-radius: 4px;
    transition: background-color var(--t-snappy);
}

.social-mask {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #8E9EA5; /* Cor cinza/muted inicial */
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    transition: background-color var(--t-snappy);
}

/* Máscaras de ícones (Usando links inline de SVG em Data URI para total portabilidade) */
.social-mask--whatsapp {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.247 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.316 1.592 5.548 0 10.061-4.512 10.063-10.062.001-2.69-1.047-5.216-2.951-7.121C17.177 2.7 14.654 1.65 11.97 1.65c-5.549 0-10.06 4.512-10.063 10.06-.001 1.92.484 3.792 1.408 5.394l-.999 3.647 3.738-.981zM17.433 14.34c-.302-.151-1.786-.882-2.062-.983-.277-.1-.478-.151-.68.151-.2.302-.781.983-.957 1.183-.177.201-.353.226-.655.076-.302-.151-1.274-.47-2.426-1.498-.897-.8-1.502-1.787-1.678-2.089-.177-.302-.019-.465.132-.615.136-.135.302-.353.454-.529.151-.177.201-.252.302-.454.101-.2.05-.378-.026-.529-.076-.151-.68-1.638-.932-2.246-.247-.591-.497-.512-.68-.521-.177-.008-.378-.01-.58-.01-.201 0-.529.076-.807.378-.277.302-1.058 1.033-1.058 2.52 0 1.488 1.083 2.922 1.234 3.124.151.2 2.13 3.253 5.16 4.56.72.311 1.282.497 1.72.637.723.23 1.381.197 1.902.12.58-.087 1.786-.731 2.038-1.438.252-.706.252-1.312.176-1.438-.075-.125-.277-.201-.579-.352z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.247 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.316 1.592 5.548 0 10.061-4.512 10.063-10.062.001-2.69-1.047-5.216-2.951-7.121C17.177 2.7 14.654 1.65 11.97 1.65c-5.549 0-10.06 4.512-10.063 10.06-.001 1.92.484 3.792 1.408 5.394l-.999 3.647 3.738-.981zM17.433 14.34c-.302-.151-1.786-.882-2.062-.983-.277-.1-.478-.151-.68.151-.2.302-.781.983-.957 1.183-.177.201-.353.226-.655.076-.302-.151-1.274-.47-2.426-1.498-.897-.8-1.502-1.787-1.678-2.089-.177-.302-.019-.465.132-.615.136-.135.302-.353.454-.529.151-.177.201-.252.302-.454.101-.2.05-.378-.026-.529-.076-.151-.68-1.638-.932-2.246-.247-.591-.497-.512-.68-.521-.177-.008-.378-.01-.58-.01-.201 0-.529.076-.807.378-.277.302-1.058 1.033-1.058 2.52 0 1.488 1.083 2.922 1.234 3.124.151.2 2.13 3.253 5.16 4.56.72.311 1.282.497 1.72.637.723.23 1.381.197 1.902.12.58-.087 1.786-.731 2.038-1.438.252-.706.252-1.312.176-1.438-.075-.125-.277-.201-.579-.352z'%3E%3C/svg%3E");
}

.social-mask--instagram {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.051c-.058 1.28-.072 1.688-.072 4.949s.014 3.67.072 4.951c.2 4.358 2.617 6.78 6.979 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.281.073-1.689.073-4.951 0-3.26-.014-3.668-.072-4.949-.2-4.357-2.619-6.78-6.98-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.051c-.058 1.28-.072 1.688-.072 4.949s.014 3.67.072 4.951c.2 4.358 2.617 6.78 6.979 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.281.073-1.689.073-4.951 0-3.26-.014-3.668-.072-4.949-.2-4.357-2.619-6.78-6.98-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
}

.social-mask--linkedin {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E");
}

.social-mask--jusbrasil {
    /* Ícone customizado de balança/justiça para Jusbrasil */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a1 1 0 0 1 1 1v1.07A8.01 8.01 0 0 1 20 12v1H4v-1a8.01 8.01 0 0 1 7-7.93V3a1 1 0 0 1 1-1zM3 16h18v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2zm9-6a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a1 1 0 0 1 1 1v1.07A8.01 8.01 0 0 1 20 12v1H4v-1a8.01 8.01 0 0 1 7-7.93V3a1 1 0 0 1 1-1zM3 16h18v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2zm9-6a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E");
}

@media (hover: hover) and (pointer: fine) {
    .social-link--whatsapp:hover .social-mask { background-color: #25D366; }
    .social-link--instagram:hover .social-mask { background-color: #E1306C; }
    .social-link--linkedin:hover .social-mask { background-color: #0A66C2; }
    .social-link--jusbrasil:hover .social-mask { background-color: #C5A16D; }
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(197, 161, 109, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    text-align: center;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--t-snappy);
}

@media (hover: hover) and (pointer: fine) {
    .footer-bottom a:hover {
        color: var(--white);
    }
}

/* STICKY CTA BAR NO RODAPÉ MOBILE */
#mobileStickyBar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background-color: var(--navy);
    padding: 12px 24px;
    border-top: 1px solid rgba(197, 161, 109, 0.15);
    display: flex;
    justify-content: center;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
}

#mobileStickyBar .btn-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 4px;
}

@media (min-width: 769px) {
    #mobileStickyBar {
        display: none !important;
    }
}

/* RESPONSIVE LAYOUT PADDINGS FOR MOBILE STICKY BAR CLEARANCE */
@media (max-width: 768px) {
    #contato {
        padding-bottom: 96px;
    }
    footer {
        padding-bottom: 110px;
    }
}

/* WIDGET DE WHATSAPP INTELIGENTE (#whatsappWidget) */
#whatsappWidget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-smooth);
    will-change: opacity;
}

#whatsappWidget.widget-visible {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    #whatsappWidget {
        bottom: 84px; /* Sobe para não chocar com a Sticky Bar */
        right: 16px;
    }
}

/* Botão Circular Principal */
.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--navy);
    border: 1px solid rgba(197, 161, 109, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-snappy), background-color var(--t-snappy), border-color var(--t-snappy);
    outline: none;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
    transition: fill var(--t-snappy);
}

@media (hover: hover) and (pointer: fine) {
    .whatsapp-btn:hover {
        transform: translateY(-2px);
        background-color: var(--gold-dark);
        border-color: var(--gold-dark);
    }
    .whatsapp-btn:hover svg {
        fill: var(--white);
    }
}

/* Tooltip (Gatilho de inatividade) */
.whatsapp-tooltip {
    position: absolute;
    bottom: 72px;
    right: 0;
    background-color: var(--cream);
    color: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 12px 36px 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity var(--t-snappy), transform var(--t-snappy);
}

.whatsapp-tooltip.tooltip-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 10px;
    height: 10px;
    background-color: var(--cream);
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    transform: rotate(45deg);
}

.whatsapp-tooltip-close {
    position: absolute;
    top: 4px;
    right: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    color: rgba(11, 40, 41, 0.5);
    transition: color var(--t-snappy);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-tooltip-close:hover {
    color: var(--navy);
}

/* Painel de Chat Simulado */
.whatsapp-chat {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 320px;
    background-color: var(--navy);
    border: 1px solid rgba(197, 161, 109, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity var(--t-smooth), transform var(--t-smooth);
    will-change: opacity, transform;
}

.whatsapp-chat.chat-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-chat-header {
    background-color: rgba(30, 62, 98, 0.3);
    border-bottom: 1px solid rgba(197, 161, 109, 0.15);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--blue);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: bold;
    color: var(--gold);
    font-size: 1.1rem;
}

.chat-header-info h4 {
    font-size: 0.95rem;
    color: var(--cream);
    margin-bottom: 2px;
}

.chat-status {
    font-size: 0.75rem;
    color: #25D366; /* Verde apenas para status online discreto */
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #25D366;
    border-radius: 50%;
}

.whatsapp-chat-body {
    padding: 16px;
    max-height: 240px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: rgba(11, 40, 41, 0.6);
}

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.chat-msg-bubble {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.chat-msg-system {
    align-self: flex-start;
}

.chat-msg-system .chat-msg-bubble {
    background-color: rgba(30, 62, 98, 0.5);
    color: var(--cream);
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(197, 161, 109, 0.1);
}

.chat-msg-user {
    align-self: flex-end;
}

.chat-msg-user .chat-msg-bubble {
    background-color: var(--gold);
    color: var(--navy);
    border-bottom-right-radius: 2px;
    font-weight: 500;
}

/* Animação Digitando... */
.loading-bubble {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-items: center;
}

.loading-bubble .dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-bubble .dot:nth-child(1) { animation-delay: -0.32s; }
.loading-bubble .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

.chat-btn-redirect {
    display: inline-block;
    margin-top: 8px;
    background-color: var(--gold);
    color: var(--navy);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    transition: background-color var(--t-snappy);
}

.chat-btn-redirect:hover {
    background-color: var(--white);
}

.chat-btn-back {
    background: none;
    border: none;
    color: var(--gold);
    text-decoration: underline;
    font-size: 0.78rem;
    cursor: pointer;
    margin-top: 8px;
    padding: 0;
    text-align: left;
}

/* Opções de Perguntas */
.whatsapp-chat-options {
    padding: 12px 16px 16px 16px;
    border-top: 1px solid rgba(197, 161, 109, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: rgba(30, 62, 98, 0.1);
    transition: opacity var(--t-snappy);
}

.chat-opt-btn {
    background-color: rgba(30, 62, 98, 0.4);
    border: 1px solid rgba(197, 161, 109, 0.15);
    color: var(--cream);
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 0.82rem;
    text-align: left;
    cursor: pointer;
    transition: background-color var(--t-snappy), border-color var(--t-snappy);
}

.chat-opt-btn:hover {
    background-color: rgba(197, 161, 109, 0.15);
    border-color: var(--gold);
}

/* INTEGRATION OF THE SUPABASE BLOG */
#blog-secao, #artigo-secao {
    padding: 120px 24px 80px 24px;
    background-color: var(--cream);
    color: var(--navy);
    min-height: 80vh;
}

#blog-secao {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(237, 224, 196, 0.3) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
}

.blog-container {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-title-section {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 56px;
    text-align: center;
    color: var(--navy);
}

.blog-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Cards de Blog - Austero e Sem Imagem */
.blog-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 40, 41, 0.08);
    border-radius: 4px; /* Raio máximo 4px */
    padding: 32px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--t-snappy), box-shadow var(--t-snappy), border-color var(--t-snappy);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 16px 32px rgba(11, 40, 41, 0.05);
}

.blog-card-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--navy);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: rgba(11, 40, 41, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--t-snappy);
}

.blog-card:hover .blog-card-link {
    color: var(--navy);
}

/* Post de Artigo Único */
.artigo-single-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 20px 0;
}

.btn-voltar {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    margin-bottom: 32px;
    padding: 8px 0;
    transition: color var(--t-snappy);
    display: inline-flex;
    align-items: center;
}

.btn-voltar:hover {
    color: var(--navy);
}

.artigo-meta-date {
    font-size: 0.9rem;
    color: rgba(11, 40, 41, 0.6);
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.artigo-main-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--navy);
}

.artigo-divider {
    border: 0;
    border-top: 1.5px solid rgba(197, 161, 109, 0.25);
    margin: 24px 0 40px 0;
}

.artigo-text-body p {
    font-size: 1.12rem;
    line-height: 1.85;
    margin-bottom: 28px;
    color: rgba(11, 40, 41, 0.9);
    text-align: justify;
}

.artigo-text-body h2 {
    font-size: 1.75rem;
    margin: 48px 0 20px 0;
    color: var(--navy);
}

.artigo-text-body h3 {
    font-size: 1.4rem;
    margin: 36px 0 16px 0;
    color: var(--navy);
}

.artigo-text-body strong {
    font-weight: 700;
    color: var(--navy);
}

.artigo-text-body ul, .artigo-text-body ol {
    margin-bottom: 28px;
    padding-left: 24px;
    font-size: 1.1rem;
    color: rgba(11, 40, 41, 0.9);
}

.artigo-text-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-blockquote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--gold-dark);
    border-left: 3px solid var(--gold);
    padding: 8px 0 8px 24px;
    margin: 36px 0;
    font-style: italic;
    background-color: rgba(197, 161, 109, 0.05);
}

/* EFEITOS DE REVEAL AO SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.4s var(--ease-premium), transform 1.4s var(--ease-premium);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delays para animação sequencial em grids/colunas */
.atuacao-grid .reveal:nth-child(2),
.metodologia-grid .reveal:nth-child(2) {
    transition-delay: 0.15s;
}
.atuacao-grid .reveal:nth-child(3),
.metodologia-grid .reveal:nth-child(3) {
    transition-delay: 0.3s;
}
.atuacao-grid .reveal:nth-child(4) {
    transition-delay: 0.45s;
}

.faq-list .reveal:nth-child(1) { transition-delay: 0.05s; }
.faq-list .reveal:nth-child(2) { transition-delay: 0.1s; }
.faq-list .reveal:nth-child(3) { transition-delay: 0.15s; }
.faq-list .reveal:nth-child(4) { transition-delay: 0.2s; }

/* PREFERÊNCIAS DE MOVIMENTO REDUZIDO (Acessibilidade) */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
