/* ==========================================================================
   MOREIRA & PIMENTA SOCIEDADE DE ADVOGADOS
   Premium Design System & Stylesheet (Hero Section Focus)
   ========================================================================== */

/* 1. Imports & CSS Variables */
:root {
    /* Color Palette */
    --color-navy: #093e62;
    --color-navy-dark: #05263d;
    --color-navy-light: #125785;
    --color-teal: #1c9eb2;
    --color-teal-dark: #127989;
    --color-teal-light: #e8f7fa;
    --color-silver: #bec3c6;
    --color-silver-light: #e6ebed;
    --color-white: #ffffff;
    --color-bg-light: #fafbfb;
    
    /* Highlight & Call-To-Action (Luxury Gold) */
    --color-gold: #c5a880;
    --color-gold-light: #f7f4f0;
    --color-gold-dark: #ad8f66;
    --color-gold-hover: #b89550;
    --gradient-gold: linear-gradient(135deg, #d8bf9a 0%, #b89550 50%, #a37c3b 100%);
    --gradient-gold-hover: linear-gradient(135deg, #e4d0b2 0%, #cfa860 50%, #b98e47 100%);
    --gradient-navy: linear-gradient(135deg, #093e62 0%, #05263d 100%);
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
    
    /* Transitions & Offsets */
    --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Elevation Shadows */
    --shadow-sm: 0 4px 12px rgba(9, 62, 98, 0.03);
    --shadow-md: 0 12px 30px rgba(9, 62, 98, 0.06);
    --shadow-lg: 0 20px 50px rgba(9, 62, 98, 0.08);
    --shadow-gold: 0 8px 24px rgba(184, 149, 80, 0.25);
    --shadow-glass: 0 8px 32px 0 rgba(3, 19, 31, 0.15);
    --shadow-gold-glow: 0 0 35px rgba(197, 168, 128, 0.3);
    --shadow-premium: 0 30px 70px rgba(9, 62, 98, 0.15), 0 8px 24px rgba(184, 149, 80, 0.05);
}

/* 2. Global Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: #2c3e50;
    overflow-x: clip;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--color-navy);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-teal);
}

/* 3. Header & Navigation (Glassmorphic & Premium) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    transition: var(--transition-smooth);
}

/* Scrolling header effect handled by JS */
.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(9, 62, 98, 0.05);
    border-bottom: 1px solid rgba(197, 168, 128, 0.35);
    padding: 8px 0;
}

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

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

.logo-img {
    height: 42px; /* Reduzido para ficar slim e perfeitamente equilibrado */
    margin: 5px 0; /* Margem controlada de 5px para centralização perfeita e respiro elegante */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 36px;
    margin: 4px 0;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-navy);
    letter-spacing: 0.02em;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-gold-dark);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

/* Navbar CTA Button */
.btn-nav-cta {
    background-color: transparent;
    color: var(--color-navy);
    border: 1px solid var(--color-navy);
    padding: 10px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    gap: 8px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-nav-cta:hover {
    color: var(--color-white);
    border-color: var(--color-navy);
}

.btn-nav-cta:hover::before {
    left: 0;
}

.nav-cta-icon {
    transition: var(--transition-smooth);
}

.btn-nav-cta:hover .nav-cta-icon {
    transform: rotate(15deg) scale(1.1);
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-navy);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* 4. Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 90px; /* Espaço reservado para a barra fixa no fundo */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #182c3c 0%, #1e3448 55%, #111f2b 100%);
}

/* Background Low Opacity Watermark Layer */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 1.5s ease-out;
}

.bg-themis {
    left: 0;
    width: 45%;
    background-image: url('img/themis.webp');
    background-position: left center;
    background-size: contain;
    -webkit-mask-image: linear-gradient(to right, black 35%, transparent 100%),
                        linear-gradient(to bottom, black 65%, transparent 92%);
    mask-image: linear-gradient(to right, black 35%, transparent 100%),
                linear-gradient(to bottom, black 65%, transparent 92%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    opacity: 0.12;
    filter: grayscale(1) brightness(1.4);
}

.bg-gradient-right {
    right: 0;
    width: 65%;
    background: radial-gradient(circle at 75% 50%, rgba(9, 62, 98, 0.06) 0%, transparent 70%);
}

.js-enabled .bg-themis {
    opacity: 0.12;
}

/* Ambient glow blobs */
.hero-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}
.glow-gold {
    top: -10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 75%);
}
.glow-navy {
    bottom: 5%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-navy-light) 0%, transparent 75%);
}

/* Gradient Overlay to blend images beautifully into the white background */
.hero-bg-overlay {
    display: none; /* Desativado pois as máscaras lineares cuidam de fundir as imagens com perfeição */
}

/* Grid Layout */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1650px;
    margin: 0 auto;
    padding: 10px 24px 20px 24px; /* Reduzido de 40px/80px para compactar e caber acima da dobra */
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Content Elements styling */


.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-title .highlight-text {
    color: var(--color-gold);
    position: relative;
    display: inline-block;
}

.hero-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    opacity: 0.55;
    z-index: -1;
    border-radius: 3px;
    animation: drawLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes drawLine {
    to {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    line-height: 1.65;
    max-width: 620px;
}

.text-bold {
    font-weight: 600;
    color: var(--color-navy);
}

.hero-subtitle .text-bold {
    color: var(--color-white);
}

/* Practice Areas Micro-Cards */
.hero-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
}

.area-card {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(190, 195, 198, 0.35);
    padding: 20px 16px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.area-card:hover {
    transform: translateY(-5px);
    background-color: var(--color-white);
    border-color: rgba(28, 158, 178, 0.4);
    box-shadow: var(--shadow-md);
}

.area-icon-box {
    color: var(--color-gold);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold-light);
    border-radius: 4px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.area-card:hover .area-icon-box {
    color: var(--color-white);
    background: var(--gradient-gold);
    border-color: transparent;
}

.area-icon {
    transition: var(--transition-smooth);
}

.area-card:hover .area-icon {
    transform: scale(1.05);
}

.area-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.area-desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
}

