/* ==========================================================================
   FONSECA & CAVALCANTI ADVOCACIA - LANDING PAGE STYLESHEET
   Theme: Sleek Dark / Premium Gold & Teal Acentuation
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & SYSTEM DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette (HSL Tailored) */
    --color-bg-base: hsl(222, 47%, 6%);
    --color-bg-surface: hsl(222, 40%, 11%);
    --color-bg-surface-elevated: hsl(222, 35%, 15%);
    --color-bg-glass: rgba(15, 23, 42, 0.45);
    
    --color-text-primary: hsl(210, 40%, 96%);
    --color-text-secondary: hsl(215, 25%, 72%);
    --color-text-muted: hsl(215, 16%, 50%);
    
    --color-accent-gold: hsl(38, 85%, 52%);
    --color-accent-gold-hover: hsl(38, 85%, 45%);
    --color-accent-gold-muted: rgba(212, 175, 55, 0.15);
    
    --color-accent-teal: hsl(162, 84%, 40%);
    --color-accent-teal-glow: rgba(16, 185, 129, 0.3);
    
    --color-danger: hsl(350, 85%, 50%);
    --color-danger-bg: rgba(239, 68, 68, 0.12);
    
    /* Fonts */
    --font-heading: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Layout Sizes */
    --container-max-width: 1200px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glassmorphism Border */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass-gold: 1px solid rgba(212, 175, 55, 0.2);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* Helper Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 64px; }
.highlight-text {
    color: var(--color-accent-gold);
    background: linear-gradient(135deg, var(--color-accent-gold) 30%, hsl(45, 90%, 65%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   3. COMPONENTS & BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, hsl(38, 90%, 40%) 100%);
    color: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, hsl(38, 85%, 60%) 0%, var(--color-accent-gold) 100%);
}

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

.btn-nav {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: var(--border-glass);
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-nav:hover {
    background: var(--color-accent-gold);
    color: #0b0f19;
    border-color: var(--color-accent-gold);
    box-shadow: 0 8px 16px -4px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-pulse {
    animation: pulse 2.5s infinite;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Section Common Headers */
.section-header {
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--color-accent-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   4. NAVBAR / HEADER
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-glass);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

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

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: var(--color-text-primary);
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

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

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 96px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(8, 12, 21, 0.95) 0%, rgba(8, 12, 21, 0.85) 100%),
                url('assets/law_office_bg.jpg') no-repeat center center;
    background-size: cover;
}

.hero-bg-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, rgba(13,148,136,0.03) 50%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--color-text-secondary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px var(--color-accent-teal);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    line-height: 1.5;
}

.hero-actions {
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

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

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* Hero Warning Card */
.hero-card-area {
    display: flex;
    justify-content: center;
}

.hero-info-card {
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 20px 40px -15px rgba(239, 68, 68, 0.1);
    max-width: 380px;
}

.hero-info-card:hover {
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.15);
    transform: translateY(-4px);
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.warning-tag {
    background-color: var(--color-danger-bg);
    color: var(--color-danger);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    letter-spacing: 1px;
}

.hero-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-bar-fill {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, var(--color-danger) 0%, var(--color-accent-gold) 100%);
    border-radius: 10px;
    animation: shrinkWidth 15s ease-in-out infinite alternate;
}

@keyframes shrinkWidth {
    0% { width: 100%; }
    100% { width: 25%; }
}

