/* ==========================================================================
   FORENSI PERÍCIAS - DESIGN SYSTEM GLOBAL DARK PREMIUM (SITE MODULAR)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --bg-dark: #ffffff;
    --surface-dark: #f8fafc;
    --gold-forensi: #0a2540;
    --gold-hover: #001a38;
    --gold-dark: #2e7d32;
    --gold-glow: rgba(10, 37, 64, 0.08);
    --text-light: #0f172a;
    --text-muted: #475569;
    --text-dim: #94a3b8;
    --border-dark: #e2e8f0;
    --border-gold: rgba(10, 37, 64, 0.15);

    --color-primary: #0a2540;
    --color-accent: #2e7d32;
    --bg-main: #ffffff;
    --bg-cards: #f8fafc;
    --text-main: #0f172a;

    --font-serif: 'Plus Jakarta Sans', sans-serif;
    --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ==========================================================================
   SELAMENTO GLOBAL DE SEÇÕES & PREVENÇÃO DE GAPS E COLAPSO DE MARGEM
   ========================================================================== */
section {
    position: relative;
    z-index: 10;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: flow-root; /* Previne colapso de margens de elementos filhos */
    box-sizing: border-box;
}

/* ==========================================================================
   SHARPLINK ANIMATION SYSTEM & SCROLL REVEAL UTILITIES
   ========================================================================== */
/* ==========================================================================
   SHARPLINK FULL-SITE MOTION SYSTEM & SCROLL REVEAL UTILITIES
   ========================================================================== */
/* GSAP Motion System Support Utilities */
.gsap-reveal-target {
    will-change: opacity, transform;
}

.delay-1, .delay-100 { transition-delay: 0.1s; }
.delay-2, .delay-200 { transition-delay: 0.2s; }
.delay-3, .delay-300 { transition-delay: 0.3s; }
.delay-4, .delay-400 { transition-delay: 0.4s; }
.delay-5, .delay-500 { transition-delay: 0.5s; }

/* Micro-Animações e Interações Magnéticas para Todo o Site */
.practice-card-hybrid,
.lg-master-card,
.ribbon-col-item,
.lg-faq-item,
.pre-footer-banner-wrapper {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
    will-change: transform, box-shadow;
}

.practice-card-hybrid:hover,
.lg-master-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(10, 37, 64, 0.12);
}

.practice-card-hybrid .card-image-header img,
.lg-master-card img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.practice-card-hybrid:hover .card-image-header img,
.lg-master-card:hover img {
    transform: scale(1.05);
}

/* Overlap de Segurança de 1px contra Gaps Sub-pixel de Renderização */
main > section + section {
    margin-top: -1px !important;
}

/* Prevenção de vazamento de margem superior/inferior nos filhos diretos */
section > *:first-child,
.container > *:first-child {
    margin-top: 0;
}

section > *:last-child,
.container > *:last-child {
    margin-bottom: 0;
}

.container, .lw-container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   HEADER & LOGO HEXÁGONO "F"
   ========================================================================== */
/* ==========================================================================
   HEADER & LOGO (CLEAN CORPORATE MODE)
   ========================================================================== */
.lg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.lg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.lg-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.lg-logo-img {
    height: 46px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
    display: block !important;
}

.logo-hexagon-svg {
    height: 48px;
    width: 48px;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.lg-logo-link:hover .logo-hexagon-svg {
    transform: scale(1.05);
}

.logo-brand-text {
    display: flex;
    flex-direction: column;
}

.logo-brand-name {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a2540;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-brand-sub {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    color: #2e7d32;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

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

.lg-nav-link {
    color: #0a2540 !important;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.lg-nav-link:hover {
    color: #2e7d32 !important;
}

.lg-nav-link.active {
    color: #0a2540 !important;
}

.lg-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #0a2540;
    color: #ffffff;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.2);
    transition: all 0.25s ease;
}

.lg-header-btn:hover {
    transform: translateY(-2px);
    background: #001a38;
    box-shadow: 0 6px 18px rgba(10, 37, 64, 0.3);
}

/* ==========================================================================
   HERO HUB SECTION (CLEAN CORPORATE FULL BLEED 50/50 SPLIT)
   ========================================================================== */
.lg-hero-hub {
    padding-top: 35px;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
    background-color: #0a2540;
    border-bottom: none;
    overflow: hidden;
    width: 100%;
    min-height: calc(100vh - 112px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Background Image & Navy Gradient Overlay (100% Full Bleed) */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    will-change: transform;
}

.hero-navy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0a2540 0%, rgba(10, 37, 64, 0.92) 40%, rgba(10, 37, 64, 0.6) 70%, rgba(10, 37, 64, 0.15) 100%);
    z-index: 2;
}

/* Hero Content Wrapper - Alinhamento Vertical Perfeito */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1260px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    will-change: opacity, transform;
}

.hero-text-col {
    max-width: 640px;
    z-index: 10;
    text-align: left;
}

.hero-hub-h1-clean {
    font-family: var(--font-head);
    font-size: clamp(2.1rem, 3.4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hero-hub-p-clean {
    font-size: 1.02rem;
    color: #cbd5e1;
    margin-bottom: 22px;
    line-height: 1.55;
    font-weight: 400;
    max-width: 560px;
}

.hero-btn-group-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-navy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #ffffff;
    color: #0a2540;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.btn-primary-navy:hover {
    background: #f8fafc;
    color: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.btn-secondary-navy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.btn-secondary-navy:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   SINGLE FLOATING NAVY RIBBON (EXACT PRINT POSITION INSIDE HERO)
   ========================================================================== */
.hero-stats-ribbon-wrapper {
    position: relative;
    z-index: 20;
    margin-top: 12px;
    margin-bottom: 5px;
    background: transparent;
    padding: 0 24px;
}

.hero-stats-ribbon {
    background-color: #CBE2FE;
    background: #CBE2FE;
    color: #0a2540;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.22);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1260px;
    margin: 0 auto;
    align-items: center;
}

.ribbon-pillar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ribbon-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0a2540;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ribbon-pillar-content h4 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ribbon-pillar-content p {
    font-size: 0.82rem;
    color: #0a2540;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1024px) {
    .hero-stats-ribbon-wrapper {
        margin-top: -40px;
    }
    .hero-stats-ribbon {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .lg-hero-hub {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        min-height: auto;
        padding-top: 100px;
    }
    .hero-content-wrapper {
        padding: 40px 24px 40px 24px;
    }
    .hero-text-col {
        max-width: 100%;
    }
    .hero-navy-overlay {
        background: linear-gradient(to bottom, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.85) 60%, rgba(10, 37, 64, 0.6) 100%);
    }
    .hero-stats-ribbon-wrapper {
        position: relative;
        bottom: auto;
        margin-top: 0;
        padding-bottom: 30px;
    }
    .hero-stats-ribbon {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 1.25rem 1.5rem;
    }
}

/* Grupo de Imagens do Background (Eixo Z: 0) */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

/* Overlay Escuro Fixo (Eixo Z: 1) */
.hero-fixed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 11, 14, 0.92) 0%, rgba(11, 11, 14, 0.75) 50%, rgba(11, 11, 14, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Conteúdo Elevado (Eixo Z: 2) */
.hero-content-container {
    position: relative;
    z-index: 2;
}

.lg-kicker {
    display: inline-block;
    color: var(--gold-forensi);
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
}

.hero-hub-h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 22px auto;
    letter-spacing: -0.5px;
}

.hero-hub-h1 span.highlight {
    color: var(--gold-forensi);
    font-style: italic;
}

.hero-hub-p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 35px auto;
    line-height: 1.7;
    font-weight: 300;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold-forensi), var(--gold-dark));
    color: #0b0b0e;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 25px var(--gold-glow);
    transition: all 0.3s ease;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.98rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    border-color: var(--gold-forensi);
    color: var(--gold-forensi);
    background: rgba(212, 175, 55, 0.05);
}