/* Call to Actions buttons styling */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-white);
    padding: 16px 36px;
    font-size: 0.95rem;
    border: none;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 149, 80, 0.4);
    background: var(--gradient-gold-hover);
}

.btn-primary:hover::after {
    left: 125%;
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--color-navy);
    border: 1px solid var(--color-silver);
    padding: 15px 32px;
    font-size: 0.95rem;
    border-radius: 4px;
}

.btn-secondary:hover {
    background-color: var(--color-silver-light);
    border-color: var(--color-navy);
    color: var(--color-navy-dark);
}

/* 5. Right Column: Lawyers Visuals (State of the Art) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 880px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Geometric Decor Behind Lawyers */
.geometric-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.geom-arc {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.18);
}

.geom-arc-1 {
    width: 480px;
    height: 480px;
    border-style: solid;
    border-color: rgba(197, 168, 128, 0.2) transparent transparent rgba(197, 168, 128, 0.2);
    animation: rotateDecor 30s linear infinite;
}

.geom-arc-2 {
    width: 400px;
    height: 400px;
    border-style: solid;
    border-color: transparent rgba(197, 168, 128, 0.15) rgba(197, 168, 128, 0.15) transparent;
    animation: rotateDecor 20s linear infinite reverse;
}

.geom-circle-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
}

@keyframes rotateDecor {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Lawyer Image cutout wrapper */
.lawyers-photo-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    overflow: visible;
    transform: translateY(0);
    transition: var(--transition-smooth);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
}

.lawyers-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Soft ambient drop shadow to give depth and lift them out of the background */
    filter: drop-shadow(0 25px 35px rgba(9, 62, 98, 0.18));
    transition: var(--transition-smooth);
}

.lawyers-photo-container:hover {
    transform: scale(1.02) translateY(-4px);
}

.lawyers-photo-container:hover .lawyers-img {
    filter: drop-shadow(0 30px 45px rgba(9, 62, 98, 0.22));
}

.trust-badge {
    position: absolute;
    bottom: 125px;
    left: 40px;   /* Deslocado mais 50px para a esquerda (de 90px para 40px) */
    z-index: 3;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 168, 128, 0.45);
    padding: 16px 24px; /* Aumentado ligeiramente o preenchimento da caixa */
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(9, 62, 98, 0.08), 0 0 15px rgba(197, 168, 128, 0.05);
    transition: var(--transition-smooth);
    animation: floatBadge 6s ease-in-out infinite;
}

.trust-badge:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.88);
    border-color: var(--color-gold);
    box-shadow: 0 25px 45px rgba(9, 62, 98, 0.15), 0 0 25px rgba(197, 168, 128, 0.15);
}

.badge-icon {
    width: 48px; /* Aumentado de 42px para 48px */
    height: 48px; /* Aumentado de 42px para 48px */
    border-radius: 50%;
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 24px !important;  /* Aumenta o tamanho físico do ícone SVG interno */
    height: 24px !important; /* Aumenta o tamanho físico do ícone SVG interno */
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 1.1rem; /* Aumentado de 0.95rem para 1.1rem */
    font-weight: 700;
    color: var(--color-navy-dark);
    line-height: 1.2;
}

.badge-sub {
    font-size: 0.82rem; /* Aumentado de 0.75rem para 0.82rem */
    color: #576f84;
    font-weight: 500;
    margin-top: 2px;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* 6. Hero Footer Bar (Trusted details) */
.hero-footer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background-color: transparent;
    padding: 28px 0;
}

.hero-footer-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 168, 128, 0.25) 50%, transparent 100%);
}

.hero-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.feature-txt {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(190, 195, 198, 0.5);
}

/* 7. Animations on Entry */


.hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.area-card {
    opacity: 0;
    transform: translateY(30px);
}

#card-familia {
    animation: slideUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

#card-condominial {
    animation: slideUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