.card-link {
    color: var(--color-accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.card-link:hover {
    color: hsl(38, 90%, 65%);
}

/* --------------------------------------------------------------------------
   5.5. TRUST / STATS BAR
   -------------------------------------------------------------------------- */
.trust-bar {
    background: rgba(255, 255, 255, 0.01);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

.trust-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.trust-icon {
    font-size: 1.8rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: var(--border-glass);
    color: var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.trust-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .trust-bar-container {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .trust-divider {
        display: none;
    }
    
    .trust-item {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   6. SPECIALTIES
   -------------------------------------------------------------------------- */
.specialties {
    padding: 96px 0;
    background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-surface) 100%);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.specialty-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.specialty-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-gold-hover);
    box-shadow: 0 16px 32px -10px rgba(212, 175, 55, 0.15);
}

.specialty-icon {
    font-size: 2.2rem;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: var(--border-glass);
}

.specialty-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.specialty-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. HOW IT WORKS
   -------------------------------------------------------------------------- */
.how-it-works {
    padding: 96px 0;
    background-color: var(--color-bg-surface);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 48px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent-gold) 0%, rgba(255,255,255,0.05) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, hsl(38, 90%, 40%) 100%);
    border: 4px solid var(--color-bg-surface);
    color: #0b0f19;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    max-width: 650px;
}

/* --------------------------------------------------------------------------
   7.5. OUR LAWYERS / SOCIOS
   -------------------------------------------------------------------------- */
.lawyers {
    padding: 96px 0;
    background-color: var(--color-bg-base);
}

.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.lawyer-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.3);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.lawyer-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-gold-hover);
    box-shadow: 0 20px 40px -10px rgba(212,175,55,0.15);
}

.lawyer-img-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: var(--color-bg-surface-elevated);
}

