/* ===== VARIABLES & RESET ===== */
:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --accent: #00D4AA;
    --accent2: #FF6B6B;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a2e;
    --text: #e0e0e0;
    --text-muted: #8888a0;
    --border: rgba(255,255,255,0.06);
    --glass: rgba(255,255,255,0.03);
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-vip: linear-gradient(135deg, #FFD700, #FF8C00);
    --shadow: 0 8px 32px rgba(0,0,0,0.3);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; padding: 6px 18px; border-radius: 50px;
    background: rgba(108,99,255,0.12); color: var(--primary);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 16px;
}
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.gradient-text {
    background: var(--gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.accent { color: var(--accent); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 16px 0; transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(10,10,15,0.92); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; }
.logo-icon {
    width: 40px; height: 40px; border-radius: 12px; background: var(--gradient);
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 0.92rem; font-weight: 500; color: var(--text-muted);
    transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gradient); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
    border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s ease; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108,99,255,0.35); }
.btn-outline {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(108,99,255,0.08); }
.btn-nav { padding: 10px 24px; font-size: 0.88rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 120px 0 80px; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15;
}
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; }
.shape-3 { width: 300px; height: 300px; background: var(--accent2); top: 50%; left: 50%; transform: translate(-50%,-50%); }

.hero-content { text-align: center; position: relative; z-index: 2; }
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: 50px;
    background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.2);
    color: var(--accent); font-size: 0.9rem; font-weight: 600; margin-bottom: 28px;
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge { 0%,100% { opacity:1; } 50% { opacity:0.7; } }

.hero h1 { font-size: 3.8rem; font-weight: 900; line-height: 1.15; margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 64px; }

.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 40px;
    padding: 32px 48px; background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--radius); backdrop-filter: blur(10px);
    max-width: 600px; margin: 0 auto;
}
.stat { text-align: center; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: #fff; }
.stat-plus { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.stat-label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ===== SOBRE ===== */
.sobre-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sobre-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px 28px; text-align: center; transition: all 0.4s ease;
}
.sobre-card:hover { transform: translateY(-8px); border-color: rgba(108,99,255,0.3); background: var(--bg-card-hover); }
.sobre-icon {
    width: 64px; height: 64px; border-radius: 16px; background: rgba(108,99,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary); margin: 0 auto 20px;
}
.sobre-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.sobre-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== PLANOS ===== */
.planos { background: linear-gradient(180deg, var(--bg-dark), #0d0d18, var(--bg-dark)); }
.planos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.plano-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px 28px; position: relative; transition: all 0.4s ease; overflow: hidden;
}
.plano-card:hover { transform: translateY(-8px); border-color: rgba(108,99,255,0.3); }
.plano-card.featured {
    border-color: var(--primary); background: linear-gradient(180deg, rgba(108,99,255,0.08), var(--bg-card));
    transform: scale(1.03);
}
.plano-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.plano-card.vip {
    border-color: rgba(255,215,0,0.3); background: linear-gradient(180deg, rgba(255,215,0,0.06), var(--bg-card));
}

.plano-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    padding: 6px 20px; border-radius: 0 0 12px 12px; font-size: 0.8rem; font-weight: 700;
    background: var(--gradient); color: #fff;
}
.plano-badge.vip-badge { background: var(--gradient-vip); }

.plano-tag {
    display: inline-block; padding: 4px 14px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
    background: rgba(108,99,255,0.1); color: var(--primary); margin-bottom: 20px;
}
.tag-featured { background: rgba(108,99,255,0.2); }
.tag-vip { background: rgba(255,215,0,0.15); color: #FFD700; }

.plano-icon {
    width: 56px; height: 56px; border-radius: 14px; background: rgba(108,99,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary); margin-bottom: 18px;
}
.vip .plano-icon { background: rgba(255,215,0,0.1); color: #FFD700; }
.plano-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.plano-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; min-height: 44px; }

.plano-price { margin-bottom: 24px; display: flex; align-items: baseline; gap: 2px; }
.currency { font-size: 1.2rem; font-weight: 700; color: var(--text-muted); }
.amount { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; }
.period { font-size: 0.9rem; color: var(--text-muted); margin-left: 4px; }

.plano-features { margin-bottom: 28px; }
.plano-features li {
    display: flex; align-items: center; gap: 10px; padding: 7px 0;
    font-size: 0.88rem; color: var(--text);
}
.plano-features li i { font-size: 0.75rem; color: var(--accent); }
.plano-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.plano-features li.disabled i { color: var(--accent2); }

.btn-plano {
    display: block; width: 100%; text-align: center; padding: 14px;
    border-radius: 12px; font-weight: 700; font-size: 0.95rem;
    background: rgba(108,99,255,0.1); color: var(--primary); border: 1px solid rgba(108,99,255,0.2);
    transition: all 0.3s; cursor: pointer;
}
.btn-plano:hover { background: var(--primary); color: #fff; }
.btn-featured { background: var(--gradient); color: #fff; border: none; }
.btn-featured:hover { box-shadow: 0 8px 25px rgba(108,99,255,0.4); }
.btn-vip { background: var(--gradient-vip); color: #000; border: none; font-weight: 800; }
.btn-vip:hover { box-shadow: 0 8px 25px rgba(255,215,0,0.35); }

/* ===== BENEFÍCIOS ===== */
.beneficios-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.beneficio-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px; transition: all 0.4s;
}
.beneficio-card:hover { border-color: rgba(108,99,255,0.3); transform: translateY(-4px); }
.beneficio-num {
    font-size: 3rem; font-weight: 900; background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 12px; line-height: 1;
}
.beneficio-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.beneficio-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== DEPOIMENTOS ===== */
.depoimentos { background: linear-gradient(180deg, var(--bg-dark), #0e0e1a, var(--bg-dark)); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.depoimento-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px; transition: all 0.4s;
}
.depoimento-card:hover { border-color: rgba(108,99,255,0.3); transform: translateY(-4px); }
.depoimento-stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.depoimento-card > p { font-size: 0.95rem; color: var(--text); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.depoimento-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 1.1rem;
}
.depoimento-author strong { display: block; font-size: 0.92rem; }
.depoimento-author span { font-size: 0.8rem; color: var(--accent); }

/* ===== FAQ ===== */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0; background: none; border: none; color: #fff;
    font-size: 1rem; font-weight: 600; cursor: pointer; font-family: inherit; text-align: left;
}
.faq-question i { color: var(--primary); transition: transform 0.3s; font-size: 0.85rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 22px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ===== CTA ===== */
.cta-box {
    text-align: center; padding: 72px 48px; border-radius: 24px;
    background: linear-gradient(135deg, rgba(108,99,255,0.12), rgba(0,212,170,0.08));
    border: 1px solid rgba(108,99,255,0.2);
}
.cta-box h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.cta-box p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.9rem; padding: 5px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary); }
.footer-col a i { margin-right: 8px; }
.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom a { color: var(--text-muted); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--primary); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .planos-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; width: 100%; background: rgba(10,10,15,0.97);
        padding: 24px; gap: 16px; border-bottom: 1px solid var(--border);
    }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
    .stat-divider { width: 48px; height: 1px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .planos-grid, .depoimentos-grid { grid-template-columns: 1fr; }
    .sobre-grid { grid-template-columns: 1fr; }
    .beneficios-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section-header h2 { font-size: 1.8rem; }
    .plano-card.featured { transform: none; }
    .plano-card.featured:hover { transform: translateY(-8px); }
    .cta-box { padding: 48px 24px; }
    .cta-box h2 { font-size: 1.6rem; }
}