#card-empresarial {
    animation: slideUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero-actions {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.visual-wrapper {
    opacity: 0;
    transform: translateX(30px);
    animation: slideLeftIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes slideUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeftIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 8. Responsiveness (Mobile First & Tablet adaptations) */
@media (max-width: 1024px) {
    /* Navbar Hamburger active at 1024px to prevent overlapping/crowding */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 66px; /* Aligned with fixed header height on mobile */
        left: -100%;
        width: 100%;
        height: calc(100vh - 66px);
        background-color: rgba(4, 25, 41, 0.96); /* Glassmorphism escuro de luxo */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-top: 1px solid rgba(197, 168, 128, 0.2);
        flex-direction: column;
        justify-content: center; /* Elegant vertically centered layout */
        align-items: center;
        padding: 40px 24px;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
        box-shadow: 0 15px 30px rgba(3, 19, 31, 0.25);
    }
    
    .navbar.active {
        left: 0;
    }
    
    .geometric-decor {
        display: none !important;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 28px;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.25rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 10px 0;
        transition: var(--transition-fast);
    }
    
    .nav-link:hover {
        color: var(--color-gold) !important;
    }
    
    .nav-cta-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    
    .btn-nav-cta {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
    }

    /* Fixed size elegant slim header on Mobile to avoid layout shifts */
    .header-container {
        padding: 12px 20px;
    }
    
    .main-header.scrolled {
        padding: 0;
    }
    
    .logo-img {
        height: 34px !important;
        margin: 4px 0 !important;
    }
    
    .main-header.scrolled .logo-img {
        height: 34px !important;
        margin: 4px 0 !important;
    }
    
    /* Hero mobile: fundo único, foto grande, layout coeso */
    .hero-section {
        height: auto;
        min-height: 100svh;
        padding-top: 66px;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        background: linear-gradient(160deg, #182c3c 0%, #1e3448 55%, #111f2b 100%);
    }

    .hero-container {
        padding: 0 24px 36px;
        flex: 1;
        display: flex;
        align-items: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        width: 100%;
    }

    .hero-content {
        align-items: center;
    }

    .hero-title {
        font-size: clamp(1.7rem, 5.5vw, 2.3rem);
        line-height: 1.2;
        margin-bottom: 14px;
        color: var(--color-white);
    }

    .hero-title .highlight-text {
        color: var(--color-gold);
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 28px;
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
        color: rgba(255, 255, 255, 0.75);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 360px;
        padding: 15px 20px;
        font-size: 0.88rem;
        white-space: nowrap;
    }

    /* Foto grande, ocupa largura total, visualmente proeminente */
    .hero-visual {
        display: flex !important;
        order: -1;
        width: 100%;
        justify-content: center;
        align-items: flex-end;
        margin-bottom: 60px;
        position: relative;
        overflow: visible;
    }

    .visual-wrapper {
        max-width: min(420px, 90vw);
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        animation: slideUpIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }

    /* Trust Badge: centralizado na base da foto */
    .trust-badge {
        display: flex !important;
        position: absolute;
        bottom: -18px;
        left: 50%;
        transform: translateX(-50%);
        animation: floatBadgeMobile 6s ease-in-out infinite;
        padding: 12px 18px;
        border-radius: 8px;
        gap: 12px;
        width: max-content;
        max-width: 88vw;
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(197, 168, 128, 0.45);
        z-index: 3;
    }

    .trust-badge:hover {
        transform: translateX(-50%) translateY(-3px) scale(1.03);
    }

    .trust-badge .badge-title {
        color: var(--color-navy-dark);
    }

    .trust-badge .badge-sub {
        color: #576f84;
    }

    .trust-badge .badge-icon {
        background-color: var(--color-gold-light);
        color: var(--color-gold-dark);
    }

    .badge-icon {
        width: 38px;
        height: 38px;
    }

    .badge-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .badge-title {
        font-size: 0.88rem;
    }

    .badge-sub {
        font-size: 0.7rem;
    }

    .bg-themis, .bg-gradient-right {
        display: none;
    }

    /* Footer bar flui no documento */
    .hero-footer-bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 20px 0;
        margin-top: auto;
        background-color: rgba(10, 20, 30, 0.4);
        border-top: 1px solid rgba(197, 168, 128, 0.18);
    }

    .hero-footer-bar::before {
        display: none;
    }

    .hero-footer-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 28px;
        align-items: flex-start;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .footer-feature {
        align-items: flex-start;
        white-space: normal;
        gap: 8px;
    }

    .feature-dot {
        margin-top: 3px;
        flex-shrink: 0;
    }

    .footer-divider {
        display: none;
    }

    .feature-txt {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
        line-height: 1.4;
    }

    .footer-divider {
        display: none;
    }
}

/* Extra optimization for small mobile devices */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 72px;
    }

    .hero-container {
        padding: 16px 16px 16px 16px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .hero-visual {
        margin-bottom: 52px;
    }

    .visual-wrapper {
        max-width: 280px;
    }

    .trust-badge {
        padding: 8px 14px;
        gap: 8px;
        bottom: -18px;
    }

    .badge-icon {
        width: 32px;
        height: 32px;
    }

    .badge-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .trust-badge {
        padding: 8px 14px;
        gap: 8px;
        bottom: -18px;
    }

    .badge-icon {
        width: 32px;
        height: 32px;
    }

    .badge-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .badge-title {
        font-size: 0.82rem;
    }

    .badge-sub {
        font-size: 0.65rem;
    }

    .hero-footer-bar {
        padding: 16px 0;
    }

    .feature-txt {
        font-size: 0.76rem;
        color: rgba(255, 255, 255, 0.8);
    }
}

/* Specific floating animation for mobile preserving centered translation */
@keyframes floatBadgeMobile {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-6px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* ==========================================================================
   9. SEÇÃO DE ÁREAS DE ATUAÇÃO (Redesign Parallax por Empilhamento Sticky)
   ========================================================================== */

/* 9.1 Introdução Geral */
.areas-intro-section {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    padding: 120px 0 80px 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    position: relative;
    z-index: 5;
}

.areas-intro-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

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

.section-title-white {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 2.75rem);
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-desc-silver {
    font-size: 1.05rem;
    color: #a0b3c6;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

/* 9.2 Estrutura de Empilhamento Sticky (Card Stacking) */
.parallax-section {
    position: sticky;
    top: 66px; /* Fixa logo abaixo do cabeçalho */
    height: calc(100vh - 66px); /* Janela útil perfeita */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Sombra 3D projetada na borda superior para o efeito de passagem por cima */
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.45);
    background-color: var(--color-navy-dark);
}

/* Espaçamento físico de scroll (Timing) */
#areas-familia, #areas-condominial {
    margin-bottom: 25vh;
}

/* Z-Index crescente para empilhar de baixo para cima */
#areas-familia    { z-index: 10; }
#areas-condominial { z-index: 20; }
#areas-empresarial { z-index: 30; }

/* ============================================================
   ZONA DE DETALHE — Conteúdo entre os cartões de especialidade
   A zona aparece no scroll entre dois cartões, sem travar em tela
   ============================================================ */
.areas-detail-zone {
    position: relative;
    z-index: 12; /* Acima do cartão anterior, abaixo do próximo (20) */
    background-color: #071e2e;
    padding: 72px 48px 80px;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4), 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Padrão de micro-pontos no fundo */
.areas-detail-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(197, 168, 128, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

/* Zona de detalhe do Condominial: acima do condominial (20), abaixo do empresarial (30) */
#areas-condominial-detail { z-index: 22; }
/* Zona de detalhe do Empresarial: acima do empresarial (30) */
#areas-empresarial-detail { z-index: 32; }

.detail-zone-inner {
    position: relative;
    z-index: 1;
    max-width: 1060px;
    margin: 0 auto;
    width: 100%;
}

.detail-zone-eyebrow {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 36px;
    opacity: 0.8;
}

/* Grade dos 3 cartões de detalhe */
.detail-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.038);
    border: 1px solid rgba(197, 168, 128, 0.18);
    border-radius: 14px;
    padding: 32px 28px;
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.detail-card:hover {
    border-color: rgba(197, 168, 128, 0.45);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}

