:root { 
    --bg: #06080C; 
    --card: #0F131A; 
    --accent: #3772FF; 
    --accent-gradient: linear-gradient(135deg, #3772FF 0%, #9747FF 100%);
    --border: #1E293B; 
    --text-main: #F4F7FA;
    --text-dim: #94A3B8; 
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    background-color: var(--bg); 
    color: var(--text-main); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* NAVBAR */
.navbar { 
    padding: 25px 0; 
    border-bottom: 1px solid var(--border); 
    background: rgba(6, 8, 12, 0.8); 
    backdrop-filter: blur(10px); 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-size: 24px; 
    font-weight: 800; 
    letter-spacing: -1.2px; 
}

.logo span { 
    background: var(--accent-gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 30px; 
    align-items: center; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--text-dim); 
    font-size: 14px; 
    font-weight: 600; 
    transition: 0.3s; 
}

.nav-links a:hover { 
    color: var(--accent); 
}

.btn-login-outline { 
    border: 1px solid var(--border); 
    padding: 10px 20px; 
    border-radius: 10px; 
}

/* HERO */
.hero { 
    padding: 100px 0; 
    text-align: center; 
    position: relative; 
}

.hero::before { 
    content: ""; 
    position: absolute; 
    top: -100px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 500px; 
    height: 500px; 
    background: var(--accent); 
    filter: blur(150px); 
    opacity: 0.1; 
    z-index: -1; 
}

.badge { 
    background: rgba(55, 114, 255, 0.1); 
    color: var(--accent); 
    padding: 6px 16px; 
    border-radius: 50px; 
    font-size: 11px; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 20px; 
    display: inline-block; 
}

h1 { 
    font-size: 56px; 
    font-weight: 800; 
    letter-spacing: -2px; 
    line-height: 1.1; 
    margin-bottom: 25px; 
}

h1 span { 
    background: var(--accent-gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.hero p { 
    color: var(--text-dim); 
    font-size: 18px; 
    max-width: 700px; 
    margin: 0 auto 40px; 
}

.btn-cta { 
    background: var(--accent-gradient); 
    color: white; 
    padding: 18px 35px; 
    border-radius: 14px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-block; 
    box-shadow: 0 10px 20px rgba(55, 114, 255, 0.2); 
    transition: 0.3s; 
}

/* FEATURES GRID */
.features { 
    padding: 80px 0; 
}

.section-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 20px; 
}

.feature-card { 
    background: var(--card); 
    border: 1px solid var(--border); 
    padding: 35px; 
    border-radius: 24px; 
    transition: 0.3s; 
}

.feature-card:hover { 
    border-color: var(--accent); 
    transform: translateY(-5px); 
}

.feature-card .icon { 
    font-size: 32px; 
    margin-bottom: 20px; 
    display: block; 
}

.feature-card h3 { 
    font-size: 19px; 
    margin-bottom: 15px; 
    color: white; 
}

.feature-card p { 
    color: var(--text-dim); 
    font-size: 13px; 
    line-height: 1.6; 
}

/* PRICING */
.pricing { 
    padding: 80px 0; 
    background: rgba(255,255,255,0.01); 
}

.price-grid { 
    display: flex; 
    gap: 25px; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.price-card { 
    background: var(--card); 
    border: 1px solid var(--border); 
    padding: 45px; 
    border-radius: 28px; 
    width: 100%; 
    max-width: 350px; 
    position: relative; 
}

.price-card.featured { 
    border: 2px solid var(--accent); 
}

.value { 
    font-size: 42px; 
    font-weight: 800; 
    margin-bottom: 25px; 
}

.value span { 
    font-size: 14px; 
    color: var(--text-dim); 
    font-weight: 400; 
}

.list { 
    list-style: none; 
    margin-bottom: 35px; 
}

.list li { 
    font-size: 13px; 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.list li::before { 
    content: "✓"; 
    color: var(--accent); 
    font-weight: 900; 
}

.btn-price { 
    display: block; 
    text-align: center; 
    border: 1px solid var(--border); 
    padding: 15px; 
    border-radius: 12px; 
    text-decoration: none; 
    color: white; 
    font-weight: 700; 
    transition: 0.3s; 
}

.btn-price-primary { 
    display: block; 
    text-align: center; 
    background: var(--accent-gradient); 
    padding: 15px; 
    border-radius: 12px; 
    text-decoration: none; 
    color: white; 
    font-weight: 700; 
    transition: 0.3s; 
}

/* RECARGAS AVULSAS */
.extra-credits { 
    margin-top: 50px; 
    text-align: center; 
    background: rgba(55, 114, 255, 0.05); 
    padding: 40px; 
    border-radius: 24px; 
    border: 1px dashed var(--accent); 
}

.extra-credits h4 { 
    color: #ffab00; 
    font-size: 20px; 
    margin-bottom: 10px; 
}

.extra-credits p { 
    color: var(--text-dim); 
    font-size: 14px; 
}

.footer { 
    padding: 60px 0; 
    border-top: 1px solid var(--border); 
    text-align: center; 
    color: var(--text-dim); 
    font-size: 13px; 
}