/* --- CSS VARIABLES & RESET --- */
:root {
    --bg-primary: #FFFFFF;
    --bg-light-grey: #F8F8F8;
    --bg-dark: #1A1A1A;
    --bg-black: #000000;
    --text-primary: #2A2A2A;
    --text-light: #F8F8F8;
    --text-silver: #A8A8A8;
    --silver-gradient: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 50%, #BDBDBD 100%);
    --silver-metallic: #C0C0C0;
    --silver-metallic-dark: #4A4A4A; /* New for highlighted text */
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-speed: 0.3s;
    --max-width: 1400px; /* Refined to 1400px */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* html { scroll-behavior: smooth; } -> Removido em favor do Lenis JS para um scroll Premium */
html { overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-sans); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; max-width: 100%; }
body.menu-open { overflow: hidden; }

/* Typography */
h1, h2, h3, h4, h5, h6, .serif-title { font-family: var(--font-serif); font-weight: 600; color: var(--bg-black); line-height: 1.2; }
.text-silver { background: var(--silver-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.text-silver-icon { color: var(--silver-metallic); }
.text-silver-glow { filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.6)); }

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-1400 { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.items-center { align-items: center; }
.center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.bg-light-grey { background-color: var(--bg-light-grey); }
.section-dark { background-color: var(--bg-dark); color: var(--text-light); }

/* Buttons Global */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-weight: 500; text-decoration: none; transition: all var(--transition-speed); border-radius: 2px; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; border: none; cursor: pointer; gap: 12px; }