.detail-card-icon {
    width: 36px;
    height: 36px;
    color: var(--color-gold);
    margin-bottom: 18px;
    opacity: 0.9;
    display: block;
}

.detail-card-title {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.detail-card-text {
    font-size: 0.875rem;
    color: var(--color-silver);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .detail-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .areas-detail-zone {
        padding: 56px 32px 64px;
    }
}

@media (max-width: 600px) {
    .detail-cards-grid {
        grid-template-columns: 1fr;
    }
    .areas-detail-zone {
        padding: 48px 24px 56px;
    }
}

/* Imagens de fundo fixas dentro do container sticky - Redefinidas como gradientes/vetores abstratos super premium */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    pointer-events: none;
    background-image: none !important; /* Desativa as fotos de estoque em favor de gradientes e grafismos OAB de luxo */
}

/* Grafismo padrão de linhas pontilhadas de luxo */
.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(197, 168, 128, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.8;
    z-index: 2;
}

/* 1. Direito de Família - Fundo Abstrato com Circunferências Douradas de União */
#areas-familia .parallax-bg {
    background: 
        radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(28, 158, 178, 0.08) 0%, transparent 50%),
        var(--color-navy-dark);
}

#areas-familia .parallax-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(197, 168, 128, 0.05);
    border-radius: 50%;
    z-index: 2;
}

/* 2. Direito Condominial - Fundo Abstrato com Malha Arquitetônica e Estrutural */
#areas-condominial .parallax-bg {
    background: 
        radial-gradient(circle at 15% 15%, rgba(197, 168, 128, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(28, 158, 178, 0.08) 0%, transparent 50%),
        var(--color-navy-dark);
}

#areas-condominial .parallax-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    border: 1px solid rgba(197, 168, 128, 0.035);
    z-index: 2;
    background-image: 
        linear-gradient(rgba(197, 168, 128, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 168, 128, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* 3. Direito Empresarial & PI - Fundo Abstrato com Eixos de Vetores e Crescimento */
#areas-empresarial .parallax-bg {
    background: 
        radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(28, 158, 178, 0.12) 0%, transparent 50%),
        var(--color-navy-dark);
}

#areas-empresarial .parallax-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(197, 168, 128, 0.045);
    z-index: 2;
}

/* Overlay elegante para legibilidade absoluta */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 19, 31, 0.55) 0%, rgba(3, 19, 31, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

.parallax-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    z-index: 3;
    display: flex;
}

/* Nas seções de especialidade, empilha card + detalhe verticalmente */
.areas-stack-slide .parallax-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.container-left {
    justify-content: flex-start;
}

.container-right {
    justify-content: flex-end;
}

.container-center {
    justify-content: center;
}

/* Glassmorphic Premium Card - Empilhamento Sticky & Visual Super Premium */
.glass-card-premium {
    background: linear-gradient(135deg, rgba(8, 38, 62, 0.92) 0%, rgba(3, 19, 31, 0.98) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(197, 168, 128, 0.22);
    padding: 40px 44px;
    border-radius: 12px;
    width: 100%;
    max-width: 980px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.08),
                inset 0 0 20px rgba(197, 168, 128, 0.04);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: stretch;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.glass-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.glass-card-premium:hover::before {
    left: 150%;
}

/* Watermark SVG styling */
.card-watermark-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 240px;
    height: 240px;
    color: var(--color-gold);
    opacity: 0.035;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-smooth);
}

.glass-card-premium:hover .card-watermark-icon {
    transform: scale(1.08) rotate(-5deg);
    opacity: 0.05;
}

.card-left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    z-index: 2;
}

/* Step Badge above Title */
.card-step-badge {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: inline-block;
}

/* Underline decoration under Title */
.title-underline {
    width: 32px;
    height: 2px;
    background: var(--gradient-gold);
    margin-bottom: 16px;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.glass-card-premium:hover .title-underline {
    width: 48px;
}

.card-right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    border-left: 1px solid rgba(197, 168, 128, 0.18);
    padding: 12px 0 12px 40px;
    z-index: 2;
}

.card-info-title {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 16px;
    line-height: 1.35;
}

.card-info-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

/* Gold highlighted text inside description */
.highlight-gold-text {
    color: var(--color-gold);
    font-weight: 600;
}

/* ============================================================
   RETÂNGULO DE DETALHES — abaixo do cartão, dentro do mesmo slide
   ============================================================ */
.specialty-detail-bar {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 10px;
    padding: 24px 32px;
    gap: 0;
}

.sdb-item {
    padding: 0 24px;
}

.sdb-item:first-child {
    padding-left: 0;
}

.sdb-item:last-child {
    padding-right: 0;
}

.sdb-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(197, 168, 128, 0.2);
}

.sdb-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.sdb-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .specialty-detail-bar {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 24px;
    }
    .sdb-divider { display: none; }
    .sdb-item { padding: 0; }
}

/* Lista de detalhes dentro da coluna direita do cartão */
.card-detail-list {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 168, 128, 0.18);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.card-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.card-detail-bullet {
    display: inline-block;
    width: 5px;
    height: 5px;
    min-width: 5px;
    border-radius: 50%;
    background-color: var(--color-gold);
    margin-top: 6px;
    opacity: 0.8;
}

.card-detail-title {
    color: var(--color-gold);
    font-weight: 600;
}

.card-detail-desc {
    color: rgba(255, 255, 255, 0.68);
}

.glass-card-premium {
    opacity: 1;
    transition: var(--transition-smooth);
}

.js-enabled .glass-card-premium {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
}