.lawyer-img-wrapper img {
    width: 100%;
    height: 100%;
    object-position: top center;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.lawyer-card:hover .lawyer-img-wrapper img {
    transform: scale(1.04);
}

.lawyer-info {
    padding: 32px;
    text-align: left;
}

.lawyer-info h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.lawyer-role {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: inline-block;
}

.lawyer-bio {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.lawyer-oab {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
}

/* --------------------------------------------------------------------------
   8. WHY US / DIFFERENTIALS
   -------------------------------------------------------------------------- */
.why-us {
    padding: 96px 0;
    background: linear-gradient(180deg, var(--color-bg-surface) 0%, var(--color-bg-base) 100%);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 36px;
}

.why-us-item {
    display: flex;
    gap: 16px;
}

.why-us-item-icon {
    font-size: 1.25rem;
    color: var(--color-accent-teal);
    background: rgba(16, 185, 129, 0.08);
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.why-us-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-us-item p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Maps Display Card */
.why-us-visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.map-card {
    width: 100%;
    max-width: 100%;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.map-card:hover {
    border-color: var(--color-accent-gold-hover);
    box-shadow: 0 20px 40px -15px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.map-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
    text-align: left;
}

.map-icon {
    font-size: 1.8rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: var(--border-glass);
    color: var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-header-text {
    display: flex;
    flex-direction: column;
}

.map-header-text h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--color-text-primary);
}

.map-address-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.map-iframe-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
    border: var(--border-glass);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.map-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* --------------------------------------------------------------------------
   9. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq {
    padding: 96px 0;
    background-color: var(--color-bg-base);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    gap: 16px;
}

.faq-arrow {
    font-size: 0.75rem;
    color: var(--color-accent-gold);
    transition: transform var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}

.faq-answer p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    padding-bottom: 24px;
    line-height: 1.6;
}

/* Active FAQ Item state */
.faq-item.active {
    border-color: var(--color-accent-gold-hover);
    background: rgba(212, 175, 55, 0.02);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 1s cubic-bezier(1, 0, 1, 0);
}

/* --------------------------------------------------------------------------
   10. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(222, 47%, 4%) 0%, hsl(222, 40%, 10%) 100%);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner p {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: hsl(222, 50%, 4%);
    padding: 80px 0 24px 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.footer-brand p {
    line-height: 1.5;
}

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

.footer-links h4, .footer-info h4 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--color-accent-gold);
    transform: translateX(4px);
}

.footer-info p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.oab-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    border-left: 2px solid var(--color-accent-gold-hover);
    padding-left: 12px;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-accent-gold);
}

/* Google Maps helper variables */

/* --------------------------------------------------------------------------
   12. RESPONSIVENESS (MEDIA QUERIES)
   -------------------------------------------------------------------------- */

/* Lawyers Carousel Helper Rules (applies to desktop as hidden, visible in mobile) */
.lawyers-slider-container {
    position: relative;
    width: 100%;
}

.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dots .dot.active {
    width: 24px;
    border-radius: 100px;
    background-color: var(--color-accent-gold-hover);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .logo-brand-sub {
        font-size: 0.6rem;
    }

    /* Header CTA WhatsApp Button Mobile Fix */
    .btn-nav {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .btn-nav span {
        display: none;
    }
    
    .btn-nav::after {
        content: '💬 Contato';
        font-weight: 700;
    }
    
    /* Section Compactness */
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .section-desc {
        font-size: 0.95rem;
    }

    /* Hero Section Compactness */
    .hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 48px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        margin-bottom: 32px;
        width: 100%;
    }

    .hero-features {
        gap: 16px;
        justify-content: flex-start;
    }

    /* Compact Trust Bar */
    .trust-bar {
        padding: 14px 0;
    }
    
    .trust-bar-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 12px 6px;
    }
    
    .trust-item {
        flex: 0 1 auto;
        gap: 8px;
    }
    
    .trust-icon {
        font-size: 1.1rem;
        padding: 6px;
        border-radius: 8px;
    }
    
    .trust-text h4 {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .trust-text p {
        display: none; /* Hide descriptions on mobile to save vertical space */
    }
    
    .trust-divider {
        display: none;
    }

    /* Specialties Area */
    .specialties {
        padding: 48px 0;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .specialty-card {
        padding: 20px;
    }

    .specialty-card h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .specialty-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .specialty-icon {
        font-size: 1.8rem;
        margin-bottom: 16px;
        padding: 8px;
    }

    /* How It Works (Timeline) */
    .how-it-works {
        padding: 48px 0;
    }

    .timeline {
        margin: 24px auto;
    }
    
    .timeline::before {
        left: 17px;
    }
    
    .timeline-item {
        padding-left: 48px;
        margin-bottom: 24px;
    }
    
    .timeline-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-width: 3px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Lawyers Slider/Carrossel Mobile */
    .lawyers {
        padding: 48px 0;
    }

    .lawyers-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        margin-top: 24px;
        padding: 4px 4px 16px 4px;
        scrollbar-width: none;
    }

    .lawyers-grid::-webkit-scrollbar {
        display: none;
    }

    .lawyer-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-bottom: 0;
    }

    .lawyer-img-wrapper {
        height: 260px;
    }

    .lawyer-info {
        padding: 20px;
    }

    .lawyer-info h3 {
        font-size: 1.3rem;
    }

    .lawyer-role {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .lawyer-bio {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .slider-dots {
        display: flex;
    }

    /* Why Us / Differentials */
    .why-us {
        padding: 48px 0;
    }

    .why-us-list {
        gap: 16px;
        margin-top: 24px;
    }

    .why-us-item-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 1rem;
    }

    .why-us-item h4 {
        font-size: 1rem;
    }

    .why-us-item p {
        font-size: 0.85rem;
    }

    .map-card {
        padding: 20px;
    }

    .map-header {
        margin-bottom: 16px;
    }

    .map-header-text h4 {
        font-size: 1.1rem;
    }

    .map-address-text {
        font-size: 0.8rem;
    }

    .map-iframe-container {
        height: 180px;
    }

    /* FAQ */
    .faq {
        padding: 48px 0;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        font-size: 0.85rem;
        padding-bottom: 16px;
    }

    /* CTA */
    .cta-banner {
        padding: 48px 0;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 24px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .btn-nav {
        width: auto;
    }
}

/* --------------------------------------------------------------------------
   ESTILOS DE SVGs & BENTO GRID (ESTADO DA ARTE 2026 - ZERO AI SLOP)
   -------------------------------------------------------------------------- */
.svg-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    stroke: currentColor;
    color: var(--color-accent-gold);
}

.logo-svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent-gold);
}

.btn-svg {
    width: 20px;
    height: 20px;
    color: currentColor;
}

.feature-svg, .trust-svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent-gold);
}

.specialty-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.specialty-svg {
    width: 26px;
    height: 26px;
    color: var(--color-accent-gold);
}

.warning-svg {
    width: 16px;
    height: 16px;
    color: var(--color-danger);
}

.check-svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-teal);
}

.map-pin-svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-gold);
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 36px 0 rgba(212, 175, 55, 0.12);
}

.bento-hero-card {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: var(--border-glass-gold);
}

.bento-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bento-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-gold);
    background: rgba(212, 175, 55, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-hero-card {
        grid-column: span 1;
    }
}

/* Reveal Elements Animation via CSS puro */
.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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


