:root {
    --primary: #2563eb; 
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --accent: #00f0ff; 
    --black: #0f172a; 
    --white: #ffffff;
    --light-bg: #f8fafc; 
    --light-gray: #e2e8f0;
    --medium-gray: #cbd5e1;
    --dark-gray: #475569;
    
    /* Premium Palette */
    --electric-blue: #3b82f6;
    --deep-navy: #020617;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --dark-glass-bg: rgba(15, 23, 42, 0.8);
    --dark-glass-border: rgba(255, 255, 255, 0.1);
    
    /* Cores dos Planos */
    --gold: #f59e0b;
    --silver: #94a3b8;
    --bronze: #b45309;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --container: 1200px;
    
    /* Premium Elevation */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 2rem; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }

p { color: var(--dark-gray); }

.text-gradient {
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight { color: var(--primary); }

.text-bold { font-weight: 700; color: var(--black); }

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Container estendido para seções que precisam de mais largura */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.py-large { padding: clamp(4rem, 8vw, 8rem) 0; }
.py-medium { padding: clamp(2rem, 4vw, 4rem) 0; }
.mt-large { margin-top: 4rem; }
.mt-2 { margin-top: 1.5rem; }
.text-center { text-align: center; }

.bg-light { background-color: var(--white); }
.bg-dark { background-color: var(--black); color: var(--white); }
.bg-dark h2, .bg-dark h3, .bg-dark p { color: var(--white); }

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:active {
    transform: scale(0.95) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-accent {
    background: linear-gradient(135deg, var(--deep-navy), #0f172a);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--black);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-glow {
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    from { box-shadow: 0 0 10px rgba(37, 99, 235, 0.4), inset 0 0 5px rgba(255,255,255,0.2); }
    to { box-shadow: 0 0 25px rgba(37, 99, 235, 0.8), 0 0 15px rgba(0, 240, 255, 0.4), inset 0 0 10px rgba(255,255,255,0.5); }
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .pricing-table th, .pricing-table td {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

/* ========================================= */
/* --- 🔥 APP-LIKE SWIPE SCROLL MOBILE 🔥 --- */
/* ========================================= */
@media (max-width: 768px) {
    /* Transforma painéis verticais longos em rolagem horizontal (swipe nativo) */
    .pain-grid, 
    .benefits-grid, 
    .client-features-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
        gap: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 1rem;
        scrollbar-width: none; 
    }
    
    .pain-grid::-webkit-scrollbar, 
    .benefits-grid::-webkit-scrollbar, 
    .client-features-grid::-webkit-scrollbar {
        display: none;
    }
    
    .pain-card, 
    .benefit-card, 
    .client-feature {
        min-width: 85%;
        scroll-snap-align: center;
        flex: 0 0 auto;
    }

    /* Botões totalmente expansivos para toque facilitado (Hitboxes grandes) */
    .plan-card .btn,
    .hero-actions .btn,
    .sticky-cta-mobile .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .btn-lg {
        padding: 1rem 1.8rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Navbar Floating Glass - Global Hamburger Style */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.navbar.nav-hidden {
    transform: translate(-50%, -120%);
    opacity: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0;
    flex-wrap: wrap; /* Para expansão vertical */
}

.logo img { 
    height: 42px; 
    filter: brightness(0) invert(1); /* Logo branca no vidro escuro */
    transition: transform 0.3s ease;
}

.logo:hover img { transform: scale(1.05); }

/* Global Hamburger Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
    transition: var(--transition);
    order: 2;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: none; /* Oculto globalmente por padrão */
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    padding: 1.5rem 0 0.5rem;
    order: 3;
    animation: fadeInMenu 0.4s ease forwards;
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar.mobile-active {
    width: 320px; /* Base Mobile */
    max-width: 90%;
    border-radius: 24px;
    padding-bottom: 1.5rem;
}

/* ===== DESKTOP: menu visível por padrão (horizontal) ===== */
@media (min-width: 969px) {
    .menu-toggle {
        display: none; /* Oculta hambúrguer no desktop */
    }

    .nav-menu {
        display: flex !important; /* Sempre visível no desktop */
        flex-direction: row;
        align-items: center;
        width: auto;
        gap: 0.5rem;
        padding: 0;
        order: 2;
        animation: none;
    }

    .navbar.mobile-active {
        width: 95%;
        max-width: 1200px;
        border-radius: 100px;
        padding-bottom: 0.8rem;
    }
}

.navbar.mobile-active .nav-menu {
    display: flex;
    flex-direction: column;
}

/* Mobile: fundo mais escuro para os links ficarem legíveis */
@media (max-width: 968px) {
    .navbar.mobile-active {
        width: 90%;
        max-width: 360px;
        border-radius: 24px;
        padding-bottom: 1.5rem;
        background: rgba(2, 6, 23, 0.70); /* Mais transparente para glass */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar.mobile-active .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        color: #ffffff !important; /* Força branco visível */
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar.mobile-active .nav-link:last-child {
        border-bottom: none;
    }

    .navbar.mobile-active .btn-nav-cta {
        margin-top: 1rem;
        width: auto;
        min-width: 160px;
        align-self: center;
    }
}

.nav-link {
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover { 
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    background: rgba(37, 99, 235, 0.15);
    color: var(--accent);
}

/* Hero */
.hero {
    min-height: 100svh; /* Usado svh para se adaptar à interface de navegadores móveis sem quebra */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente voltado pro azul na sobreposição */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(37, 99, 235, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content h1 { color: var(--white); }
.hero-content p { color: rgba(255,255,255,0.9); }

.subheadline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Impact Reality Section */
.reality-impact {
    background: #020617; /* Deep Navy */
    position: relative;
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.text-accent { color: var(--accent); }

.title-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.impact-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.impact-lead {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.pain-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
}

.pain-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pain-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #1e3a8a; /* Azul Marinho Profundo */
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.1);
    transition: var(--transition);
}

.pain-card:hover .pain-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}

.pain-card h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.pain-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.solution-bridge {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(0, 240, 255, 0.1));
    padding: clamp(2rem, 4vw, 4rem);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 2;
    position: relative;
}

.bridge-text h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.bridge-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.benefit-card {
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.benefit-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(-5deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15), 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
}

.benefit-card i {
    width: 48px;
    height: 48px;
    color: #1e3a8a; /* Dark Navy Blue */
    margin-bottom: 1.5rem;
    background: rgba(30, 58, 138, 0.1);
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.benefit-card:hover i {
    transform: translateZ(30px) scale(1.1);
    background: var(--primary);
    color: var(--white);
}

/* Money Comparison - Escuro Moderno */
.bg-dark {
    background: var(--black) url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNCkiLz48L3N2Zz4=');
    border-bottom: 1px solid rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.05);
}

.money-compare-grid {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-bars {
    margin: 3.5rem 0;
}

.bar-item {
    margin-bottom: 2.5rem;
}

.bar-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Money Section & Calculator Box */
.money {
    background: #020617; /* Deep Navy */
}

.money-compare-grid {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.9;
}

.input-group input[type="number"] {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.input-group input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.res-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.res-item span:first-child {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.res-item .loss {
    font-weight: 800;
    color: #f87171;
    font-size: 1.1rem;
}

.res-item.danger-highlight {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.res-item.gold-highlight {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    padding: 2rem 1.5rem;
}

.res-label span {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold) !important;
}

.res-label small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.savings {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.money-footer .highlight-text {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .calc-inputs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .calculator-box {
        padding: 1.5rem;
    }
}

/* Plans Inspired Design */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    align-items: stretch;
}

.plan-card {
    background: #111827; /* Dark Grey/Navy */
    padding: 2.5rem;
    border-radius: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.plan-card.featured {
    background: var(--white);
    color: #111827;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 45px;
    height: 45px;
    color: var(--white);
}

.featured .plan-icon {
    color: #22c55e; /* Green matching inspiration standard */
}

.badge-discount, .badge-popular-new {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(139, 92, 246, 0.2); /* Purple tint */
    color: #a78bfa;
}

.featured .badge-popular-new {
    background: #8b5cf6;
    color: var(--white);
}

.plan-header-new h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: inherit;
}

.plan-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.price-container-new {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.old-price-new {
    text-decoration: line-through;
    opacity: 0.4;
    font-size: 1.2rem;
}

.current-price-new {
    font-size: 2.5rem;
    font-weight: 800;
}

.period {
    opacity: 0.6;
    font-size: 1.1rem;
}

/* Button Inspired Style */
.btn-gold-inspire {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important; /* Premium Golden/Orange */
    color: #000000 !important;
    width: 100%;
    padding: 1rem;
    justify-content: center;
    font-weight: 800;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold-inspire::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.btn-gold-inspire:hover::before {
    transform: translateX(100%);
}

.btn-gold-inspire:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
}

.btn-gold-inspire:active {
    transform: scale(0.95);
}

/* Features Inspired list */
.features-new {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

.featured .features-new {
    border-top: 1px solid rgba(0,0,0,0.05);
}

.features-new li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #8b5cf6; /* Purple matching inspiration checks */
}

@media (max-width: 968px) {
    .plan-card.featured {
        transform: scale(1);
    }
    .plans-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
}

.plan-card .btn {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

.plan-card.gold {
    /* O "Gold" agora é super premium com tons de Azul Profundo */
    background: linear-gradient(180deg, var(--black) 0%, #1e293b 100%);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
}

.plan-card.gold h3, .plan-card.gold p, .plan-card.gold .current-price, .plan-card.gold .old-price, .plan-card.gold .text-bold {
    color: var(--white);
}

.plan-card.gold .old-price { color: rgba(255,255,255,0.5); }

.plan-card.gold .features li { color: rgba(255,255,255,0.9); }
.plan-card.gold .features li i { color: var(--accent); }

.title-tag { color: var(--gold); font-weight: 700; letter-spacing: 1px; font-size: 0.9rem; margin-top: -0.5rem;}

.tag.warning { 
    display: inline-block; padding: 0.4rem 1rem; background: #fee2e2; color: #ef4444; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
}

/* Scarcity */
.scarcity-block {
    margin-top: 6rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(0, 240, 255, 0.05));
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}
.scarcity-block h3 { color: var(--primary); }

/* Ease Section */
.ease-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 968px) {
    .ease-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .phone-mockup {
        width: 260px;
        height: 480px;
        margin: 0 auto;
    }
}

.phone-mockup {
    background: linear-gradient(135deg, #1e293b, var(--black));
    padding: 1.5rem;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.3);
    border: 4px solid var(--dark-gray);
}

.mockup-screen {
    background: var(--light-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    min-height: 450px;
}

.screen-item {
    background: var(--white);
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    color: var(--primary-dark);
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.screen-item::before {
    content: ''; display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); margin-right: 15px;
}

.simple-list li { margin-bottom: 0.8rem; font-size: 1.2rem; font-weight: 500; display:flex;}
.simple-list li::before { content:'✓'; color: var(--primary); margin-right: 10px; font-weight: 900;}

.pos-chips { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 10px; }
.pos-chips span {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Trust & Security Bar - Ultra Premium */
.trust-bar {
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.trust-item:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    position: relative;
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-5deg);
}

.trust-icon i {
    width: 26px;
    height: 26px;
    animation: heartbeat 3s infinite ease-in-out;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.12); }
    70% { transform: scale(1); }
    100% { transform: scale(1); }
}

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

.trust-text strong {
    font-size: 1rem;
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

.trust-text span {
    font-size: 0.82rem;
    color: var(--dark-gray);
    margin-top: 2px;
}

.trust-text span {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .trust-grid {
        justify-content: center;
    }
    .trust-item {
        width: 100%;
        max-width: 300px;
        justify-content: flex-start;
    }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(180deg, var(--white) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.final-actions {
    margin: 3.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; /* evita overflow no mobile */
}

.final-phrase {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 3rem;
    color: var(--dark-gray);
}

.footer {
    padding: 3rem 0;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

/* Calculadora - Estilos unificados abaixo na linha 595 */

.res-item.danger-highlight {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.res-item.danger-highlight .loss {
    color: #ef4444;
}

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

.res-label small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 0.2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--medium-gray);
}

.input-group input[type="number"] {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--dark-glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.input-group input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.calculator-results {
    display: grid;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-glass-border);
}

.res-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.res-item.gold-highlight {
    background: rgba(245, 158, 11, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.savings {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.5rem;
}

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

/* FAQ Styles */
.faq-grid {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

.faq-category {
    background: #f8fafc;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-cat-title {
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 800;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    margin-bottom: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.05);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--black);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
    border-top: 1px solid rgba(0,0,0,0.03);
    padding-top: 1rem;
}

/* Sticky CTA */
.sticky-cta-mobile {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 999;
    display: none; /* Mostrar via JS no mobile */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.sticky-cta-mobile.active {
    display: block;
    transform: translateX(-50%) translateY(0);
}

.sticky-cta-mobile .btn {
    white-space: nowrap;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.mr-2 { margin-right: 0.8rem; }

/* Animations Fallback (before GSAP) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.bg-deep-navy { background-color: var(--deep-navy); }

/* Ease Section - Smartphone Mockup Premium */
.ease { background: var(--white); }

.ease-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.phone-mockup {
    width: 320px;
    height: 600px;
    background: #111827;
    border-radius: 40px;
    position: relative;
    padding: 20px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.2), inset 0 0 15px rgba(255,255,255,0.05);
    margin: 0 auto;
    border: 8px solid #1f2937;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1f2937;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.mockup-screen {
    background: #f8fafc;
    height: 100%;
    width: 100%;
    border-radius: 24px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.screen-item {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 16px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    gap: 15px;
}

.screen-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.simple-list {
    list-style: none;
    margin: 2rem 0;
}

.simple-list li {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--black);
    line-height: 1.4;
}

.simple-list li i {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 8px;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: -3px;
}

.simple-list li strong {
    display: block;
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.simple-list li span {
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.pos-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pos-chips span {
    background: rgba(37, 99, 235, 0.08);
    color: #1e3a8a; /* Azul Marinho Profundo para Máximo Contraste */
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: none; /* Mantém a capitalização original */
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.pos-chips span:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Premium Styles */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-col h4 {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .footer-desc {
        font-size: 0.78rem;
        line-height: 1.6;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .footer-links i {
        width: 14px;
        height: 14px;
    }

    .social-links,
    .social-btn {
        gap: 0.6rem;
    }

    .social-btn {
        width: 36px;
        height: 36px;
    }

    .social-btn svg {
        width: 16px;
        height: 16px;
    }

    .app-badges {
        padding: 1rem;
    }

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

    .footer-bottom {
        font-size: 0.75rem;
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent);
    transform: scale(1.05); /* Escala central em vez de mover para o lado */
}

.footer-links i {
    width: 18px;
    height: 18px;
    color: var(--primary-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a,
.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--social-color, var(--primary));
    color: #ffffff;
    border-color: var(--social-color, var(--primary));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.app-badges {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-soon {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}



/* Unified Companies/B2B Section Styles */
.transportadoras {
    color: var(--black);
}

.transport-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.t-benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.t-benefit-item:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(10px);
}

.t-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
}

.t-benefit-item h4 {
    color: var(--black);
    margin-bottom: 0.3rem;
}

.t-benefit-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Dashboard Preview */
.dashboard-preview {
    background: #1e293b;
    border-radius: 24px;
    padding: 1.5rem;
    border: 8px solid #334155;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.dash-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #475569;
}

.dash-dot:nth-child(1) { background: #ef4444; }
.dash-dot:nth-child(2) { background: #f59e0b; }
.dash-dot:nth-child(3) { background: #10b981; }

.dash-content {
    background: #0f172a;
    border-radius: 12px;
    padding: 1rem;
}

.dash-item {
    font-family: monospace;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.dash-item.active {
    color: var(--accent);
    border-left: 2px solid var(--accent);
    background: rgba(0, 240, 255, 0.05);
}

/* Responsive Updates */
@media (max-width: 968px) {
    .navbar {
        border-radius: 30px;
        padding: 0.8rem 1.2rem;
    }

    .navbar .container {
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap; /* Permite que o menu caia para a próxima linha */
    }

    .menu-toggle { 
        display: block; 
        order: 2;
    }

    .transport-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dashboard-preview {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Clientes / Embarcadores Section */
.clientes {
    background: #f8fafc;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.client-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.client-feature {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.client-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--accent);
}

.client-feature i {
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.client-feature h4 {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 1.25rem;
}

.client-feature p {
    color: var(--dark-gray);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .client-features-grid {
        gap: 1.5rem;
    }
}
/* FAQ Section Refined with Dark Icons */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas fixas */
    gap: 1.5rem;
    align-items: start;
    margin-top: 3rem;
    width: 100%; /* Ocupa todo o container */
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablet */
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr; /* 1 coluna no mobile */
        gap: 1rem;
    }
}

.faq-category {
    background: rgba(30, 58, 138, 0.02);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.faq-cat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    margin-bottom: 1.2rem;
    color: #1e3a8a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-cat-title i {
    width: 18px;
    height: 18px;
    color: #1e3a8a;
    flex-shrink: 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 0.6rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.faq-item.active {
    border-color: #1e3a8a;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.05);
}

.faq-question {
    padding: 0.9rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--black);
    line-height: 1.4;
}

.faq-answer {
    padding: 0 1rem 1rem;
    color: var(--dark-gray);
    font-size: 0.82rem;
    line-height: 1.6;
    display: none;
    border-top: 1px solid rgba(0,0,0,0.03);
    padding-top: 0.8rem;
}

/* FAQ Responsivo — ajustes de tipografia mobile */
@media (max-width: 768px) {
    .faq-category {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .faq-cat-title {
        font-size: 0.72rem;
        margin-bottom: 1rem;
    }

    .faq-question {
        font-size: 0.78rem;
        padding: 0.75rem 0.8rem;
    }

    .faq-answer {
        font-size: 0.78rem;
    }
}