/* Card Ativo: Aparece com fade suave e leve subida elegante */
.js-enabled .parallax-section.active .glass-card-premium {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Card Anterior: Desaparece sutilmente de forma mais elegante e sobe de nível */
.js-enabled .parallax-section.scroll-out .glass-card-premium {
    opacity: 0.25;
    transform: translateY(-30px) scale(0.96);
    pointer-events: none;
}

/* Hover tátil apenas para dispositivos com mouse pointer (evita problemas em telas de toque) */
@media (hover: hover) {
    .parallax-section.active .glass-card-premium:hover {
        transform: translateY(-8px) scale(1.02) !important;
        border-color: var(--color-gold);
        box-shadow: 0 20px 45px rgba(3, 19, 31, 0.6), 0 0 25px rgba(197, 168, 128, 0.2);
    }
}

.card-num-badge {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 16px;
    line-height: 1;
}

.card-title-serif {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.card-topics-list {
    margin-bottom: 24px;
    width: 100%;
}

@media (min-width: 1025px) {
    #areas-familia .glass-card-premium {
        grid-template-columns: 1.42fr 1fr;
    }

    .card-topics-list.grid-layout {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 12px 24px;
    }

    .card-topics-list.grid-layout li {
        margin-bottom: 0;
    }
}

.card-topics-list li {
    font-size: 1.05rem;
    color: #e2e8f0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: default;
}

.card-topics-list li:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.card-topics-list li svg,
.topic-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-gold);
}

/* Subtítulo mobile — oculto no desktop, visível só no mobile */
.card-subtitle-mobile {
    display: none;
}

/* Premium WhatsApp card CTA */
.btn-card-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border: none;
    color: var(--color-white);
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    border-radius: 4px;
    gap: 8px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
    cursor: pointer;
    width: auto;
}

.btn-card-whatsapp:hover {
    transform: translateY(-2px);
    background: var(--gradient-gold-hover);
    box-shadow: 0 10px 24px rgba(184, 149, 80, 0.4);
    color: var(--color-white);
}

.btn-card-whatsapp svg {
    transition: var(--transition-smooth);
}

.btn-card-whatsapp:hover svg {
    transform: translateX(4px);
}


/* 9.3 Fecho e Rodapé da Seção */
.areas-outro-section {
    position: relative;
    z-index: 40; /* Cobre a última seção sticky com sombra */
    background-color: var(--color-navy-dark);
    padding: 80px 0 100px 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    overflow: hidden;
}

.outro-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.outro-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.outro-decor-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.areas-outro-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 3;
}

.areas-outro-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bullet-gold {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.85);
    display: inline-block;
    flex-shrink: 0;
}

.areas-outro-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.btn-gold-parallax-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--color-white);
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border-radius: 4px;
    box-shadow: var(--shadow-gold);
    gap: 12px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-gold-parallax-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 149, 80, 0.4);
    background: var(--gradient-gold-hover);
}

.btn-gold-parallax-theme svg {
    transition: var(--transition-smooth);
}

.btn-gold-parallax-theme:hover svg {
    transform: translateX(4px);
}

