:root {
    --primary: #2563eb;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.35);
    
    --success: #10b981;
    --success-light: #34d399;
    --success-glow: rgba(16, 185, 129, 0.25);

    --warning: #f59e0b;
    --danger: #ef4444;

    --dark: #090d16;
    --dark-surface: #0f172a;
    --dark-card: #1e293b;
    
    --light-bg: #f8fafc;
    --light-card: #ffffff;
    --border-color: #e2e8f0;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

html, body {
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Helpers */
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }

/* ===============================
   SCROLL ANIMATIONS
   =============================== */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   NAVBAR
   =============================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all 0.35s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35), 0 0 10px rgba(16, 185, 129, 0.25);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand:hover .brand-logo {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 22px rgba(37, 99, 235, 0.5), 0 0 15px rgba(16, 185, 129, 0.4);
}

.brand-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.brand-name span {
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-secondary {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

.btn-primary-glow {
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.3rem;
    border-radius: 8px;
    box-shadow: 0 4px 14px var(--primary-glow);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* BOTÃO HAMBÚRGUER */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
}

/* MOBILE DRAWER */
.mobile-drawer {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.mobile-drawer.active {
    display: flex;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mobile-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.btn-secondary.full, .btn-primary-glow.full {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* ===============================
   HERO SECTION
   =============================== */
.hero {
    position: relative;
    padding: 4.5rem 1.5rem 5rem;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 70%),
                var(--light-bg);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    border: 1px solid #cbd5e1;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.btn-hero-primary {
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 1.75rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px var(--primary-glow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.4);
}

/* CTA GLOW PULSE EFFECT */
.btn-glow-pulse {
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 10px 25px var(--primary-glow); }
    50% { box-shadow: 0 10px 35px rgba(37, 99, 235, 0.55), 0 0 60px rgba(37, 99, 235, 0.15); }
}

.btn-glow-pulse:hover {
    animation: none;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.4);
}

.btn-hero-ghost {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 1.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.btn-hero-ghost:hover {
    background: #f1f5f9;
}

.hero-trust-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* HERO VISUAL MOCKUP */
.hero-visual {
    display: flex;
    justify-content: center;
}

.mockup-frame {
    max-width: 580px;
    border-radius: 20px;
    box-shadow: 0 25px 65px -10px rgba(37, 99, 235, 0.35), 0 0 35px rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(37, 99, 235, 0.2);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mockup-frame:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 35px 80px -10px rgba(37, 99, 235, 0.45), 0 0 45px rgba(16, 185, 129, 0.35);
    border-color: rgba(16, 185, 129, 0.4);
}

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

/* ===============================
   TRUST BADGES
   =============================== */
.trust-badges {
    background: white;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--success);
    font-size: 1rem;
}

/* ===============================
   STATS BAR
   =============================== */
.stats-bar {
    background: var(--dark);
    color: white;
    padding: 2.2rem 1.5rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-box i {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.stat-box strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
}

.stat-box span {
    font-size: 0.85rem;
    color: #94a3b8;
}

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

/* ===============================
   SECTIONS COMMON
   =============================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #e0e7ff;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ===============================
   FEATURES
   =============================== */
.features {
    padding: 5.5rem 1.5rem;
    background: var(--light-bg);
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.bg-blue { background: #dbeafe; color: #1d4ed8; }
.bg-green { background: #dcfce7; color: #15803d; }
.bg-purple { background: #f3e8ff; color: #7e22ce; }
.bg-amber { background: #fef3c7; color: #b45309; }
.bg-cyan { background: #cffafe; color: #0e7490; }
.bg-rose { background: #ffe4e6; color: #be123c; }

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* ===============================
   HOW IT WORKS — 3 STEPS
   =============================== */
.how-it-works {
    padding: 5.5rem 1.5rem;
    background: white;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.step-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem;
    background: #eff6ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}

.step-card:hover .step-icon-wrap {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 240px;
    margin: 0 auto;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5.5rem;
    color: #cbd5e1;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 40px;
}

/* ===============================
   COMPARISON
   =============================== */
.comparison-section {
    padding: 5.5rem 1.5rem;
    background: var(--light-bg);
}

.comparison-grid {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comp-card {
    padding: 2.2rem;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    position: relative;
}

.comp-card.bad {
    background: #fff5f5;
    border-color: #fed7d7;
}

.comp-card.good {
    background: #f0fdf4;
    border: 2px solid var(--success);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.1);
}

.best-badge {
    position: absolute;
    top: -14px;
    right: 25px;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.comp-header i { font-size: 1.6rem; }
.comp-header h3 { font-size: 1.25rem; font-weight: 800; }

.comp-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.comp-card li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
}

.comp-card.bad li i { color: var(--danger); margin-top: 4px; }
.comp-card.good li i { color: var(--success); margin-top: 4px; }

/* ===============================
   TESTIMONIALS
   =============================== */
.testimonials {
    padding: 5.5rem 1.5rem;
    background: white;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: #e2e8f0;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    min-height: 90px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===============================
   PRICING (3 COLUMNS)
   =============================== */
.pricing {
    padding: 5.5rem 1.5rem;
    background: var(--light-bg);
}

.pricing-container-three {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    background: white;
    transform: scale(1.02);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-type {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.25rem 0 0.4rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    min-height: 42px;
}

.price-val {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.8rem;
}

.price-val .currency { font-size: 1.3rem; font-weight: 700; margin-right: 4px; }
.price-val .amount { font-size: 3rem; font-weight: 800; line-height: 1; }
.price-val .cents { font-size: 1.5rem; font-weight: 800; }
.price-val .period { font-size: 0.9rem; color: var(--text-muted); margin-left: 6px; }

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex: 1;
}

.plan-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.plan-features li i {
    margin-top: 4px;
}

.btn-plan-primary {
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    padding: 0.9rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 6px 18px var(--primary-glow);
    transition: all 0.3s;
}

.btn-plan-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.4);
}

.btn-plan-ghost {
    text-decoration: none;
    background: #f1f5f9;
    color: var(--text-main);
    font-weight: 700;
    padding: 0.85rem;
    border-radius: 10px;
    display: block;
    text-align: center;
    transition: all 0.2s;
}

.btn-plan-ghost:hover {
    background: #e2e8f0;
}

.money-back {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
}

/* ===============================
   FAQ
   =============================== */
.faq {
    padding: 5.5rem 1.5rem;
    background: white;
}

.faq-accordion {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--light-bg);
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item.active {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

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

/* ===============================
   FINAL CTA
   =============================== */
.final-cta {
    padding: 3rem 1.5rem 5rem;
    background: var(--light-bg);
}

.final-cta-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 100%);
    color: white;
    padding: 4rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.final-cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.final-cta-card p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 2.2rem;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
    background: #030712;
    color: #94a3b8;
    padding: 3.5rem 1.5rem 1.8rem;
    border-top: 1px solid #1e293b;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand p {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #1e293b;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.25s;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.ssl-badge {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.8rem;
    border-top: 1px solid #111827;
    text-align: center;
    font-size: 0.85rem;
}

/* ===============================
   BOTÃO FLUTUANTE WHATSAPP
   =============================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s;
    animation: whatsappBounce 2s ease-in-out infinite;
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
   =============================== */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-text h1 { font-size: 2.4rem; }
    .hero-cta-group { justify-content: center; }
    .hero-trust-simple { justify-content: center; }
    .comparison-grid { grid-template-columns: 1fr; }
    .pricing-container-three {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .pricing-card.featured { transform: scale(1); }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .steps-container { flex-direction: column; align-items: center; gap: 0; }
    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        width: auto;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-actions .btn-secondary { display: none; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .hero { padding: 3rem 1rem 4rem; }
    .hero-text h1 { font-size: 2rem; }
    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .stat-divider { display: none; }
    .hero-visual { order: -1; }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 1.6rem;
    }
    .comparison-section, .features, .pricing, .faq, .how-it-works, .testimonials {
        padding: 4rem 1rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .trust-container {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container { padding: 0.75rem 1rem; }
    .brand-name { font-size: 1.2rem; }
    .brand-logo { width: 36px; height: 36px; }
    .nav-actions .btn-primary-glow { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
    
    .hero-text h1 { font-size: 1.75rem; letter-spacing: -0.5px; }
    .hero-text p { font-size: 0.95rem; }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .btn-hero-primary, .btn-hero-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }
    .pricing-card { padding: 1.8rem 1.2rem; }
    .price-val .amount { font-size: 2.5rem; }
    .faq-question { padding: 1rem 1.2rem; font-size: 0.95rem; }
    .faq-answer p { padding: 0 1.2rem 1rem; font-size: 0.9rem; }
    .final-cta-card { padding: 2.5rem 1.2rem; }
    .final-cta-card h2 { font-size: 1.6rem; }
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .trust-container {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .step-card { padding: 1.5rem 1rem; }
    .step-card p { max-width: 100%; }
}