/* ==========================================================================
   ROTEADOR MODULAR DE SERVIÇOS (GRID)
   ========================================================================== */
.lg-services-hub {
    padding: 60px 0 95px 0;
    background-color: #f8fafc;
    position: relative;
    z-index: 10;
    display: block !important;
    overflow: visible !important;
    box-shadow: none;
}

.lg-services-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/bg-servicos-texture.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
}

.lg-services-hub > .container {
    position: relative;
    z-index: 2;
}

.services-grid-hub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.service-card-hub {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0 !important;
    overflow: hidden;
}

.service-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card-hub:hover .service-card-img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

.service-card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #121216 0%, rgba(18, 18, 22, 0) 100%);
    pointer-events: none;
}

.service-card-content {
    padding: 24px 28px 0 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-forensi);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
    padding: 0 28px 24px 28px;
}

.service-card-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* ==========================================================================
   CARROSSEL DE ESTUDOS DE CASO (PROVA SOCIAL)
   ========================================================================== */
.cases-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.cases-carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.case-card-item {
    flex: 0 0 calc(50% - 16px);
    min-width: calc(50% - 16px);
    box-sizing: border-box;
    opacity: 0.45;
    transition: opacity 0.5s ease, transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.case-card-item.active,
.case-card-item:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .case-card-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* ==========================================================================
   CORPO TÉCNICO HIGHLIGHT & AJUSTE DE EYELINE SIMETRIA
   ========================================================================== */
.lg-team-hub {
    padding: 90px 0;
    background-color: var(--surface-dark);
}

.team-grid-hub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.lg-master-card--image .card-img-top {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Ajuste Cirúrgico de Posicionamento Vertical (Eyeline Matching - Hérico Avohai) */
.img-carlos-align {
    object-fit: cover !important;
    object-position: center 40% !important;
}

/* ==========================================================================
   SEÇÃO CTA WHATSAPP BANNER FULL-WIDTH (ESTILO EDITORIAL JURÍDICO)
   ========================================================================== */
.cta-whatsapp-banner {
    position: relative;
    padding: 95px 0;
    background-color: #0b0b0e;
    background-image: url('../assets/images/background-acao.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    border: none;
    overflow: hidden;
}

/* Overlay de Leitura: Gradiente suave da cor base (#0b0b0e) desvanecendo para transparente */
.cta-whatsapp-banner::before,
.cta-whatsapp-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0b0b0e 0%, rgba(11, 11, 14, 0.95) 45%, rgba(11, 11, 14, 0.25) 75%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.cta-whatsapp-container {
    position: relative;
    z-index: 2;
}

/* Estilo Editorial (Linha de Acento Vertical Dourada + Alinhamento à Esquerda) */
.cta-text-content {
    border-left: 3px solid #d4af37;
    padding-left: 1.8rem;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-text-content .lg-kicker {
    color: #d4af37 !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-whatsapp-subtitle {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: #38bdf8;
    margin: 10px 0 6px 0;
}

.cta-whatsapp-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
}

.cta-whatsapp-desc {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 28px;
}

.cta-whatsapp-action {
    display: inline-block;
}

.btn-whatsapp-premium {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp-premium:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #22c55e 0%, #0f766e 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

.wsp-svg-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .cta-text-content {
        max-width: 100%;
        padding-left: 1.2rem;
    }
    
    .cta-whatsapp-banner::before,
    .cta-whatsapp-overlay {
        background: linear-gradient(to bottom, rgba(11, 11, 14, 0.96) 0%, rgba(11, 11, 14, 0.88) 100%);
    }

    .cta-whatsapp-banner {
        padding: 70px 0;
    }

    .btn-whatsapp-premium {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   UNIFIED FINALE WRAPPER (SEAMLESS FLOW: FAQ + GRAND FINALE)
   ========================================================================== */
#unified-finale-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f8fafc;
}

/* ==========================================================================
   GRAND FINALE PRE-FOOTER INSTITUCIONAL (ZOOM HERÓICO & CLIPPING NA CINTURA)
   ========================================================================== */
.pre-footer-banner-full {
    position: relative;
    width: 100%;
    margin-top: 100px !important;
    margin-bottom: 40px !important;
    padding: 60px 0 20px 0;
    background: transparent !important;
    overflow: visible !important;
    z-index: 10;
}

.pre-footer-banner-card {
    position: relative;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0a2540 0%, #0e3054 100%);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 24px 60px rgba(10, 37, 64, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible !important;
    min-height: 380px;
}

.pre-footer-minimal-left {
    position: relative;
    z-index: 5;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lg-kicker-pill {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-family: var(--font-head);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.pre-footer-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin: 0 0 28px 0;
    letter-spacing: -0.5px;
}

.pre-footer-title .highlight-text-white {
    color: #ffffff;
}

.pre-footer-badges {
    display: flex;
    gap: 32px;
}

.pf-badge-item {
    display: flex;
    flex-direction: column;
    border-left: 3px solid #2e7d32;
    padding-left: 14px;
}

.pf-badge-item strong {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
}

.pf-badge-item span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Imagem da Equipe (Ancorada na Base bottom: 0, Expandida para a Esquerda e Invadindo o Topo) */
.pre-footer-team-img-full {
    position: absolute;
    right: 15px;
    bottom: 0;
    height: calc(100% + 140px);
    width: auto;
    max-width: 58%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 991px) {
    .pre-footer-banner-full {
        padding: 3rem 1.5rem 0 1.5rem;
        min-height: auto;
    }

    .pre-footer-banner-wrapper {
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }

    .pre-footer-minimal-left {
        max-width: 100%;
        margin-top: 2rem;
        padding-bottom: 2rem;
    }

    .pre-footer-team-img-full {
        position: relative;
        right: auto;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

/* ==========================================================================
   FOOTER (AZUL MARINHO SÓLIDO CLEAN CORPORATE)
   ========================================================================== */
.lg-footer {
    background-color: #0a2540 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 60px 0 30px 0;
    color: #ffffff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand-p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-nav-col h5 {
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border-bottom: 2px solid #2e7d32;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-col a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-nav-col a:hover {
    color: #2e7d32 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7) !important;
    flex-wrap: wrap;
    gap: 15px;
}

/* RESPONSIVIDADE */
@media (max-width: 991px) {
    .services-grid-hub, .team-grid-hub {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .lg-header-inner {
        height: 75px;
    }
    .lg-nav {
        display: none;
    }
    .services-grid-hub, .team-grid-hub {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
    }
}

/* ==========================================================================
   FORMULÁRIO DE CONTATO B2B & DESIGN SYSTEM DE INPUTS
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.contact-info-card, .contact-form-card {
    background: #121216;
    border: 1px solid var(--border-dark);
    border-top: 2px solid var(--gold-forensi);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-forensi);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: #0b0b0e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold-forensi);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   UTILITÁRIOS DE BACKGROUND FOTOGRÁFICO & TEXTURIZAÇÃO HERO (.hero-bg-*)
   ========================================================================== */
.hero-bg-main {
    background-image: 
        linear-gradient(to bottom, rgba(11, 11, 14, 0.92) 0%, rgba(11, 11, 14, 0.75) 50%, rgba(11, 11, 14, 1) 100%),
        url('../assets/images/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-bg-justice {
    background-image: 
        linear-gradient(to bottom, rgba(11, 11, 14, 0.92) 0%, rgba(11, 11, 14, 0.8) 50%, rgba(11, 11, 14, 1) 100%),
        url('../assets/images/hero-justice.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-bg-subpage {
    background-image: 
        linear-gradient(to bottom, rgba(11, 11, 14, 0.94) 0%, rgba(11, 11, 14, 0.82) 50%, rgba(11, 11, 14, 1) 100%),
        url('../assets/images/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-hub-h1, .hero-hub-p, .lg-kicker {
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   BREADCRUMBS, FAQ ACCORDIONS & TRUST SIGNALS (SEO & UX)
   ========================================================================== */
.lg-breadcrumbs {
    padding: 18px 0;
    font-size: 0.85rem;
    color: var(--text-dim);
    background-color: rgba(11, 11, 14, 0.6);
    border-bottom: 1px solid var(--border-dark);
}

.lg-breadcrumbs a {
    color: var(--gold-forensi);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lg-breadcrumbs a:hover {
    color: #ffffff;
}

.lg-breadcrumbs .sep {
    margin: 0 8px;
    color: var(--text-dim);
}

.lg-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.lg-faq-item {
    background: #121216;
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.lg-faq-item[open] {
    border-color: var(--border-gold);
}

.lg-faq-question {
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lg-faq-question::-webkit-details-marker {
    display: none;
}

.lg-faq-question::after {
    content: '+';
    color: var(--gold-forensi);
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.lg-faq-item[open] .lg-faq-question::after {
    content: '−';
}

.lg-faq-answer {
    padding: 0 24px 20px 24px;
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-badge-bar {
    background: #08080a;
    border-bottom: 1px solid var(--border-dark);
    padding: 16px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-head);
}

.trust-badge-bar strong {
    color: var(--gold-forensi);
    font-weight: 800;
}

/* ==========================================================================
   GRID DE 2 COLUNAS & IMAGEM PREMIUM UTILITIES
   ========================================================================== */
.lg-grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .lg-grid-2-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.lg-img-premium {
    width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.6);
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   SEÇÃO FAQ MODULAR CARD-BASED DESIGN & SIDE RIBBONS (#faq-home)
   ========================================================================== */
#faq-home {
    background: transparent !important;
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 20px;
    margin: 0 !important;
}

#faq-home::before {
    display: none !important;
}

#faq-home > .container {
    position: relative;
    z-index: 2;
}

/* Reset de Contador CSS e Arquitetura de Grid 2 Colunas Paralelas */
.lg-faq-accordion {
    counter-reset: faq-counter;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .lg-faq-accordion {
        grid-template-columns: 1fr;
    }
}

/* Item Individual (Card Autônomo com Side Ribbon) */
.lg-faq-item {
    counter-increment: faq-counter;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lg-faq-item:hover {
    transform: translateY(-2px);
    border-color: #0a2540;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.08);
}

.lg-faq-item[open] {
    border-color: #0a2540;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.08);
}

/* Side Ribbon Azul Marinho com Ícone no lugar dos Números */
.lg-faq-item::before {
    content: none;
}

.faq-side-icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 44px;
    background: linear-gradient(135deg, #0a2540 0%, #001a38 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f2fe;
    font-size: 1.2rem;
    z-index: 2;
    pointer-events: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.lg-faq-item[open] .faq-side-icon {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: #ffffff;
}

/* Cabeçalho Clicável da Pergunta */
.lg-faq-question {
    padding: 22px 24px 22px 64px;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a2540;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    position: relative;
    user-select: none;
    transition: color 0.2s ease;
}

.lg-faq-question::-webkit-details-marker {
    display: none;
}

.lg-faq-question:hover {
    color: #2e7d32;
}

.faq-question-text {
    flex: 1;
    line-height: 1.4;
}

/* Ícone de Destaque na Extremidade Direita */
.faq-right-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 1.15rem;
    margin-left: 16px;
    border: 1px solid #c8e6c9;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.lg-faq-item[open] .faq-right-icon {
    background: #2e7d32;
    color: #ffffff;
    transform: rotate(180deg);
}

/* Resposta Expansível */
.lg-faq-answer {
    padding: 0 24px 24px 64px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
    border-top: 1px solid #e2e8f0;
    margin-top: 5px;
    padding-top: 18px;
}

/* Ícone Hamburger (Oculto no Desktop por Padrão) */
.mobile-menu-toggle {
    display: none;
}

/* ==========================================================================
   FASE 14.0 - MOBILE-FIRST RESPONSIVE OPTIMIZATION (@media (max-width: 768px))
   ========================================================================== */
@media (max-width: 768px) {
    /* Limpeza e Zeragem do Gap do Cabeçalho Mobile */
    .lg-header {
        margin-bottom: 0 !important;
    }

    .lg-header-btn {
        display: none !important;
    }

    .lg-header-inner {
        display: flex !important;
        width: 100% !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 1rem 5% !important;
    }

    .lg-hero-hub {
        margin-top: 0 !important;
    }

    .hero-content-container {
        margin-top: 0 !important;
        padding-top: 1rem !important;
    }

    .hero-hub-h1 {
        margin-top: 0.5rem !important;
    }

    /* Alinhamento e Balanceamento da Faixa de Rigor */
    .trust-badge-bar {
        text-align: center !important;
        line-height: 1.6 !important;
        padding: 1rem 5% !important;
    }

    .trust-badge-bar .rigor-destaque {
        color: var(--gold-forensi, #d4af37) !important;
        font-weight: 700 !important;
    }

    .lg-logo-img {
        max-height: 42px !important;
        height: 42px !important;
        width: auto !important;
        max-width: 220px !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* Estilização e Alinhamento Magnético do Ícone Hamburger Premium */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 28px !important;
        height: 18px !important;
        cursor: pointer !important;
        z-index: 999 !important;
        margin-left: auto !important;
    }

    .mobile-menu-toggle span {
        display: block !important;
        height: 2px !important;
        width: 100% !important;
        background-color: var(--gold-forensi, #d4af37) !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    /* Micro-Tipografia e Densidade de Texto */
    h1, h2, .section-title, .pre-footer-title {
        font-size: 2rem !important;
        line-height: 1.15 !important;
    }

    .lg-kicker, .kicker, .section-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
        padding: 0.3rem 0.6rem !important;
    }

    p, .lg-faq-answer {
        font-size: 0.9rem !important;
        line-height: 1.45 !important;
    }

    .lg-faq-question {
        font-size: 0.95rem !important;
        padding: 16px 16px 16px 54px !important;
    }

    .lg-faq-answer {
        padding: 0 16px 16px 54px !important;
    }

    /* Compactação de Espaços e Layout */
    section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* FAQ Modular 1 Coluna em Dispositivos Móveis */
    .lg-faq-accordion {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Domesticação da Imagem da Equipe e Copy Block */
    .pre-footer-banner-full {
        padding: 2rem 1rem 0 1rem !important;
        min-height: auto !important;
        overflow: hidden !important;
    }

    .pre-footer-banner-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        min-height: auto !important;
    }

    .pre-footer-minimal-left {
        max-width: 100% !important;
        margin-top: 1rem !important;
        padding-bottom: 1.5rem !important;
        align-items: center !important;
        text-align: center !important;
    }

    .pre-footer-badges {
        justify-content: center !important;
        gap: 20px !important;
    }

    .pre-footer-team-img-full {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 380px !important;
        min-width: 0 !important;
        height: auto !important;
        margin: 1rem auto 0 auto !important;
        display: block !important;
        opacity: 0.9 !important;
        transform: none !important;
    }
}

/* ==========================================================================
   OVERLAPPING CARDS SECTION (3D FLOATING OVERLAY POST-HERO)
   ========================================================================== */
.overlap-cards-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    background: transparent;
    padding: 0 0 40px 0;
}

.overlap-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

.overlap-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 12px 35px rgba(10, 37, 64, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.overlap-card:hover {
    transform: translateY(-6px);
    border-color: #0a2540;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.14);
}

.overlap-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.overlap-card-header i {
    font-size: 1.8rem;
    color: #2e7d32;
    flex-shrink: 0;
}

.overlap-card-header h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: #0a2540;
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.overlap-card-body {
    flex: 1;
    margin-bottom: 16px;
}

.overlap-card-body p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.overlap-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.overlap-card-footer .card-link-discreet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0a2540;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.overlap-card-footer .card-link-discreet:hover {
    color: #2e7d32;
}

@media (max-width: 1024px) {
    .overlap-cards-section {
        margin-top: -45px;
    }
    .overlap-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .overlap-cards-section {
        margin-top: -30px;
    }
    .overlap-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   FAIXAS DE AUTORIDADE / NAVY RIBBONS (4 COLUNAS FULL-WIDTH)
   ========================================================================== */
.navy-ribbon-bar {
    width: 100%;
    background-color: #0a2540;
    color: #ffffff;
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navy-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ribbon-col-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ribbon-col-item:last-child {
    border-right: none;
}

.ribbon-icon-wrapper {
    font-size: 2.5rem;
    color: #ffffff;
    flex-shrink: 0;
    line-height: 1;
}

.ribbon-col-content h4 {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 6px;
}

.ribbon-col-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #cbd5e1;
    margin: 0;
}

/* ==========================================================================
   SEÇÃO ÁREAS DE ATUAÇÃO (CLEAN LIGHT CARDS GRID 5 COLUNAS)
   ========================================================================== */
.section-title-clean-wrapper {
    text-align: center;
    margin-bottom: 45px;
}

.section-kicker-pill {
    display: inline-block;
    padding: 6px 20px;
    background: #f1f5f9;
    color: #0a2540;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(10, 37, 64, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 14px;
}

.section-title-clean {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0a2540;
    text-transform: none;
    letter-spacing: -0.5px;
    display: block;
    position: relative;
    padding-bottom: 0;
    margin: 0;
}

.title-highlight-green {
    color: #2e7d32;
    font-weight: 800;
}

.section-title-clean::after {
    display: none;
}

.areas-grid-5-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.clean-area-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    text-decoration: none;
}

.clean-area-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: #0a2540;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.08);
}

.clean-area-icon {
    font-size: 2.5rem;
    color: #0a2540;
    margin-bottom: 16px;
}

.clean-area-title {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 800;
    color: #0a2540;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.clean-area-desc {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.btn-center-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all-areas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #ffffff;
    color: #0a2540;
    border: 1px solid #0a2540;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-view-all-areas:hover {
    border-color: #2e7d32;
    background: #f8fafc;
    color: #2e7d32;
    transform: translateY(-2px);
}

/* MEDIA QUERIES ADAPTATIVAS PARA AS NOVAS ESTRUTURAS */
@media (max-width: 1024px) {
    .hero-split-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .hero-image-col {
        min-height: 320px !important;
    }
    .navy-ribbon-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .ribbon-col-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-bottom: 16px !important;
    }
    .areas-grid-5-cols {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .navy-ribbon-grid {
        grid-template-columns: 1fr !important;
    }
    .areas-grid-5-cols {
        grid-template-columns: 1fr !important;
    }
    .hero-btn-group-left {
        flex-direction: column !important;
        width: 100% !important;
    }
    .btn-primary-navy, .btn-secondary-navy {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ==========================================================================
   SMOOTH MOMENTUM SCROLL & GSAP SCRUB REVEAL (AERODYNAMICS.NL REVERSE ENGINEERED)
   ========================================================================== */
html {
    scroll-behavior: auto !important;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Aerodynamics.nl Performance Optimizations (GPU Hardware Acceleration) */
[data-scroll-animate],
.reveal-hidden,
.animate-on-scroll,
.practice-card-hybrid,
.hero-stats-ribbon-wrapper,
.hero-content-wrapper,
.hero-bg-full-img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, opacity;
}

/* Fallback seguro: Garantir visibilidade caso JS seja desativado, manipulado via GSAP em runtime */
.reveal-hidden {
    opacity: 0;
    transform: translateY(45px);
}

/* ==========================================================================
   METODOLOGIA CIENTÍFICA (BANNER FULL BLEED 100% LARGURA - HERO STYLE)
   ========================================================================== */
.sobre-home-hero-full {
    position: relative;
    width: 100%;
    min-height: 520px;
    padding: 100px 0;
    background-color: #0a2540;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sobre-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.sobre-bg-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.sobre-navy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0a2540 0%, rgba(10, 37, 64, 0.95) 45%, rgba(10, 37, 64, 0.7) 70%, rgba(10, 37, 64, 0.25) 100%);
    z-index: 2;
}

.relative-z5 {
    position: relative;
    z-index: 5;
}

.metodologia-full-content {
    position: relative;
    z-index: 10;
    max-width: 640px;
    text-align: left;
}

.metodologia-card-container {
    background: linear-gradient(135deg, #0a2540 0%, #0e3054 100%);
    border-radius: 24px;
    padding: 55px 60px;
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.18);
    position: relative;
    overflow: hidden;
}

.metodologia-text-col {
    position: relative;
    z-index: 2;
}

.metodologia-card-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 800;
    color: #ffffff;
    margin: 14px 0 20px 0;
    line-height: 1.18;
    letter-spacing: -0.5px;
}

.metodologia-card-title .highlight-text-green {
    color: #4caf50;
    font-weight: 800;
}

.metodologia-card-desc {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.metodologia-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
    padding: 0;
}

.metodologia-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.metodologia-check-list i {
    color: #4caf50;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.metodologia-img-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.metodologia-img-inner {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 440px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.metodologia-img-card:hover .metodologia-img-inner {
    transform: scale(1.03);
}

/* ==========================================================================
   LIGHT & EDITORIAL INTERNAL PAGES DESIGN SYSTEM (FASE 19.1 - IMAGE_C972D6)
   ========================================================================== */

/* 1. Internal Hero Section com Fundo Imagem hero-banner/background-rodape.png */
.internal-hero-light {
    position: relative;
    background: linear-gradient(135deg, rgba(6, 21, 36, 0.88) 0%, rgba(10, 37, 64, 0.82) 100%), 
                url('../assets/images/hero-banner/background-rodape.webp') center center / cover no-repeat;
    border-bottom: 3px solid #c5a880;
    box-shadow: inset 0 -10px 25px rgba(0, 0, 0, 0.4);
    padding: 120px 0 70px 0;
    overflow: hidden;
}

.internal-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.internal-hero-text {
    max-width: 560px;
}

.internal-hero-breadcrumbs {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c5a880;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.internal-hero-breadcrumbs a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.internal-hero-breadcrumbs a:hover {
    color: #c5a880;
}

.internal-hero-breadcrumbs span.active-crumb {
    color: #ffffff;
    font-weight: 800;
}

.internal-hero-breadcrumbs .crumb-sep {
    color: #c5a880;
    font-size: 0.75rem;
}

.internal-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 16px;
}

.internal-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Componente da Equipe Idêntico ao Print 1 (Sem Fundo Branco, Foto Completa + 2 Detalhes Decorativos) */
.hero-team-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 20px;
}

/* Detalhe Decorativo Superior Direito (Bege/Dourado translúcido) */
.hero-team-decor-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: rgba(229, 221, 208, 0.28);
    border-radius: 36px;
    z-index: 1;
    pointer-events: none;
}

/* Detalhe Decorativo Inferior Esquerdo (Slate/Cinza translúcido) */
.hero-team-decor-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 160px;
    background: rgba(180, 190, 205, 0.22);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Card Principal Navy da Equipe */
.hero-team-card-main {
    position: relative;
    z-index: 2;
    background: #061524;
    border-radius: 28px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
    display: block;
}

/* Imagem Sem Cortar */
.hero-team-card-main img.hero-team-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 28px;
}

/* Selo Flutuante 15+ Anos */
.hero-team-badge-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    background: #061524;
    border: 2px solid #c5a880;
    border-radius: 16px;
    padding: 14px 26px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-team-badge-overlay .badge-num {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.65rem;
    font-weight: 800;
    color: #c5a880;
    display: block;
    line-height: 1;
}

.hero-team-badge-overlay .badge-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 6px;
    display: block;
}

/* Compatibilidade para contêineres legados */
.internal-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

/* 2. Split Content Section (50/50 Image + Text with Floating Quote Badge) */
.split-about-section {
    padding: 90px 0;
    background: #ffffff;
}

.split-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image-col {
    position: relative;
}

.split-main-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.floating-badge-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.12);
    border-left: 4px solid #2e7d32;
    max-width: 240px;
    z-index: 5;
}

.floating-badge-card p {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 700;
    color: #0a2540;
    line-height: 1.4;
    font-style: italic;
}

.floating-badge-card span {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2e7d32;
    margin-top: 8px;
}

.split-text-col {
    padding-left: 10px;
}

.split-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2e7d32;
    margin-bottom: 12px;
    display: block;
}

.split-h2 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a2540;
    line-height: 1.2;
    margin-bottom: 20px;
}

.split-desc {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.split-feature-item {
    margin-bottom: 18px;
}

.split-feature-item h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 4px;
}

.split-feature-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* 3. Minimalist Stats Ribbon (4-Column Divider Bar) */
.stats-bar-light {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.stats-item-col {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.stats-item-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #cbd5e1;
}

.stats-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a2540;
    line-height: 1;
    margin-bottom: 6px;
}

.stats-num span {
    color: #2e7d32;
}

.stats-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 4. Parallax Action Banner with Overlapping Cards */
.parallax-action-banner {
    position: relative;
    padding: 100px 0 120px 0;
    background-color: #0a2540;
    color: #ffffff;
    overflow: visible;
}

.parallax-action-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.parallax-action-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-action-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #81c784;
    margin-bottom: 12px;
    display: block;
}

.parallax-action-h2 {
    font-family: var(--font-head);
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.parallax-action-desc {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Overlapping Floating White Cards Invading Next Section */
.overlap-cards-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.overlap-cards-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.overlap-card-item {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overlap-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.15);
    border-color: #0a2540;
}

.overlap-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.overlap-card-item h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 10px;
}

.overlap-card-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* 5. Team 4-Column Grid Section */
.team-section-light {
    padding: 110px 0 90px 0;
    background: #ffffff;
}

.team-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.team-grid-4col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.team-card-light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card-light:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(10, 37, 64, 0.08);
}

.team-card-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center top;
    background-color: #0b0b0e;
    display: block;
}

.team-card-body {
    padding: 22px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-card-name {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 12px;
}

.team-card-bio {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 16px;
}

.team-card-links {
    margin-top: auto;
    padding-top: 10px;
}

.team-card-links a {
    color: #0a2540;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-card-links a:hover {
    color: #2e7d32;
}

/* 6. Institutional Trust Bar */
.trust-bar-light {
    padding: 40px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.trust-bar-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-badge-text {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Responsividade Responsiva Light Template */
@media (max-width: 992px) {
    .internal-hero-grid,
    .split-about-grid,
    .overlap-cards-grid-3col {
        grid-template-columns: 1fr;
    }

    .stats-bar-grid,
    .team-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-item-col:not(:last-child)::after {
        display: none;
    }

    .floating-badge-card {
        right: 10px;
    }
}

/* ==========================================================================
   CONTACT SPLIT & FLOATING FORM CARD DESIGN SYSTEM (FASE 19.4 - IMAGE_C8A39F)
   ========================================================================== */

.contact-split-section {
    padding: 140px 0 90px 0;
    background-color: #f8fafc;
    position: relative;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: start;
}

/* Coluna da Esquerda: Informações & Dividers */
.contact-info-col {
    padding-right: 10px;
}

.contact-split-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2e7d32;
    margin-bottom: 12px;
    display: block;
}

.contact-split-h1 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #0a2540;
    line-height: 1.12;
    margin-bottom: 20px;
}

.contact-split-desc {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

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

.contact-info-item {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info-item:first-child {
    border-top: 1px solid #e2e8f0;
}

.contact-info-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #64748b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-label i {
    color: #2e7d32;
    font-size: 1.1rem;
}

.contact-info-val {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a2540;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-val:hover {
    color: #2e7d32;
}

.contact-social-flex {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
}

.contact-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0a2540;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.contact-social-icon:hover {
    background: #2e7d32;
    transform: translateY(-3px);
}

/* Coluna da Direita: Floating Form Card (Navy & Green) */
.contact-form-card {
    background: #0a2540;
    padding: 45px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(10, 37, 64, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.contact-form-title {
    font-family: var(--font-head);
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.contact-form-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-group-modern {
    margin-bottom: 20px;
}

.form-label-modern {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control-modern {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-control-modern::placeholder {
    color: #94a3b8;
}

.form-control-modern:focus {
    border-color: #81c784;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.2);
}

textarea.form-control-modern {
    min-height: 120px;
    resize: vertical;
}

.form-submit-btn-green {
    width: 100%;
    background: #2e7d32;
    color: #ffffff;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.35);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.form-submit-btn-green:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.45);
}

/* FAQ Section na Página de Contato */
.contact-faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* Responsividade Contato Split */
@media (max-width: 992px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-card {
        padding: 32px 24px;
    }
}

/* ==========================================================================
   DARK LUXURY HIGH-CONVERSION LANDING PAGE SCOPE (FASE 20.1 - BASE LANDINGS)
   ========================================================================== */

body.page-internal-dark {
    background-color: #061524;
    color: #f8fafc;
}

body.page-internal-dark .lg-header {
    background: rgba(6, 21, 36, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-internal-dark .lg-nav-link {
    color: #e2e8f0;
}

body.page-internal-dark .lg-nav-link:hover,
body.page-internal-dark .lg-nav-link.active {
    color: #81c784;
}

.lg-breadcrumbs {
    padding: 20px 0;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
}

.lg-breadcrumbs a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lg-breadcrumbs a:hover {
    color: #81c784;
}

.lg-breadcrumbs .sep {
    color: #475569;
    margin: 0 6px;
}

.lg-hero-hub {
    position: relative;
    padding: 100px 0 80px 0;
    background-color: #0a2540;
    color: #ffffff;
    overflow: hidden;
}

.hero-bg-subpage {
    background-image: linear-gradient(180deg, rgba(6, 21, 36, 0.75) 0%, rgba(10, 37, 64, 0.95) 100%), url('../assets/images/hero-background.webp');
    background-size: cover;
    background-position: center;
}

.lg-kicker {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #81c784;
    display: inline-block;
    margin-bottom: 14px;
}

.hero-hub-h1 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-hub-h1 .highlight {
    color: #81c784;
}

.hero-hub-p {
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 780px;
    margin-bottom: 30px;
}

.lg-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.lg-section-header h2 {
    font-family: var(--font-head);
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.lg-section-header p {
    color: #94a3b8;
    font-size: 1rem;
}

body.page-internal-dark .lg-footer {
    background-color: #030d17;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   FASE 23.0: MODULAR WORK PROCESS, TICKER RIBBON, WHY TRUST US & SHOWCASE
   ========================================================================== */

/* 1. WORK PROCESS (4 ETAPAS NUMERADAS FLUIDAS) */
.work-process-section {
    padding: 100px 0;
    background-color: #061524;
}

.work-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.work-process-card {
    background: #0a2540;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 36px 24px 30px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.work-process-card:hover {
    transform: translateY(-6px);
    border-color: #81c784;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.work-process-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a2540 0%, #2e7d32 100%);
    border: 2px solid #81c784;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
}

.work-process-step-num {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    color: #0a2540;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-process-card-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.work-process-card-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.55;
}

/* 2. TICKER RIBBON SCROLLING BANNER */
.ticker-ribbon-bar {
    background: linear-gradient(90deg, #2e7d32 0%, #1b5e20 100%);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-ribbon-content {
    display: inline-flex;
    gap: 32px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    animation: tickerScroll 25s linear infinite;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 3. WHY TRUST US (SPLIT 50/50 DARK GRID) */
.why-trust-section {
    padding: 110px 0;
    background-color: #030d17;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-trust-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-trust-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-trust-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.why-trust-card-item {
    background: #0a2540;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-trust-card-icon {
    font-size: 1.6rem;
    color: #81c784;
    margin-bottom: 8px;
}

.why-trust-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.why-trust-card-text {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.45;
}

/* 4. SHOWCASE FEATURED WORKS (4 CARDS GRID) */
.showcase-works-section {
    padding: 100px 0;
    background-color: #061524;
}

.showcase-grid-4col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.showcase-card {
    background: #0a2540;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: #81c784;
}

.showcase-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.showcase-card-body {
    padding: 24px;
}

.showcase-card-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #81c784;
    margin-bottom: 8px;
    display: block;
}

.showcase-card-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.showcase-card-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* RESPONSIVIDADE FASE 23.0 */
@media (max-width: 992px) {
    .work-process-grid,
    .why-trust-grid,
    .showcase-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FASE 25.0: BACKGROUND SYSTEM & SUBTLE LAYERING (CORPORATE HIGH-END)
   ========================================================================== */

.premium-bg-light {
    background-color: #fafafa;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(10, 37, 64, 0.03) 0%, transparent 75%),
        radial-gradient(circle at 100% 100%, rgba(46, 125, 50, 0.02) 0%, transparent 60%);
    position: relative;
}

.premium-bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a2540' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.8;
}

.premium-card-elevated {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.premium-card-elevated:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
    border-color: rgba(46, 125, 50, 0.4);
}



/* ==========================================================================
   MOBILE DRAWER OVERLAY (MENU MOBILE FLUTUANTE OCULTO POR PADRÃO)
   ========================================================================== */
/* ==========================================================================
   MOBILE DRAWER OVERLAY (MENU MOBILE FLUTUANTE EM CARDS - PADRÃO PRINT 4)
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 8px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: #c5a880;
    font-size: 1.6rem;
    z-index: 10001;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
    transform: scale(1.05);
    border-color: #c5a880;
    background: rgba(197, 168, 128, 0.15);
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 21, 36, 0.98);
    backdrop-filter: blur(14px);
    z-index: 99999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding: 0 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.mobile-drawer-logo img {
    height: 32px !important;
    width: auto !important;
    display: block;
}

.mobile-drawer-close {
    position: static;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #c5a880;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-drawer-close:hover {
    transform: scale(1.1);
    color: #ffffff;
    background: rgba(46, 125, 50, 0.4);
}

.mobile-drawer-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 16px 24px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-drawer-card {
    background: #0f2d4a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    width: 100%;
    box-sizing: border-box;
}

.mobile-drawer-card-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    padding-bottom: 4px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-card-title.gold {
    color: #c5a880;
}

.mobile-drawer-card-title i {
    font-size: 0.9rem;
    color: #c5a880;
}

.mobile-drawer-card-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 6px;
}

.mobile-drawer-card-grid li.full-span {
    grid-column: span 2;
}

.mobile-drawer-card-grid li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-drawer-card-grid li a:hover,
.mobile-drawer-card-grid li a:active {
    background: rgba(46, 125, 50, 0.25);
    border-color: #2e7d32;
}

.mobile-drawer-card-grid li a i {
    font-size: 0.95rem;
    color: #c5a880;
    flex-shrink: 0;
}

.mobile-drawer-card-grid li a span {
    flex: 1;
}

.mobile-drawer-footer-row {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}

.mobile-drawer-footer-row .mobile-drawer-btn {
    flex: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    background: linear-gradient(135deg, #c5a880 0%, #a38355 100%);
    color: #0a2540;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
    white-space: nowrap;
}

.mobile-drawer-footer-row .mobile-drawer-phone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c5a880;
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
}

/* ==========================================================================
   PADRONIZAÇÃO GLOBAL DE CABEÇALHO E RODAPÉ (.lw-topbar, .lw-header, .lw-footer)
   ========================================================================== */
.lw-topbar {
    background: #061524;
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lw-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lw-topbar-info {
    display: flex;
    gap: 24px;
}

.lw-topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lw-topbar-item i {
    color: #c5a880;
}

.lw-header {
    background: #0a2540;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lw-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.lw-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.lw-brand-logo img {
    height: 42px;
    width: auto;
}

.lw-nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.lw-nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.lw-nav-link:hover, .lw-nav-link.active {
    color: #c5a880;
}

.lw-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #c5a880 0%, #a38355 100%);
    color: #0a2540;
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
    transition: all 0.2s ease;
}

.lw-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
    color: #0a2540;
}

.lw-footer {
    background: #061524;
    color: #94a3b8;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lw-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.lw-footer-col h5 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.lw-footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: #c5a880;
}

.lw-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lw-footer-links li {
    margin-bottom: 12px;
}

.lw-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.lw-footer-links a:visited {
    color: #94a3b8;
}

.lw-footer-links a:hover {
    color: #c5a880;
}

.lw-footer-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lw-footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #c5a880;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #ffffff;
    transform: translateY(-2px);
}

.lw-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: #94a3b8;
}

.lw-footer-contact-item i {
    color: #c5a880;
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.lw-footer-contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
}

.lw-footer-links a i {
    font-size: 0.78rem;
    color: #c5a880;
    margin-right: 6px;
    transition: transform 0.2s ease;
}

.lw-footer-links a:hover i {
    transform: translateX(3px);
}

.lw-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 0.85rem;
    color: #64748b;
}

.lw-footer-bottom a {
    color: #64748b;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.lw-footer-bottom a:hover {
    color: #c5a880;
}

/* ==========================================================================
   MASTER RESPONSIVE ARCHITECTURE & DESKTOP LOCKDOWN (ALL SCREEN SIZES)
   ========================================================================== */

/* Desktop & Ultrawide Lock (1440px - 2560px+) */
@media (min-width: 1440px) {
    .container, .lw-container {
        max-width: 1320px;
    }
}

/* Notebook & Laptop (993px - 1200px) */
@media (max-width: 1200px) {
    .services-grid-hybrid-3x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .lw-footer-grid {
        gap: 30px;
    }
}

/* Tablet & Mobile Header Toggle Switch (<= 992px) */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto !important;
    }

    .lw-header-inner nav, .lw-nav-menu, .lg-nav {
        display: none !important;
    }

    .lw-header-inner, .lg-header-inner {
        flex-direction: row !important;
        height: 68px !important;
        padding: 0 16px !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .lw-brand-logo img, .lg-logo-img {
        height: 38px !important;
    }

    .lw-header-btn, .lw-btn-gold, .lg-header-btn {
        display: none !important; /* Retirar botão no mobile e deixar limpo com menu hambúrguer */
    }

    .services-grid-hybrid-3x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lw-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

/* Tablet Small & Mobile Large (<= 768px) */
@media (max-width: 768px) {
    /* BODY & MAIN BACKDROP */
    body {
        background-color: #0a2540 !important;
    }

    /* ELIMINAÇÃO DE PADDING DUPLO/TRIPLO NAS SEÇÕES EXTERNAS */
    .lw-footer,
    .pre-footer-banner-full,
    .hero-stats-ribbon-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* PADRONIZAÇÃO DE GRID LATERAL ÚNICO DE 16px (ALIGNMENT COMPREENSIVO) */
    .container, 
    .lw-container, 
    .hero-content-wrapper, 
    .section-title-clean-wrapper, 
    .lw-header-inner, 
    .lg-header-inner,
    .mobile-drawer-topbar,
    .mobile-drawer-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }

    .lw-footer-grid,
    .lw-footer-bottom {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* TOPBAR MOBILE: Mantém visível apenas a 3ª linha ("Atendimento Nacional...") */
    .lw-topbar-info {
        display: none !important;
    }
    .lw-topbar-badge, .lw-topbar-inner > div:last-child {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }
    .lw-topbar-badge span, .lw-topbar-inner > div:last-child span {
        font-size: 0.76rem !important;
        text-align: center !important;
    }
    .lw-topbar {
        padding: 6px 0 !important;
    }

    /* CABEÇALHO FIXO MOBILE COM HAMBÚRGUER */
    .lw-header, .lg-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 10000 !important;
        background: #0a2540 !important;
    }

    .lw-header-inner, .lg-header-inner {
        height: 64px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* HERO BANNER INDEX: ESPAÇAMENTO COMPACTO NO TOPO DO TÍTULO */
    .lg-hero-hub {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        min-height: auto !important;
        padding-top: 15px !important;
        padding-bottom: 20px !important;
    }

    .hero-content-wrapper {
        padding-top: 15px !important;
        padding-bottom: 20px !important;
    }

    /* PADRONIZAÇÃO E DIMINUIÇÃO DAS FONTES DE TÍTULOS NO MOBILE */
    h1, .hero-title, .lg-hero-title, .lw-hero-title, .hero-content-wrapper h1, .section-title-clean-wrapper h1, .hero-hub-h1-clean {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.3px !important;
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }

    h2, .section-title-clean, .section-title, .lg-section-title, .section-title-wrapper h2 {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
        letter-spacing: -0.2px !important;
        margin-bottom: 10px !important;
    }

    .hero-subtitle, .lg-hero-subtitle, .lw-hero-subtitle, .hero-content-wrapper p {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
    }

    h3, .card-text-body h3, .practice-card-hybrid h3 {
        font-size: 1.1rem !important;
        line-height: 1.35 !important;
    }

    .services-grid-hybrid-3x2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* REDUÇÃO DO ESPAÇAMENTO VERTICAL DA SEÇÃO FAQ E PRE-FOOTER (PADRÃO ENCAIXE MOBILE) */
    .faq-section, #faq-home, section[id*="faq"], .lg-faq-section {
        padding-top: 20px !important;
        padding-bottom: 0px !important;
        background: #f8fafc !important;
    }

    #unified-finale-wrapper {
        background: #f8fafc !important;
    }

    .pre-footer-banner-full {
        padding-top: 8px !important;
        padding-bottom: 20px !important;
        background: #f8fafc !important;
    }

    .pre-footer-banner-card {
        margin-top: 0 !important;
        flex-direction: column !important;
        padding: 24px 16px !important;
        min-height: auto !important;
        text-align: center !important;
        align-items: center !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        width: 100% !important;
        border-radius: 16px !important;
    }

    .pre-footer-minimal-left {
        max-width: 100% !important;
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
        margin-top: 0 !important;
        padding-bottom: 12px !important;
    }

    .pre-footer-title {
        font-size: 1.45rem !important;
        line-height: 1.25 !important;
        margin: 10px 0 16px 0 !important;
        text-align: center !important;
    }

    .pre-footer-badges {
        justify-content: center !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .pf-badge-item {
        text-align: left !important;
    }

    .pre-footer-team-img-full {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 360px !important;
        height: auto !important;
        margin: 16px auto 0 auto !important;
        display: block !important;
        object-fit: contain !important;
        z-index: 10 !important;
    }

    /* CORREÇÃO CIRÚRGICA DA PÁGINA SOBRE NÓS NO MOBILE */
    .hero-team-card-wrapper {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0 0 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-team-card-main {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .hero-team-card-main img.hero-team-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
        border-radius: 16px !important;
    }

    .hero-team-decor-top,
    .hero-team-decor-bottom {
        display: none !important;
    }

    .hero-team-badge-overlay {
        position: absolute !important;
        bottom: 12px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        padding: 8px 16px !important;
        max-width: 85% !important;
        width: auto !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    .hero-team-badge-overlay .badge-num {
        font-size: 1.15rem !important;
    }

    .hero-team-badge-overlay .badge-title {
        font-size: 0.72rem !important;
    }

    /* SEÇÃO DE EQUIPE (3 CARDS NO SOBRE NÓS E CORPO TÉCNICO ENCAIXADOS EM 1 COLUNA) */
    .team-grid-3col,
    .team-grid-4col,
    .team-grid-hub {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .team-card-light {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Mobile Small (<= 600px & 480px) */
@media (max-width: 600px) {
    .lw-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .lw-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .practice-card-hybrid {
        padding: 18px;
    }
}

/* ==========================================================================
   MEGA MENU DESIGN SYSTEM FOR ESPECIALIDADES (FASE 20.0)
   ========================================================================== */

.lw-nav-menu li.has-megamenu {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.lw-megamenu-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 860px;
    background: #061524;
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
    z-index: 1000;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
}

/* Ponte invisível para o mouse navegar do link para o dropdown sem fechar */
.lw-megamenu-dropdown::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 24px;
    background: transparent;
}

.lw-nav-menu li.has-megamenu:hover .lw-megamenu-dropdown,
.lw-nav-menu li.has-megamenu.active-dropdown .lw-megamenu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0px);
}

.megamenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.megamenu-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c5a880;
}

.megamenu-hub-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2e7d32;
    text-decoration: none;
    transition: color 0.2s ease;
}

.megamenu-hub-link:hover {
    color: #ffffff;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.megamenu-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    text-decoration: none;
    text-align: left;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.megamenu-card:hover {
    background: rgba(46, 125, 50, 0.18);
    border-color: #2e7d32;
    transform: translateY(-3px);
}

.megamenu-card-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.megamenu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.megamenu-card-info h4 {
    font-size: 0.86rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.25;
}

.megamenu-card-info p {
    font-size: 0.74rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .lw-megamenu-dropdown {
        display: none !important;
    }
}

/* ==========================================================================
   BOTÃO FLUTUANTE STICKY WHATSAPP HIGH CONVERSION DESIGN SYSTEM
   ========================================================================== */
.lw-sticky-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    background: #25d366;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    animation: whatsappPulse 2s infinite;
}

.lw-sticky-whatsapp:hover {
    background: #1ebc57;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

.lw-sticky-whatsapp i {
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .lw-sticky-whatsapp {
        bottom: 18px !important;
        right: 18px !important;
        width: 52px !important;
        height: 52px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .lw-sticky-whatsapp span {
        display: none !important;
    }

    .lw-sticky-whatsapp i {
        font-size: 1.85rem !important;
        margin: 0 !important;
    }
}


/* ==========================================================================
   SHIELD CORE WEB VITALS - LAYOUT STABILITY (CLS 0.00) & DIMENSIONAL RESERVES
   ========================================================================== */
img {
    max-width: 100%;
    height: auto;
    content-visibility: auto;
}
.lw-brand-logo img {
    width: 160px;
    height: 42px;
    aspect-ratio: 160 / 42;
}
.lw-topbar {
    min-height: 42px;
    contain: layout size style;
}
.lw-header {
    min-height: 80px;
    contain: layout size style;
}
.lw-hero-section {
    min-height: 480px;
    position: relative;
    contain: layout size style;
}
.lw-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}
.hero-team-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.team-card-img, .servicos-hub-img {
    width: 100%;
    height: 240px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.mobile-drawer-overlay {
    contain: layout style;
}