/* Refinamentos para Laptops (Telas Médias entre 1025px e 1440px de largura) */
@media (max-width: 1440px) {
    .glass-card-premium {
        max-width: 880px;
        gap: 36px;
        padding: 32px 36px;
    }
    
    .card-right-column {
        padding-left: 36px;
    }
    
    .card-title-serif {
        font-size: 1.7rem;
    }
    
    .card-info-title {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }
    
    .card-info-text {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .specialty-detail-bar {
        max-width: 880px;
        padding: 16px 24px;
    }

    .sdb-item {
        padding: 0 16px;
    }

    .sdb-title {
        font-size: 0.88rem;
    }

    .sdb-text {
        font-size: 0.76rem;
    }
}

/* Otimizações de Altura (Para viewports verticais curtas em Laptops/Desktops) */
@media (max-height: 850px) and (min-width: 769px) {
    .glass-card-premium {
        padding: 24px 32px;
        gap: 32px;
    }
    
    .card-left-column, .card-right-column {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    
    .card-title-serif {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .card-step-badge {
        margin-bottom: 4px;
    }
    
    .card-topics-list {
        margin-bottom: 16px;
        gap: 8px;
    }
    
    .card-topics-list li {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .btn-card-whatsapp {
        padding: 10px 20px;
        font-size: 0.82rem;
    }
    
    .card-info-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .card-info-text {
        font-size: 0.88rem;
        line-height: 1.55;
    }
    
    .specialty-detail-bar {
        padding: 12px 24px;
    }
    
    .sdb-title {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .sdb-text {
        font-size: 0.74rem;
        line-height: 1.5;
    }
    
    /* Aumenta o gap ligeiramente para equilibrar */
    .areas-stack-slide .parallax-container {
        gap: 20px;
    }
}

/* Responsividade Adaptável */
@media (max-width: 1024px) {
    /* Entre 769px e 1024px (Tablets e Laptops compactos/escalados): Mantém o efeito Sticky Parallax ativo, mas ajusta o preenchimento e tamanho para respiro elegante */
    .glass-card-premium {
        max-width: 760px;
        grid-template-columns: 1fr 1.1fr;
        gap: 32px;
        padding: 32px;
    }
    
    .card-right-column {
        padding-left: 32px;
        padding-top: 12px;
    }
    
    .card-info-title {
        font-size: 1.15rem;
    }
    
    .card-info-text {
        font-size: 0.85rem;
    }
    
    .card-title-serif {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }
    
    .card-topics-list {
        margin-bottom: 18px;
    }
    
    .card-topics-list li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .btn-card-whatsapp {
        padding: 10px 18px;
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .areas-intro-section {
        padding: 72px 0 56px 0;
    }

    /* Fundo escuro no container pai evita branco entre seções */
    .areas-scroll-stack {
        background-color: var(--color-navy-dark);
    }

    /* Mobile flow: keep position: sticky and height calc to preserve sticky stacking effect, but make cards ultra-compact */
    .parallax-section {
        position: sticky !important;
        top: 66px !important;
        height: calc(100svh - 66px) !important;
        min-height: calc(100svh - 66px) !important;
        width: 100%;
        overflow: hidden !important; /* Prevents overflow of background decorations */
        display: flex;
        align-items: center; /* Centers card vertically inside the sticky viewport */
        justify-content: center;
        padding: 8px 0 !important; /* Minimal vertical padding to maximize card height room */
        box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.45) !important;
        background-color: var(--color-navy-dark);
        border-bottom: none;
    }

    /* Spacing between sticky slides to control stacking timing on mobile scroll */
    #areas-familia, #areas-condominial {
        margin-bottom: 20svh !important;
    }

    .parallax-container {
        justify-content: center;
        padding: 0 16px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Card completo — grid de 1 coluna, ambas as colunas empilhadas */
    .glass-card-premium {
        max-width: 95% !important;
        width: 100%;
        padding: 14px 14px !important; /* Extremely compact padding to guarantee vertical fit */
        text-align: center;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        grid-template-columns: unset !important;
        background: rgba(4, 25, 41, 0.92) !important;
        border: 1px solid rgba(197, 168, 128, 0.45) !important;
        box-shadow: 0 10px 30px rgba(3, 19, 31, 0.5) !important;
        height: auto !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .js-enabled .glass-card-premium {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Coluna esquerda */
    .card-left-column {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    /* Coluna direita — oculta no mobile, substituída pelo subtítulo compacto */
    .card-right-column {
        display: none !important;
    }

    /* Subtítulo mobile — frase curta de contexto abaixo do título */
    .card-subtitle-mobile {
        display: block;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.62);
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-watermark-icon {
        display: none;
    }

    .card-title-serif {
        font-size: 1.2rem !important; /* Compact title size to save height */
        margin-bottom: 4px !important;
        text-align: left;
    }

    /* Card alinhado à esquerda — mais natural e legível no mobile */
    .card-left-column {
        align-items: flex-start !important;
        text-align: left !important;
    }

    /* Subtítulo oculto no mobile */
    .card-subtitle-mobile {
        display: none !important;
    }

    /* Tópicos com checkmarks em grid de duas colunas para economizar 50% da altura vertical */
    .card-topics-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px 12px !important;
        margin: 0 0 10px 0 !important; /* Compact spacing */
        width: 100% !important;
    }

    .card-topics-list li {
        font-size: 0.8rem !important; /* Compact font size */
        margin-bottom: 0 !important; /* Managed by grid gap */
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .card-topics-list li:hover {
        transform: none !important;
    }

    /* Coluna direita visível e integrada ao card */
    .card-right-column {
        display: flex !important;
        flex-direction: column !important;
        border-left: none !important;
        border-top: 1px solid rgba(197, 168, 128, 0.18) !important;
        padding: 10px 0 0 0 !important; /* Compact padding */
        margin-top: 10px !important;
        align-items: flex-start !important;
        text-align: left !important;
        width: 100% !important;
    }

    .card-info-title {
        font-size: 0.9rem !important; /* Compact info title */
        text-align: left !important;
        margin-bottom: 4px !important;
        color: var(--color-gold) !important;
    }

    .card-info-text {
        font-size: 0.78rem !important; /* Compact description font size */
        text-align: left !important;
        line-height: 1.45 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        border-left: none !important;
        padding-left: 0 !important;
    }

    /* Barra de detalhes oculta */
    .specialty-detail-bar {
        display: none !important;
    }

    .sdb-divider {
        display: none;
    }

    /* Botão CTA largura total */
    .btn-card-whatsapp {
        width: 100% !important;
        justify-content: center !important;
        padding: 8px 16px !important; /* Compact padding */
        font-size: 0.8rem !important; /* Compact font size */
        margin-top: 10px !important;
    }

    .areas-outro-section {
        position: relative;
        z-index: 40;
        background-color: var(--color-navy-dark);
        padding: 60px 0 80px 0;
        box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.45);
        border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    }

    .areas-outro-bar {
        flex-direction: column;
        gap: 8px;
    }

    .bullet-gold {
        display: none;
    }

    .areas-outro-text {
        font-size: 0.9rem;
    }

    .btn-gold-parallax-theme {
        width: auto !important;
        max-width: 90% !important;
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
        gap: 8px !important;
    }
}

@media (max-width: 480px) {
    .glass-card-premium {
        padding: 12px 12px !important; /* Extra compact padding for small screens */
        border-radius: 6px;
        max-width: 95% !important;
    }
    
    .card-title-serif {
        font-size: 1.15rem !important;
    }
    
    .card-topics-list {
        gap: 4px 8px !important;
        margin-bottom: 8px !important;
    }
    
    .card-topics-list li {
        font-size: 0.78rem !important;
        gap: 6px !important;
    }
}

/* ==========================================================================
   10. SEÇÃO O ESCRITÓRIO (Luxury Triptych Panels Layout - Opção 3)
   ========================================================================== */
.office-section {
    background-color: var(--color-bg-light);
    padding: 120px 0;
    width: 100%;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(9, 62, 98, 0.05);
}

.office-container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 24px;
}

.office-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
    width: 100%;
}

.office-image-column {
    position: relative;
    width: 100%;
}

.office-image-wrapper {
    position: relative;
    border-radius: 8px;
    z-index: 2;
}

.office-img-main {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    filter: grayscale(12%) contrast(101%);
}

.office-img-frame {
    position: absolute;
    top: 24px;
    left: -24px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    z-index: -1;
}

/* Opposing mouse-tracking transitions */
.office-image-wrapper .office-img-main,
.office-image-wrapper .office-img-frame {
    transition: filter 0.4s ease; /* instantaneous transform tracking */
}

.office-image-wrapper:not(:hover) .office-img-main,
.office-image-wrapper:not(:hover) .office-img-frame {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.office-image-wrapper:hover .office-img-main {
    filter: grayscale(0%) contrast(100%);
}

.office-mini-badge {
    position: absolute;
    bottom: 40px;
    right: -24px;
    background: rgba(4, 25, 41, 0.85); /* Glassmorphism escuro */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.4);
    padding: 16px 20px;
    border-radius: 6px;
    box-shadow: var(--shadow-lg), 0 12px 30px rgba(3, 19, 31, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    transition: var(--transition-smooth);
}

.office-image-wrapper:hover .office-mini-badge {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 16px 40px rgba(3, 19, 31, 0.35);
}

.badge-icon-gold {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-content-text {
    display: flex;
    flex-direction: column;
}

.badge-title-gold {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.2;
}

.badge-sub-white {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
    font-weight: 500;
}

.office-content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.office-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.office-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    color: var(--color-navy-dark);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.office-desc {
    font-size: 1.08rem;
    color: #4a5d6e;
    line-height: 1.75;
    margin-bottom: 44px;
}

.office-highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.highlight-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background-color: var(--color-white);
    border: 1px solid rgba(9, 62, 98, 0.05);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--shadow-md), 0 12px 30px rgba(9, 62, 98, 0.08);
}

.highlight-item.highlight-featured {
    background: var(--gradient-navy);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    box-shadow: var(--shadow-md), 0 12px 35px rgba(9, 62, 98, 0.12);
}

.highlight-item.highlight-featured:hover {
    box-shadow: var(--shadow-lg), 
                0 20px 45px rgba(9, 62, 98, 0.2), 
                0 0 25px rgba(197, 168, 128, 0.25);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.highlight-item.highlight-featured .highlight-icon {
    background-color: var(--color-white);
    color: var(--color-navy-dark);
}

.highlight-item:hover .highlight-icon {
    background: var(--gradient-gold);
    color: var(--color-white);
}

.highlight-item.highlight-featured:hover .highlight-icon {
    background-color: var(--color-white);
    color: var(--color-navy-dark);
}

.highlight-text-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    transition: var(--transition-smooth);
}

.highlight-item.highlight-featured .highlight-title {
    color: var(--color-white);
}

.highlight-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5c6f7e;
    transition: var(--transition-smooth);
}

.highlight-item.highlight-featured .highlight-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsividade Adaptável */
@media (max-width: 1200px) {
    .office-split-grid {
        gap: 48px;
    }
    
    .office-desc {
        margin-bottom: 32px;
    }
}

@media (max-width: 1024px) {
    .office-section {
        padding: 90px 0;
    }
    
    .office-split-grid {
        grid-template-columns: 1fr;
        gap: 64px;
        max-width: 720px;
        margin: 0 auto;
    }
    
    .office-image-column {
        max-width: 580px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .office-section {
        padding: 80px 0;
    }
    
    .office-title {
        font-size: 1.85rem;
    }
    
    .office-desc {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .highlight-item {
        padding: 20px;
        gap: 20px;
    }
    
    .highlight-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .office-section {
        padding: 60px 0;
    }
    
    .office-mini-badge {
        right: 0;
        bottom: 20px;
        padding: 10px 16px;
        gap: 8px;
    }
    
    .office-mini-badge .badge-title-gold {
        font-size: 0.8rem;
    }
    
    .office-mini-badge .badge-sub-white {
        font-size: 0.68rem;
    }
    
    .office-mini-badge .badge-icon-gold {
        width: 30px;
        height: 30px;
    }
    
    .office-mini-badge .badge-icon-gold svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .office-section {
        padding: 60px 0;
    }
    
    .office-title {
        font-size: 1.65rem;
    }
    
    .office-desc {
        font-size: 0.98rem;
    }
    
    .triptych-panel {
        padding: 32px 20px;
    }
    
    .panel-title-serif {
        font-size: 1.18rem;
        margin-bottom: 10px;
    }
    
    .panel-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ==========================================================================
   11. SECAO DIFERENCIAIS
   ========================================================================== */
.differentials-section {
    position: relative;
    background:
        radial-gradient(circle at 85% 15%, rgba(197, 168, 128, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(28, 158, 178, 0.06) 0%, transparent 40%),
        var(--color-navy-dark);
    color: var(--color-white);
    padding: 120px 0;
    overflow: hidden;
}

.differentials-container {
    position: relative;
    z-index: 1;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Watermark Background Scale */
.decor-watermark-scale {
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 480px;
    height: 480px;
    color: var(--color-gold);
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-10deg);
}

/* Background Decor Modern Shapes */
.differentials-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.decor-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ambient glow blobs */
.differentials-bg-decor::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.differentials-bg-decor::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(28, 158, 178, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* Centered Editorial Header */
.differentials-header-centered {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px auto;
}

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

.differentials-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--color-white);
}

.differentials-desc-centered {
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(230, 235, 237, 0.8);
}

/* Horizontal Grid of Premium Cards */
.differentials-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.differential-card-premium {
    position: relative;
    background: linear-gradient(135deg, rgba(8, 34, 54, 0.35) 0%, rgba(5, 26, 41, 0.75) 100%);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 16px;
    padding: 44px 32px 40px 32px;
    box-shadow: 0 20px 48px rgba(1, 11, 20, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.differential-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.differential-card-premium:hover::before {
    left: 150%;
}

.differential-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.42);
    box-shadow: 0 30px 60px rgba(1, 11, 20, 0.32), 0 0 30px rgba(197, 168, 128, 0.08);
}

/* Icon Wrapper */
.card-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.25);
    background: rgba(197, 168, 128, 0.05);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.differential-card-premium:hover .card-icon-wrapper {
    background: var(--gradient-gold);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
    transform: scale(1.08) rotate(5deg);
    color: var(--color-white);
}

.card-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

/* Card Typography */
.card-title-premium {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 14px;
}

.card-text-premium {
    font-size: 0.94rem;
    line-height: 1.68;
    color: rgba(230, 235, 237, 0.72);
}

/* Main Footer Styles - Luxury Premium */
.main-footer {
    background: var(--color-navy-dark);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 50px;
    align-items: start;
    width: 100%;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
}

.footer-logo {
    height: 48px;
    width: auto;
    align-self: start;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(230, 235, 237, 0.65);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.25);
    background: rgba(197, 168, 128, 0.05);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon-link:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

.social-icon-link svg {
    display: block;
    width: 18px;
    height: 18px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-details-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(230, 235, 237, 0.45);
    margin-bottom: 2px;
    font-weight: 600;
}

.detail-value, .detail-link {
    font-size: 0.92rem;
    color: rgba(230, 235, 237, 0.85);
    line-height: 1.5;
}

.detail-link {
    text-decoration: none;
    transition: var(--transition-fast);
}

.detail-link:hover {
    color: var(--color-gold);
}

.footer-map-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.footer-map-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: var(--shadow-sm);
}

.footer-map-wrapper iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2) brightness(0.9); /* Perfect blend with our dark theme */
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-map-wrapper:hover iframe {
    filter: none;
    opacity: 1;
}

.footer-group-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.84rem;
    color: rgba(230, 235, 237, 0.45);
    line-height: 1.6;
}

.footer-oab {
    font-size: 0.84rem;
    color: rgba(230, 235, 237, 0.38);
    text-align: right;
}

/* Media Queries */
@media (max-width: 1400px) {
    .differentials-grid-premium {
        gap: 20px;
    }
    
    .differential-card-premium {
        padding: 36px 24px;
    }
}

@media (max-width: 1200px) {
    .differentials-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .differentials-section {
        padding: 96px 0;
    }
}

@media (max-width: 768px) {
    .differentials-section {
        padding: 80px 0;
    }

    .differentials-header-centered {
        margin-bottom: 44px;
    }

    .differentials-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .differential-card-premium {
        padding: 36px 28px;
    }

    .differentials-title {
        font-size: 1.85rem;
    }

    .differentials-desc-centered {
        font-size: 1rem;
        line-height: 1.75;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-oab {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .differentials-section {
        padding: 64px 0;
    }

    .differentials-title {
        font-size: 1.62rem;
    }
}



/* ==========================================================================
   14. CTA FINAL
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 100px 24px;
    background: var(--color-gold-light);
    color: var(--color-navy-dark);
    text-align: center;
    overflow: hidden;
}

.cta-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(9, 62, 98, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 62, 98, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.cta-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-navy-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5d6e;
    margin-bottom: 40px;
    max-width: 680px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    background: var(--gradient-gold);
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.btn-cta:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(184, 149, 80, 0.45);
}

.btn-cta:hover::after {
    left: 125%;
    opacity: 1;
}

.cta-glow-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.18) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
    filter: blur(50px);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 24px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-desc {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .btn-cta {
        padding: 16px 24px;
        font-size: 0.95rem;
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

/* ==========================================================================
   15. SEÇÃO SÓCIOS FUNDADORES (Luxury Alternating Layout)
   ========================================================================== */
.partners-section {
    background-color: var(--color-white);
    padding: 120px 0;
    width: 100%;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    overflow: hidden;
}

.partners-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header style consistent with other sections */
.partners-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold-dark);
    margin-bottom: 12px;
    display: inline-block;
}

.partners-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.partners-header-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Rows and Columns */
.partners-rows {
    display: flex;
    flex-direction: column;
    gap: 96px; /* spacing between partners */
}

.partner-row {
    display: flex;
    align-items: center;
    gap: 72px;
    width: 100%;
}

.partner-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.partner-image-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 8px;
    z-index: 2;
}

/* Elegant border background effect for portrait similar to office wrapper */
.partner-image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    z-index: -1;
    transition: var(--transition-smooth);
}

.partner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    filter: none;
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, rgba(9, 62, 98, 0.05) 0%, rgba(197, 168, 128, 0.05) 100%);
}

