/* ==========================================================================
   DRA. KAREN FAVARETTO - DESIGN SYSTEM & STYLESHEET
   Concierge Sports Cardiology & Performance Medicine Aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & COLOR PALETTE
   -------------------------------------------------------------------------- */
:root {
    /* Color Tokens */
    --bg-primary: #F9F9FB;          /* Off-White Dominant */
    --bg-secondary: #F2F2F5;        /* Ultra-soft Grey */
    --bg-card: #FFFFFF;             /* Pure White for Cards */
    --bg-dark: #111111;             /* Carbon Graphite Dark */
    --bg-dark-secondary: #1A1A1E;   /* Secondary Dark Slate */
    
    --text-primary: #111111;        /* Primary Carbon Text */
    --text-muted: #55555C;          /* Muted Secondary Text */
    --text-light: #F9F9FB;          /* Light Text on Dark Bgs */
    
    --champagne: #C5A880;           /* Matte Champagne Accent */
    --champagne-dark: #B39265;      /* Aged Matte Gold */
    --champagne-light: #F4EFEA;     /* Soft Champagne Tint */
    --champagne-border: rgba(197, 168, 128, 0.3);

    --whatsapp: #25D366;            /* WhatsApp Green for CTAs */
    --whatsapp-hover: #20BA5A;      /* Darker WhatsApp Green */
    --whatsapp-glow: rgba(37, 211, 102, 0.25);

    --burgundy: #8B0000;            /* Old Blood / Crimson Accent */
    --burgundy-soft: rgba(139, 0, 0, 0.08);
    --burgundy-text: #6B0000;

    /* Typography Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadow & Transition Tokens */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-champagne: 0 10px 30px rgba(197, 168, 128, 0.15);
    --shadow-whatsapp: 0 8px 25px rgba(37, 211, 102, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

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

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

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 860px;
}

.section {
    padding: 6rem 0;
}

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

.text-center { text-align: center; }
.text-champagne { color: var(--champagne-dark); }
.mb-4 { margin-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   3. BUTTONS & BADGES
   -------------------------------------------------------------------------- */
/* WhatsApp Primary CTA */
.btn-whatsapp-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--whatsapp);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-whatsapp);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    text-transform: none;
}

.btn-whatsapp-lg:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--whatsapp);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: var(--transition-fast);
}

.btn-whatsapp-sm:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-1px);
}

.btn-whatsapp-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background-color: var(--whatsapp);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-whatsapp);
    transition: var(--transition-normal);
}

.btn-whatsapp-full:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--champagne);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.05rem 1.8rem;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.btn-secondary-outline:hover {
    background-color: var(--champagne-light);
    color: var(--text-primary);
    border-color: var(--champagne-dark);
}

/* Tags & Badges */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--champagne-light);
    color: var(--champagne-dark);
    border: 1px solid var(--champagne-border);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.pill-secondary {
    background-color: #F0F2F5;
    color: var(--text-muted);
    border-color: rgba(0,0,0,0.08);
}

.pill-gold {
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--champagne-dark);
    border-color: var(--champagne);
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champagne-dark);
    margin-bottom: 0.75rem;
}

.section-tag-burgundy {
    color: var(--burgundy-text);
}

.section-tag-light {
    color: var(--champagne);
}

/* --------------------------------------------------------------------------
   4. TOP BAR & NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.badge-accent {
    color: var(--champagne);
    font-weight: 600;
}

.top-bar-link {
    color: var(--champagne);
    font-weight: 600;
}

.top-bar-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Main Navbar */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(249, 249, 251, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--champagne-dark);
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--champagne);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. SEÇÃO 1: HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 4rem 0 6rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--champagne-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-cta-block {
    margin-bottom: 2.5rem;
}

.micro-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-flex-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* Stats Footer Grid in Hero */
.hero-stats-grid {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Hero Media & Floating Badges */
.hero-media {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: visible;
    box-shadow: none;
    background: transparent;
}

.doctor-portrait {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    border: none;
    box-shadow: none;
    background: transparent;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--champagne-border);
    padding: 0.85rem 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 10;
    max-width: 260px;
}

.badge-top-right {
    top: 5%;
    right: -5%;
}

.badge-bottom-left {
    bottom: 5%;
    left: -5%;
}

.badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: var(--champagne-light);
    color: var(--champagne-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.badge-icon-red {
    background-color: var(--burgundy-soft);
    color: var(--burgundy);
}

.badge-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. SEÇÃO 2: MANIFESTO DE POSICIONAMENTO ("O Anti-Julgamento")
   -------------------------------------------------------------------------- */
.manifesto-section {
    background-color: var(--bg-primary);
}

.manifesto-headline {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.divider-line {
    width: 60px;
    height: 3px;
    background-color: var(--champagne);
    margin: 1rem auto 2.5rem auto;
    border-radius: 2px;
}

.glass-panel {
    background: #FFFFFF;
    border: 1px solid var(--champagne-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.manifesto-quote-icon {
    font-size: 3rem;
    color: var(--champagne);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1rem;
}

.manifesto-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.manifesto-author {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.manifesto-author strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.manifesto-author span {
    font-size: 0.88rem;
    color: var(--champagne-dark);
}

.manifesto-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-item {
    text-align: left;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--champagne-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pillar-item h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.pillar-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. SEÇÃO 3: IDENTIFICAÇÃO DE RISCO SILENCIOSO (Sintomas & Dores)
   -------------------------------------------------------------------------- */
.risk-section {
    background-color: var(--bg-secondary);
    position: relative;
}

.risk-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.risk-helper-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(139, 0, 0, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.15);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    color: var(--burgundy-text);
}

.risk-helper-box i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.risk-checker-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.checker-header {
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.checker-header h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checker-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checklist-group {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background-color: var(--bg-primary);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.check-item:hover {
    background-color: var(--champagne-light);
    border-color: var(--champagne-border);
}

.risk-checkbox {
    display: none;
}

.custom-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #D0D0D5;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-fast);
}

.custom-check::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: #FFFFFF;
    display: none;
}

.risk-checkbox:checked + .custom-check {
    background-color: var(--champagne-dark);
    border-color: var(--champagne-dark);
}

.risk-checkbox:checked + .custom-check::after {
    display: block;
}

.risk-checkbox:checked ~ .check-text {
    color: var(--text-primary);
    font-weight: 600;
}

.check-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.checker-result-box {
    background-color: var(--bg-primary);
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px dashed var(--champagne);
    text-align: center;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--champagne-light);
    color: var(--champagne-dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.result-message {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO 4: DIFERENCIAIS CLÍNICOS & ABORDAGEM
   -------------------------------------------------------------------------- */
.differentials-section {
    background-color: var(--bg-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 3rem auto;
}

.grid-differentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.diff-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 2.2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-normal);
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--champagne-border);
}

.diff-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.25);
    line-height: 1;
}

.diff-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--champagne-light);
    color: var(--champagne-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.diff-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.diff-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.diff-highlight-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    color: var(--text-light);
    grid-column: span 1;
}

.diff-highlight-card h3 {
    color: #FFFFFF;
}

.diff-highlight-card p {
    color: rgba(255, 255, 255, 0.75);
}

.highlight-big-icon {
    font-size: 2rem;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.link-champagne {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--champagne);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.link-champagne:hover {
    color: #FFFFFF;
    gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   9. SEÇÃO 5: EDITORIAL QUOTES CAROUSEL
   -------------------------------------------------------------------------- */
.quotes-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 7rem 0;
    position: relative;
}

.quotes-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quotes-main-title {
    font-size: 2.8rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.quote-carousel {
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.quote-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.quote-symbol {
    font-size: 2.5rem;
    color: var(--champagne);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.quote-content {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--champagne-light);
    font-style: italic;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background-color: var(--champagne);
    color: var(--bg-dark);
    border-color: var(--champagne);
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 28px;
    border-radius: 10px;
    background-color: var(--champagne);
}

/* --------------------------------------------------------------------------
   10. SEÇÃO FAQ (DÚVIDAS FREQUENTES)
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--bg-secondary);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 1.8rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--champagne-dark);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.8rem 1.5rem 1.8rem;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. SEÇÃO 6: RODAPÉ & FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta-section {
    background-color: var(--bg-primary);
    padding: 6rem 0;
}

.final-cta-card {
    background-color: #FFFFFF;
    border: 1px solid var(--champagne-border);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.final-cta-micro {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.legal-info {
    font-size: 0.78rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links h4, .footer-contact h4 {
    color: var(--champagne);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-bottom {
    background-color: #0A0A0C;
    padding: 1.25rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sticky Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--bg-dark);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
}

.floating-whatsapp:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   11.5. CONTACT & LOCATION SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--champagne-border);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--champagne-light);
    color: var(--champagne-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-detail-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-link {
    color: var(--champagne-dark);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--burgundy-accent);
    text-decoration: underline;
}

.btn-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--champagne-dark);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    background-color: var(--champagne-light);
    border: 1px solid var(--champagne-border);
    transition: var(--transition-fast);
}

.btn-maps-link:hover {
    background-color: var(--champagne-dark);
    color: #FFFFFF;
}

.contact-cta-wrapper {
    margin-top: auto;
    padding-top: 1rem;
}

.contact-map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 420px;
    height: 100%;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.map-action-btn {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background-color: var(--bg-dark);
    color: var(--champagne);
    border: 1px solid var(--champagne);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    transition: var(--transition-fast);
}

.map-action-btn:hover {
    background-color: var(--champagne-dark);
    color: #FFFFFF;
    border-color: var(--champagne-dark);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE BREAKPOINTS (Mobile-First Priorities)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-media {
        max-width: 500px;
        margin: 0 auto;
    }

    .manifesto-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .risk-grid {
        grid-template-columns: 1fr;
    }

    .grid-differentials {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .mobile-toggle { display: block; }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--champagne-border);
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .manifesto-headline {
        font-size: 2.2rem;
    }

    .glass-panel {
        padding: 2rem 1.5rem;
    }

    .manifesto-text {
        font-size: 1.35rem;
    }

    .grid-differentials {
        grid-template-columns: 1fr;
    }

    .quote-content {
        font-size: 1.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .badge-top-right, .badge-bottom-left {
        display: none;
    }
}

/* LED Effect for JC Designer Credit (Text only with White & Neon Green Glow) */
.jc-led-link {
    font-weight: 700;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    text-shadow: 0 0 4px #FFFFFF, 0 0 8px #25D366, 0 0 16px #25D366;
    animation: ledGreenPulse 2s infinite alternate ease-in-out;
    transition: all 0.3s ease;
}

.jc-led-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 6px #FFFFFF, 0 0 14px #25D366, 0 0 24px #25D366, 0 0 35px #25D366;
}

@keyframes ledGreenPulse {
    0% {
        text-shadow: 0 0 3px #FFFFFF, 0 0 7px #25D366, 0 0 12px rgba(37, 211, 102, 0.7);
    }
    50% {
        text-shadow: 0 0 6px #FFFFFF, 0 0 14px #25D366, 0 0 22px #25D366, 0 0 30px rgba(37, 211, 102, 0.95);
    }
    100% {
        text-shadow: 0 0 3px #FFFFFF, 0 0 7px #25D366, 0 0 12px rgba(37, 211, 102, 0.7);
    }
}
