/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0f0f13;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Cores e Variáveis */
:root {
    --primary-color: #00ff88;
    --primary-hover: #00cc6a;
    --dark-bg: #1a1a24;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
}

/* Navegação */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(15, 15, 19, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

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

.btn-nav {
    background: var(--primary-color);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 800 !important;
}

.btn-nav:hover {
    background: var(--primary-hover);
}

/* Botões Globais */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    font-size: 16px;
    transition: transform 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

.btn-large {
    font-size: 20px;
    padding: 20px 40px;
}

/* Seção Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 5% 100px;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

/* Seções Genéricas */
section {
    padding: 100px 5%;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

/* Recursos */
.recursos {
    background-color: var(--dark-bg);
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #252532;
    padding: 40px 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-color);
}

.card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.card p {
    color: var(--text-muted);
}

/* Novidades */
.lista-novidades {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.lista-novidades li {
    font-size: 18px;
    margin-bottom: 20px;
    background: #1a1a24;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lista-novidades li i {
    color: var(--primary-color);
    font-size: 24px;
}

/* Download */
.download {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #000000 100%);
    padding: 120px 5%;
}

.download p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

/* Rodapé */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
    color: var(--text-muted);
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .nav-links {
        display: none; /* Em um projeto real, aqui entraria um menu hambúrguer no JS */
    }
}

<!-- ========================= -->
<!-- COLE ESSE BLOCO NO <style> -->
<!-- ========================= -->

.price-box{
    margin-top: 25px;
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
    border: 2px solid #10b981;
    border-radius: 18px;
    padding: 22px;
    max-width: 360px;
    box-shadow: 0 10px 30px rgba(16,185,129,0.25);
}

.price-label{
    display: inline-block;
    background: rgba(16,185,129,0.15);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.price-box h2{
    font-size: 52px;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.price-box h2 span{
    font-size: 22px;
    color: #94a3b8;
}

.price-box p{
    margin: 0;
    color: #cbd5e1;
    font-size: 15px;
}

.btn-lifetime{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #25d366;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #25d366;
    transition: all 0.3s ease;
}

.btn-lifetime:hover{
    background: #25d366;
    color: #fff;
    transform: translateY(-3px);
}

.hero-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.hero-badges span{
    background: #111827;
    border: 1px solid #1e293b;
    color: #e2e8f0;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
}

.planos{
    padding: 100px 20px;
    background: linear-gradient(180deg,#020617 0%,#0f172a 100%);
}

.planos h2{
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

.planos-sub{
    text-align: center;
    color: #94a3b8;
    margin-bottom: 60px;
    font-size: 18px;
}

.planos-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.plano-card{
    background: #111827;
    border-radius: 22px;
    padding: 40px;
    border: 2px solid #1e293b;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.plano-card:hover{
    transform: translateY(-8px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.plano-tag{
    position: absolute;
    top: 18px;
    right: 18px;
    background: #10b981;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.plano-card h3{
    font-size: 28px;
    margin-bottom: 20px;
}

.plano-price{
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
}

.plano-price span{
    font-size: 18px;
    color: #94a3b8;
}

.plano-list{
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.plano-list li{
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
}

.plano-list i{
    color: #10b981;
}

.stats{
    padding: 80px 20px;
    background: #020617;
}

.stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-box{
    background: #111827;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #1e293b;
}

.stat-box h3{
    font-size: 42px;
    color: #10b981;
    margin-bottom: 10px;
}

.stat-box p{
    color: #cbd5e1;
}

@media(max-width:768px){

    .video-container{
        width: 100%;
        height: 230px;
    }

    .price-box{
        max-width: 100%;
    }

    .hero-content h1{
        font-size: 36px;
    }

    .planos h2{
        font-size: 30px;
    }

    .plano-price{
        font-size: 42px;
    }
}

.recursos-sub{
    color: #94a3b8;
    font-size: 18px;
    margin-top: -25px;
    margin-bottom: 50px;
}

.cards-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.card{
    background: linear-gradient(180deg,#1e293b 0%,#111827 100%);
    padding: 40px 30px;
    border-radius: 18px;
    transition: 0.3s ease;
    border: 1px solid #334155;
    position: relative;
    overflow: hidden;
}

.card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #10b981;
    transform: scaleX(0);
    transition: 0.3s ease;
}

.card:hover::before{
    transform: scaleX(1);
}

.card:hover{
    transform: translateY(-8px);
    border-color: #10b981;
    box-shadow: 0 20px 35px rgba(0,0,0,0.35);
}

.card i{
    font-size: 42px;
    margin-bottom: 20px;
    color: #10b981;
}

.card h3{
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.card p{
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}