* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-primary: #6B46C1;
    --purple-dark: #4C1D95;
    --purple-light: #8B5CF6;
    --pink-vibrant: #EC4899;
    --blue-primary: #3B82F6;
    --yellow-accent: #FBBF24;
    --yellow-bright: #FCD34D;
    --white: #FFFFFF;
    --gray-dark: #1F2937;
    --gray-light: #F3F4F6;
    --gradient-purple: linear-gradient(135deg, #6B46C1 0%, #3B82F6 100%);
    --gradient-purple-pink: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-cosmic: linear-gradient(135deg, #4C1D95 0%, #1E40AF 50%, #6B46C1 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background: #0F172A;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section com Imagem */
.hero {
    width: 100%;
    background: #0F172A;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(139, 92, 246, 0.3);
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0F172A;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Seção de Preço */
.pricing-section {
    padding: 80px 0;
    background: #0F172A;
    position: relative;
    border-bottom: 3px solid rgba(139, 92, 246, 0.3);
}

.pricing-content {
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.price-box {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.price-badge {
    background: rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(15px);
    padding: 30px 50px;
    border-radius: 20px;
    border: 3px solid var(--purple-light);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.6), 0 10px 40px rgba(0, 0, 0, 0.3);
    display: inline-block;
    text-align: center;
}

.badge-label {
    display: block;
    font-size: 1rem;
    color: var(--yellow-bright);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin: 10px 0;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.price-note {
    display: block;
    font-size: 1.1rem;
    color: var(--yellow-bright);
    font-weight: 600;
    margin-top: 10px;
}

.cta-button-green {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    padding: 22px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.5), 0 0 25px rgba(16, 185, 129, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    text-align: center;
}

.cta-button-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(16, 185, 129, 0.7), 0 0 35px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.cta-button-green svg {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Módulos */
.modules-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.module-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.module-card.available {
    border-color: var(--yellow-accent);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}

.module-card.included {
    border-color: var(--pink-vibrant);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.15);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
}

.module-header {
    margin-bottom: 25px;
}

.module-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--yellow-accent);
    color: var(--gray-dark);
}

.module-status.included-badge {
    background: var(--pink-vibrant);
    color: var(--white);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
}

.module-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.module-list {
    list-style: none;
    margin-bottom: 20px;
}

.module-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.8;
}

.module-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow-accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.module-list li strong {
    color: var(--yellow-bright);
    font-weight: 700;
}

.bonus-note {
    background: rgba(236, 72, 153, 0.2);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--pink-vibrant);
    color: var(--white);
    font-weight: 600;
    margin-top: 20px;
    font-size: 1rem;
}

/* CTA Container */
.cta-container {
    margin-top: 50px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-purple-pink);
    color: var(--white);
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.5), 0 0 25px rgba(236, 72, 153, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(139, 92, 246, 0.7), 0 0 35px rgba(236, 72, 153, 0.6);
}

.cta-button.large {
    padding: 25px 60px;
    font-size: 1.3rem;
}

.guarantee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 8px 0;
    font-weight: 500;
}

/* Seção de Benefícios */
.benefits-section {
    padding: 100px 0;
    background: #0F172A;
    border-bottom: 3px solid rgba(139, 92, 246, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(139, 92, 246, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--purple-light);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

/* CTA Final */
.final-cta {
    padding: 100px 0;
    background: #0F172A;
    text-align: center;
    border-bottom: 3px solid rgba(139, 92, 246, 0.3);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.price-display {
    margin: 40px 0;
}

.old-price {
    display: block;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 15px;
}

.current-price {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--yellow-bright);
    text-shadow: 0 0 40px rgba(252, 211, 77, 0.6);
}

.guarantees {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guarantees p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #0F172A;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    .section-title {
        font-size: 2.2rem;
    }

    .modules-info {
        grid-template-columns: 1fr;
    }

    .price {
        font-size: 2.8rem;
    }

    .current-price {
        font-size: 3.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 600px) {
    .hero-image {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .price-badge {
        padding: 25px 30px;
    }

    .price {
        font-size: 2.5rem;
    }

    .current-price {
        font-size: 2.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .module-card {
        padding: 30px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