/* Hover effects */
.partner-row:hover .partner-img {
    filter: none;
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.partner-row:hover .partner-image-frame::after {
    transform: translate(-6px, -6px);
    border-color: var(--color-gold-hover);
}

.partner-info-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.partner-header-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.partner-role {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-gold-dark);
}

.partner-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
}

.partner-oab {
    font-size: 0.8rem;
    color: rgba(9, 62, 98, 0.6);
    font-weight: 500;
}

/* Specialties badges */
.partner-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-badge {
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(197, 168, 128, 0.25);
    transition: var(--transition-fast);
}

.specialty-badge:hover {
    background: var(--gradient-gold);
    color: var(--color-white);
    border-color: transparent;
}

.partner-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5d6e;
    text-align: justify;
}

/* Partner WhatsApp Button CTA */
.btn-partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    color: var(--color-navy);
    border: 1px solid var(--color-navy);
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-partner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-partner-cta:hover {
    color: var(--color-white);
    border-color: var(--color-navy);
    box-shadow: var(--shadow-md);
}

.btn-partner-cta:hover::before {
    left: 0;
}

.btn-partner-cta svg {
    transition: var(--transition-smooth);
}

.btn-partner-cta:hover svg {
    transform: translateX(4px);
}

/* Alternating styling for desktop */
.partner-row-reverse {
    flex-direction: row-reverse;
}