/* ------------------------------------------- */
/* Section 1: Header (Iteration 5 Refined)      */
/* ------------------------------------------- */
.main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #EEE; padding: 1.5rem 0; }
.header-container-refined { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.header-left-group { display: flex; align-items: center; }
.serif-logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: #000; letter-spacing: -1px; }
.vertical-separator { width: 1px; height: 30px; background: #000; opacity: 0.2; margin: 0 2rem; }
.main-header-logo { height: 40px; width: auto; display: block; filter: brightness(0); transition: 0.3s ease; }

.contact-block-left { display: flex; gap: 2rem; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #555; }
.contact-item i { font-size: 1rem; }

.header-right { margin-left: auto; }
.nav-links-compact { display: flex; list-style: none; gap: 2rem; margin: 0; padding: 0; }
.nav-links-compact a { text-decoration: none; color: #000; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; transition: color 0.3s; }
.nav-links-compact a:hover { color: var(--silver-metallic); }

.menu-toggle-v4 { display: none; background: transparent; border: none; font-size: 1.5rem; color: #000; cursor: pointer; }

/* Hide mobile drawer elements on desktop */
.drawer-logo-wrapper { display: none; }

/* ------------------------------------------- */
/* Section 2: Hero (Iteration 5 Refined)      */
/* ------------------------------------------- */
.hero-v5 { min-height: 90vh; display: flex; align-items: center; padding-top: 140px; background: #FFF; }
.hero-container-symmetric { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.hero-headline-v5 { font-size: 3.8rem; line-height: 1.2; margin-bottom: 2rem; color: #000; font-weight: 700; }
.highlight-silver-bold { color: var(--silver-metallic-dark); font-weight: 700; }

.hero-description-v4 { font-size: 1rem; color: #777; max-width: 500px; margin-bottom: 3.5rem; line-height: 1.8; font-weight: 300; }

.hero-actions-v4 { display: flex; gap: 1.5rem; }
.btn-hero-primary { background: var(--bg-dark); color: #FFF; border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); background: #000; }

.btn-hero-secondary { background: transparent; color: var(--silver-metallic); border: 1px solid var(--silver-metallic); border-radius: 4px; }
.btn-hero-secondary:hover { background: rgba(192, 192, 192, 0.05); border-color: #999; color: #999; }

.hero-image-column-right { display: flex; justify-content: flex-end; }
.hero-image-framed-v5 { position: relative; width: 100%; max-width: 580px; }
.img-hero-rectangular { width: 100%; height: auto; border-radius: 4px; filter: grayscale(10%) contrast(1.1); }
.img-with-shadow { box-shadow: 0 20px 60px rgba(0,0,0,0.12); filter: drop-shadow(0 10px 40px rgba(0,0,0,0.15)); }

/* Floating Cards LEFT (Iteration 5) */
.hero-floating-cards-left { position: absolute; bottom: 40px; left: -60px; display: flex; flex-direction: column; gap: 1.5rem; z-index: 10; }
.floating-card-v4 { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.2rem; border-radius: 12px; box-shadow: 0 15px 45px rgba(0,0,0,0.08); transition: 0.3s ease; border: 1px solid rgba(192, 192, 192, 0.4); }
.floating-card-v4:hover { transform: translateX(10px); }
.card-icon-v4 { width: 45px; height: 45px; background: #FAFAFA; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.card-text-v4 { display: flex; flex-direction: column; line-height: 1.2; justify-content: center; }
.card-text-v4 strong { font-family: var(--font-serif); font-size: 1.35rem; color: #000; font-weight: 700; margin-bottom: 0; }
.card-text-v4 span { font-size: 0.85rem; color: #999; font-family: var(--font-sans); margin-top: 2px; }

/* --- Global Section Overwrites --- */
section { padding: 100px 0; }
.section-tag { color: var(--silver-metallic); letter-spacing: 4px; font-weight: 700; margin-bottom: 1rem; }
.bg-light-grey { background-color: #FAFAFA; }
.section-dark { background-color: #111; }
.btn-silver-gradient { background: var(--silver-gradient); color: #000; border-radius: 4px; font-weight: 600; }
.btn-silver-outline { border: 1px solid var(--silver-metallic); color: #000; border-radius: 4px; }

/* 2. Highlights */
.highlights { padding: 4rem 0; border: none; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.highlight-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.5rem; }
.highlight-border { border-left: 1px solid rgba(192, 192, 192, 0.2); border-right: 1px solid rgba(192, 192, 192, 0.2); }
.highlight-item i { font-size: 2.2rem; margin: 0; display: block; }
.highlight-item span { font-weight: 500; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; }

/* 3. About Refine */
.about-counters .counter-item p { color: var(--silver-metallic); }

/* 9. FAQ Refine */
.accordion-header span { font-size: 1.8rem; }
.accordion-item { border-color: #F0F0F0; }

/* Footer Refine - Iteration 19 */
.footer-v19 a:hover { color: var(--silver-metallic); }

/* ------------------------------------------- */
/* Section 3: About (#escritorio - Iteration 7)*/
/* ------------------------------------------- */
.about { padding: 120px 0; background: #FFF; }
.about-image-wrapper { position: relative; }
.about-image-framed-v7 { position: relative; width: 100%; max-width: 580px; height: 650px; background: #F4F4F4; border-radius: 4px; overflow: visible; display: block; }
.img-about-vertical { width: 100%; height: 650px; object-fit: cover; border-radius: 4px; filter: grayscale(5%) contrast(1.05); display: block; }

/* Floating Card Bottom-Left */
.about-floating-card-left { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); background: #FFF; padding: 2rem; width: 340px; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.12); border: 1px solid #F8F8F8; z-index: 10; text-align: center; }
.about-floating-card-left h4 { font-size: 1.25rem; line-height: 1.4; margin-bottom: 0.5rem; color: #000; font-weight: 500; }

/* Right Content */
.about-content-v7 { padding-left: 2rem; }
.label-silver { display: block; font-size: 0.75rem; font-weight: 700; color: var(--silver-metallic); letter-spacing: 4px; margin-bottom: 1.5rem; text-transform: uppercase; }
.section-title-v7 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 2rem; color: #000; }
.section-description-v7 { font-size: 1rem; color: #666; margin-bottom: 3.5rem; line-height: 1.8; }

/* Differentiators Grid 2x2 */
.differentiators-grid-v7 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
.diff-item { display: flex; gap: 2rem; align-items: center; padding: 0.5rem 0; }
.diff-icon-circle { width: 44px; height: 44px; min-width: 44px; border: 1px solid var(--silver-metallic); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--silver-metallic); font-size: 0.9rem; transition: 0.3s; }
.diff-item:hover .diff-icon-circle { background: var(--silver-gradient); color: #000; border-color: transparent; }
.diff-text { display: flex; flex-direction: column; gap: 4px; }
.diff-text strong { font-size: 1.05rem; color: #000; font-family: var(--font-serif); }
.diff-text span { font-size: 0.85rem; color: #888; line-height: 1.4; }

/* ------------------------------------------- */
/* Section 4: Statistics (#estatisticas - V9)  */
/* ------------------------------------------- */
.section-dark-v9 { background-color: #000; padding: 100px 0; }
.stats-grid-v9 { gap: 2rem; align-items: stretch; }
.stat-column-v9 { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 3rem 2rem;
    color: #FFF;
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.3s ease;
}
.stat-column-v9:hover { transform: translateY(-5px); border-color: rgba(192, 192, 192, 0.5); background: rgba(255, 255, 255, 0.04); }

.icon-silver-v9 { font-size: 2rem; color: var(--silver-metallic); margin-bottom: 1.5rem; opacity: 0.8; }
.stat-number-v9 { font-size: 3.5rem; color: #FFF; margin-bottom: 0.8rem; font-weight: 700; }
.stat-desc-v9 { font-size: 0.75rem; color: var(--silver-metallic); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-family: var(--font-sans); }

/* Update Media Query for V9 Stats */
@media (max-width: 991px) {
    .section-dark-v9 { padding: 70px 0; }
    .stats-grid-v9 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-column-v9 { padding: 2.5rem 1rem; }
    .icon-silver-v9 { margin-bottom: 1rem; font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .section-dark-v9 { padding: 50px 0; }
    .stats-grid-v9 { grid-template-columns: 1fr; gap: 1rem; }
    .stat-column-v9 { padding: 2rem 1.5rem; }
    .stat-number-v9 { font-size: 2.8rem; margin-bottom: 0.5rem; }
    .icon-silver-v9 { margin-bottom: 0.8rem; }
}

/* Standard WhatsApp Floating Button (Iteration 6) */
.whatsapp-float-minimal { 
    position: fixed; 
    bottom: 40px; 
    right: 40px; 
    width: 78px; 
    height: 78px; 
    background: #25D366; 
    border: none; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    font-size: 2.4rem; 
    color: #FFF; 
    text-decoration: none; 
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); 
    z-index: 1000; 
    transition: 0.3s; 
}
.whatsapp-float-minimal:hover { 
    transform: scale(1.1) rotate(5deg); 
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); 
}

@media (max-width: 768px) {
    .whatsapp-float-minimal {
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
        font-size: 1.8rem;
    }
}

/* ------------------------------------------- */
/* Section 5: Practice Areas (#atuacao - V10)  */
/* ------------------------------------------- */
.bg-silver-light { background-color: #F4F4F4; }
.section-header-v10 { margin-bottom: 5rem; text-align: left; }
.section-title-v10 { font-size: 3.2rem; line-height: 1.1; margin-top: 1rem; color: #000; }

.practice-grid-v10 { gap: 2rem; }

.practice-card-v10 { 
    background: linear-gradient(135deg, #FFFFFF 0%, #EAEAEB 100%); 
    padding: 45px 40px; 
    border: 1px solid rgba(192, 192, 192, 0.4); 
    border-radius: 4px; 
    position: relative; 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}

/* 3px Top Metallic Bar */
.card-top-bar { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 3px; 
    background: var(--silver-gradient); 
    opacity: 0.8; 
    transition: 0.3s; 
}

.card-icon-v10 { 
    font-size: 2.2rem; 
    color: #333; 
    margin-bottom: 2rem; 
    filter: drop-shadow(0 0 5px rgba(192,192,192,0.3)); 
    transition: 0.3s; 
}

.practice-card-v10 h3 { 
    font-size: 1.6rem; 
    margin-bottom: 1.2rem; 
    color: #000; 
    font-weight: 600; 
}

.practice-card-v10 p { 
    font-size: 0.95rem; 
    color: #666; 
    line-height: 1.6; 
    font-family: var(--font-sans); 
}

/* Hover Effects */
.practice-card-v10:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    border-color: var(--silver-metallic); 
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E2E3 100%); 
}

.practice-card-v10:hover .card-top-bar { 
    height: 5px; 
    opacity: 1; 
}

.practice-card-v10:hover .card-icon-v10 { 
    color: #000; 
    transform: scale(1.1); 
    filter: drop-shadow(0 0 8px rgba(192,192,192,0.6)); 
}

/* Unified Responsive Rules for V10 */
@media (max-width: 1200px) {
    .section-title-v10 { font-size: 2.8rem; }
    .practice-card-v10 { padding: 35px 30px; }
}

@media (max-width: 991px) {
    .practice-grid-v10 { grid-template-columns: repeat(2, 1fr); }
    .section-header-v10 { text-align: center; }
}

@media (max-width: 768px) {
    .practice-grid-v10 { grid-template-columns: 1fr; }
    .section-title-v10 { font-size: 2.2rem; }
}

/* ------------------------------------------- */
/* Section 7: Testimonials (#depoimentos - V11)*/
/* ------------------------------------------- */
.bg-graphite-noise { 
    background-color: #121212; 
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png"); /* Sutil noise texture */
    padding: 120px 0;
}

.grid-testimonial-v11 {
    grid-template-columns: 2fr 3fr;
    gap: 5rem;
    align-items: center;
}

/* Imagem com Moldura Flutuante */
.testimonial-image-wrapper-v11 { 
    position: relative; 
    padding: 20px; 
}

.floating-frame-v11 { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 90%; 
    height: 90%; 
    border: 1px solid rgba(192, 192, 192, 0.4); 
    z-index: 1; 
    pointer-events: none; 
}

.testimonial-img-v11 {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin-top: 30px;
    margin-left: 30px;
    filter: grayscale(20%);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}

/* Conteúdo Editorial */
.testimonial-content-v11 { 
    position: relative; 
    padding-left: 2rem; 
}

.giant-quote-v11 { 
    position: absolute; 
    top: -60px; 
    left: -20px; 
    font-size: 12rem; 
    color: var(--silver-metallic); 
    opacity: 0.15; 
    font-family: var(--font-serif); 
    line-height: 1; 
    user-select: none; 
}

.testimonial-text-v11 {
    font-size: 1.6rem;
    color: #F8F8F8;
    line-height: 1.6;
    margin-bottom: 3.5rem; 
    font-style: italic; 
    font-weight: 400; 
}

.testimonial-footer-v11 { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
}

.author-name-v11 { 
    display: block; 
    font-size: 1.2rem; 
    font-weight: 700; 
    color: var(--silver-metallic); 
    font-family: var(--font-sans); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 0.5rem; 
}

.author-title-v11 { 
    display: block; 
    font-size: 0.9rem; 
    color: #888; 
    font-family: var(--font-sans); 
}

/* Navegação Minimalista */
.testimonial-nav-v11 { 
    display: flex; 
    gap: 1rem; 
}

.nav-btn-v11 { 
    width: 50px; 
    height: 50px; 
    border: 1px solid rgba(192, 192, 192, 0.5); 
    background: rgba(255, 255, 255, 0.05); 
    color: var(--silver-metallic); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: 0.3s; 
    border-radius: 50%; 
    font-size: 1.2rem;
}

.nav-btn-v11:hover { 
    background: var(--silver-gradient); 
    color: #000; 
    border-color: transparent; 
    transform: scale(1.1);
}

/* Responsive V11 */
@media (max-width: 991px) {
    .grid-testimonial-v11 { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .testimonial-image-wrapper-v11 { max-width: 500px; margin: 0 auto; }
    .testimonial-content-v11 { padding-left: 0; }
    .giant-quote-v11 { left: 50%; transform: translateX(-50%); top: -80px; }
    .testimonial-text-v11 { font-size: 1.8rem; }
    .testimonial-footer-v11 { flex-direction: column; align-items: center; gap: 2rem; }
}

@media (max-width: 768px) {
    .testimonial-text-v11 { font-size: 1.5rem; }
    .bg-graphite-noise { padding: 80px 0; }
}

/* --- Responsive Adjustments (Unified) --- */
@media (max-width: 1440px) {
    .hero-floating-cards-left { left: -20px; }
}

@media (max-width: 1200px) {
    .header-left-group .contact-block-left { display: none; }
    .hero-headline-v5 { font-size: 3.5rem; }
    .hero-container-symmetric { gap: 3rem; }
    .section-title-v7 { font-size: 2.8rem; }
    .about-floating-card-left { padding: 1.5rem; max-width: 260px; }
}

@media (max-width: 991px) {
    .hero-v5 { padding-bottom: 120px; }
    .hero-container-symmetric { grid-template-columns: 1fr; text-align: center; }
    .hero-headline-v5 { font-size: 3.2rem; }
    .hero-description-v4 { margin: 0 auto 3rem; }
    .hero-actions-v4 { justify-content: center; }
    .hero-image-column-right { justify-content: center; margin-top: 2.5rem; }
    /* Generous margins for the highlighted image */
    .hero-image-framed-v5 { max-width: 500px; margin: 0 1.5rem; width: calc(100% - 3rem); }
    /* Unbind the cards wrapper to allow independent positioning */
    .hero-floating-cards-left { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; margin: 0; z-index: 10; pointer-events: none; transform: none; }
    .hero-floating-cards-left .floating-card-v4 { position: absolute; transform: scale(0.85); pointer-events: auto; width: max-content; }
    /* Diagonal Positioning */
    .hero-floating-cards-left .card-contratos { top: -20px; left: -15px; transform-origin: top left; }
    .hero-floating-cards-left .card-seguranca { bottom: -20px; right: 0; transform-origin: bottom right; }
    .nav-links-compact { 
        display: flex; 
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -80vw; /* Hidden by default */
        width: 80vw;
        height: 100vh;
        background: #F8F8F8; /* Sólido Off-white para total nitidez */
        z-index: 10000;
        padding: 100px 40px 40px; /* Space for the 'X' and logo at top */
        transition: right 400ms cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(192, 192, 192, 0.5); /* Borda prateada fina */
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-links-compact.active {
        right: 0;
    }

    .drawer-logo-wrapper { display: block; width: 100%; }

    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease;
        backdrop-filter: blur(8px); /* Blur realocado para o fundo do site */
        -webkit-backdrop-filter: blur(8px);
    }

    .menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links-compact li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(192, 192, 192, 0.1); 
    }

    .nav-links-compact li:last-child {
        border-bottom: none;
    }

    .nav-links-compact a {
        display: block;
        padding: 1.5rem 0;
        font-family: var(--font-sans); /* Alterado para Sans-serif */
        font-size: 1.25rem; /* ~20px-24px */
        color: var(--silver-metallic-dark) !important; /* Grafite Escuro */
        letter-spacing: 0.5px;
        font-weight: 400; /* Regular weight */
        text-decoration: none;
        transition: 0.3s ease;
    }

    .nav-links-compact a:hover {
        color: #000 !important;
        padding-left: 10px;
    }

    .menu-toggle-v4 { 
        display: block; 
        position: relative;
        z-index: 10001; /* Above drawer */
        transition: 0.3s ease;
        padding: 10px;
    }

    .menu-toggle-v4.active {
        position: fixed;
        top: 25px;
        right: 30px;
        color: #000 !important; /* Preto Sólido e Nítido */
        text-shadow: none;
    }

    .about .grid-2 { grid-template-columns: 1fr; display: flex; flex-direction: column; }
    .about-content-v7 { order: 1; padding: 0 1.5rem; margin-top: 0; text-align: center; }
    
    /* Strict Spacing Reductions */
    .about-content-v7 .label-silver { margin-bottom: 0.2rem; }
    .section-title-v7 { font-size: 2.5rem; margin-top: 0.5rem; margin-bottom: 1rem; }
    .section-description-v7 { margin: 0 auto 1.5rem; }
    
    /* Bullets: Left Aligned Content, Centered Grid Block */
    .differentiators-grid-v7 { display: flex; flex-direction: column; align-items: flex-start; width: 100%; max-width: 100%; margin: 0 auto; gap: 0.5rem; padding: 0; order: 2; }
    .differentiators-grid-v7 .diff-item { padding: 1.5rem 2rem 1rem 1.5rem; text-align: left; }
    
    /* Image: 75% width centered, Floating Card overlap */
    .about-image-wrapper { order: 3; display: flex; justify-content: center; margin-top: 3rem; width: 100%; position: relative; }
    .about-image-framed-v7 { width: 75vw; height: auto; max-width: none; position: relative; }
    .img-about-vertical { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
    
    .about-floating-card-left {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) translateY(50%);
        width: 90%;
        max-width: 340px;
        padding: 1.8rem;
        border: 1px solid rgba(192, 192, 192, 0.4);
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        text-align: center;
        background: #FFF;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .hero-headline-v5 { font-size: 2.5rem; }
    .main-header { padding: 1rem 0; }
    .vertical-separator { margin: 0 1rem; }
    .serif-logo { font-size: 1.5rem; }
    .main-header-logo { height: 32px; }
    .hero-actions-v4 { flex-direction: column; align-items: center; }
    .section-title-v7 { font-size: 2.2rem; }
    .differentiators-grid-v7 { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; gap: 3rem; }
    .highlight-border { border-left: none; border-right: none; border-top: 1px solid rgba(192, 192, 192, 0.2); border-bottom: 1px solid rgba(192, 192, 192, 0.2); padding: 2rem 0; }
    .hero-v5 { overflow-x: hidden; }
    .hero-floating-cards-left .floating-card-v4 { padding: 0.65rem 0.9rem; gap: 0.6rem; }
    .hero-floating-cards-left .card-text-v4 strong { font-size: 0.78rem; white-space: nowrap; }
    .card-icon-v4 { width: 30px; height: 30px; font-size: 0.8rem; flex-shrink: 0; }
}

/* Estilo do Slider V12 */
.testimonial-slider-v12 {
    position: relative;
    overflow: hidden;
    min-height: 500px; /* Evita pulos de layout */
}

.testimonial-slide-v12 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0s linear 0.8s;
    transform: translateX(20px);
    z-index: 1;
}

.testimonial-slide-v12.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0s linear 0s;
    transform: translateX(0);
    z-index: 2;
}

.testimonial-controls-v12 {
    margin-top: -60px; /* Alinha com o rodapé do texto editorial */
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    padding-right: 5%;
}

/* Ajustes Responsivos Slider */
@media (max-width: 991px) {
    .testimonial-controls-v12 {
        margin-top: 2rem;
        justify-content: center;
        padding-right: 0;
    }
    .testimonial-slider-v12 { min-height: auto; }
}

/* --- Banner CTA V14 (Full-Width Impact) --- */
.banner-cta-v14 {
    position: relative;
    padding: 120px 0;
    background-image: url('assets/justice_bg2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax opcional para mais profundidade */
    text-align: center;
}

.banner-cta-v14::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.88); /* Overlay Grafite/Preto 88% */
    z-index: 1;
}

.cta-content-v14 {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title-v14 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-subtitle-v14 {
    font-size: 1.25rem;
    font-weight: 300;
    color: #b0b0b0; /* Cinza Médio */
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.btn-noir-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f0f0f0 0%, #a8a8a8 100%); /* Gradiente prateado linear suave */
    color: #121212; /* Texto Escuro/Grafite */
    border: 1px solid #d0d0d0;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.btn-noir-primary i {
    color: #121212;
    transition: transform 0.3s ease;
}

.btn-noir-primary:hover {
    box-shadow: 0 0 25px rgba(220, 220, 220, 0.4); /* Glow radiante prateado */
    background: linear-gradient(135deg, #ffffff 0%, #c4c4c4 100%);
    border-color: #ffffff;
    color: #000000;
}

.btn-noir-primary:hover i {
    color: #000000;
    transform: translateX(6px); /* Efeito suave na seta */
}

@media (max-width: 768px) {
    .cta-title-v14 { font-size: 2.5rem; }
    .banner-cta-v14 { padding: 80px 0; background-attachment: scroll; } /* Parallax desativado no mobile para performance */
}

/* --- Metodologia V15 (Editorial Noir) --- */
.methodology-v15 {
    background: #ffffff;
    padding: 120px 0;
}

.grid-v15 {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 80px;
    align-items: start;
}

.methodology-left-v15 {
    position: sticky;
    top: 150px;
}

.section-tag-v15 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 1.5rem;
}

.title-v15 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.desc-v15 {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

/* Coluna Direita - Passos */
.methodology-right-v15 {
    display: flex;
    flex-direction: column;
}

.step-v15 {
    position: relative;
    padding: 60px 0;
    border-top: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.step-v15:first-child {
    border-top: none;
    padding-top: 0;
}

.step-num-v15 {
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, #f0f0f0 0%, #dcdcdc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.35;
    position: absolute;
    left: -20px;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
}

.step-content-v15 {
    position: relative;
    z-index: 2;
    padding-left: 80px;
}

.step-title-v15 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-text-v15 {
    font-size: 1rem;
    color: #444444;
    line-height: 1.7;
    max-width: 500px;
    font-weight: 300;
}

/* Hover Interativo */
.step-v15:hover .step-num-v15 {
    opacity: 0.6;
    transform: translateX(15px);
    background: linear-gradient(180deg, #dcdcdc 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

@media (max-width: 991px) {
    .grid-v15 { grid-template-columns: 1fr; gap: 60px; }
    .methodology-left-v15 { position: static; }
    .step-num-v15 { font-size: 8rem; }
    .step-content-v15 { padding-left: 60px; }
    .methodology-v15 { overflow-x: hidden; }
}

/* --- FAQ V16 (Luxury Accordion) --- */
.faq-v16 {
    background: #000000;
    padding: 120px 0;
}

.grid-v16 {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 80px;
}

.title-v16 {
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.desc-v16 {
    color: #888888;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Accordion */
.faq-accordion-v16 {
    display: flex;
    flex-direction: column;
}

.faq-item-v16 {
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

.faq-question-v16 {
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e0e0e0; /* Prateado Metálico */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.faq-question-v16:hover {
    color: #ffffff;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.icon-v16 {
    color: #888888;
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-v16 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.answer-inner-v16 {
    padding: 0 0 30px 0;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Estado Ativo */
.faq-item-v16.faq-open .faq-answer-v16 {
    max-height: 500px; /* Suficiente para o conteúdo */
    opacity: 1;
}

.faq-item-v16.faq-open .icon-v16 {
    transform: rotate(45deg); /* Transforma + em x */
    color: #ffffff;
}

.faq-item-v16.faq-open .faq-question-v16 {
    color: #ffffff;
}

@media (max-width: 991px) {
    .grid-v16 { grid-template-columns: 1fr; gap: 40px; }
    .title-v16 { font-size: 2.5rem; }
}

/* --- Equipe V18 (Light & Sophisticated) --- */
.team-v18 {
    background: #ffffff; /* Branco Puro */
    padding: 140px 0;
}

.team-intro-v18 {
    text-align: center;
    margin-bottom: 80px;
}

.team-intro-v18 .section-tag {
    color: #888888;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.team-intro-v18 .title-v18 {
    font-size: 3.5rem;
    color: #000000; /* Preto Sólido */
}

.grid-v18 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card-v18 {
    background: linear-gradient(135deg, #ffffff 0%, #eaeaea 100%); /* Branco para Cinza Metálico */
    border: 1px solid rgba(192, 192, 192, 0.4); /* Prateado Metálico Clarinho */
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Sombra suave */
}

.founder-img-container-v18 {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.founder-img-v18 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.founder-info-v18 {
    position: relative;
    z-index: 2;
}

.founder-name-v18 {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.founder-role-v18 {
    font-size: 0.85rem;
    color: #4a4a4a; /* Prata Escuro / Cinza Chumbo */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.founder-divider-v18 {
    width: 50px;
    height: 1px;
    background: #c0c0c0;
    margin: 20px auto;
}

.founder-bio-v18 {
    color: #333333; /* Cinza Chumbo */
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
    font-weight: 400;
}

/* Hover Interativo */
.founder-card-v18:hover {
    border-color: rgba(192, 192, 192, 0.8);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .grid-v18 { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
    .title-v18 { font-size: 2.5rem; }
    .founder-card-v18 { padding: 40px 20px; }
}

/* --- Carousel de Depoimentos V18 --- */
.testimonials-carousel-wrapper { overflow: hidden; }

.testimonials-carousel-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-carousel-track .founder-card-v18 {
    flex: 0 0 calc(50% - 20px);
    min-width: 0;
}

.testimonial-card-v18 { text-align: center; }

.testimonial-quote-v18 {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.carousel-controls-v18 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-btn-v18 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(192, 192, 192, 0.5);
    background: transparent;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn-v18:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 991px) {
    .testimonials-carousel-track .founder-card-v18 { flex: 0 0 calc(50% - 20px); }
}

@media (max-width: 600px) {
    .testimonials-carousel-track { gap: 16px; }
    .testimonials-carousel-track .founder-card-v18 { flex: 0 0 calc(100vw - 4rem); }
}

/* --- Footer V19 (Premium Minimalist) --- */
.footer-v19 {
    background: #000000;
    padding: 100px 0 60px;
    color: #ffffff;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.footer-container-v19 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid-v19 {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; /* 3 colunas assimétricas */
    gap: 100px;
    align-items: start;
}

/* Coluna 1: Identidade */
.footer-col-v19:first-child {
    text-align: center;
}

.logo-footer-v19 {
    max-height: 70px;
    margin: 0 auto 40px;
    display: block;
}

.socials-v19 {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.socials-v19 a {
    color: #c0c0c0; /* Silver */
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.socials-v19 a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.5));
}

/* Títulos das Colunas */
.footer-title-v19 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #c0c0c0;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Coluna 2: Contato */
.contact-list-v19 p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: #d1d1d1;
    font-family: var(--font-sans);
}

.contact-list-v19 i {
    color: #c0c0c0;
    font-size: 1rem;
    width: 20px;
}

/* Coluna 3: Navegação */
.nav-links-v19 {
    list-style: none;
    padding: 0;
}

.nav-links-v19 li {
    margin-bottom: 18px;
}

.nav-links-v19 a {
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links-v19 a:hover {
    color: #c0c0c0;
    transform: translateX(8px);
}

/* Bottom Footer */
.footer-divider-v19 {
    width: 100%;
    height: 1px;
    background: rgba(192, 192, 192, 0.15);
    margin: 80px 0 40px;
}

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

.footer-bottom-v19 p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: #888888;
    letter-spacing: 1px;
}

/* ------------------------------------------- */
/* Scroll Reveal Animations (Premium)          */
/* ------------------------------------------- */
html.js-reveal .reveal { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1); 
    will-change: opacity, transform;
}
html.js-reveal .reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Fix for horizontally centered elements losing transform on reveal — desktop */
html.js-reveal .about-floating-card-left.reveal {
    transform: translate(-50%, 20px);
}
html.js-reveal .about-floating-card-left.reveal.active {
    transform: translate(-50%, 0);
}

/* Reveal override for mobile where card uses translateY(50%) to straddle image bottom */
@media (max-width: 991px) {
    html.js-reveal .about-floating-card-left.reveal {
        transform: translateX(-50%) translateY(calc(50% + 20px));
    }
    html.js-reveal .about-floating-card-left.reveal.active {
        transform: translateX(-50%) translateY(50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    html.js-reveal .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Responsividade Footer */
@media (max-width: 991px) {
    .footer-container-v19 { padding: 0 1.5rem; }
    .footer-grid-v19 {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .logo-footer-v19 {
        margin: 0 auto 30px;
    }
    
    .socials-v19 {
        justify-content: center;
    }
    
    .contact-list-v19 p {
        justify-content: center;
    }
    
    .nav-links-v19 a:hover {
        transform: translateY(-3px);
    }
}