.partner-row-reverse .partner-image-frame::after {
    left: auto;
    right: -20px;
}

.partner-row-reverse:hover .partner-image-frame::after {
    transform: translate(6px, -6px);
}

/* Responsividade */
@media (max-width: 992px) {
    .partner-row {
        gap: 48px;
    }
    .partner-name {
        font-size: 1.75rem;
    }
    .partner-bio {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 80px 0;
    }
    
    .partners-header {
        margin-bottom: 48px;
    }

    .partners-rows {
        gap: 64px;
    }

    .partner-row {
        flex-direction: column !important; /* Forces photo to stack on top of text */
        gap: 32px;
        text-align: center;
        align-items: center;
    }

    .partner-image-wrapper {
        width: 100%;
    }

    .partner-image-frame {
        max-width: 320px;
    }

    .partner-image-frame::after {
        left: -15px !important;
        right: auto !important;
        top: 15px;
        width: 100%;
        height: 100%;
    }

    .partner-row-reverse:hover .partner-image-frame::after,
    .partner-row:hover .partner-image-frame::after {
        transform: translate(-4px, -4px);
    }

    .partner-info-column {
        align-items: center;
        width: 100%;
    }

    .partner-specialties {
        justify-content: center;
    }

    .partner-bio {
        text-align: center;
    }
    
    .btn-partner-cta {
        width: 100%;
        justify-content: center;
    }
}

