:root {
    --bg-color: #06060c;
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    --primary: #6d28d9;
    --primary-glow: #8b5cf6;
    --accent: #06b6d4;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

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

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

/* Background Gradients */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: pulse 8s infinite alternate ease-in-out;
}

.bg-glow-1 {
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.bg-glow-2 {
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation-delay: -4s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.5; }
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 5%;
    min-height: 70vh;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0 auto 1.5rem auto;
    backdrop-filter: blur(10px);
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title span {
    background: linear-gradient(90deg, var(--primary-glow), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px -10px var(--primary-glow);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.btn-primary:hover .btn-glow {
    transform: translate(-50%, -50%) scale(1);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-large {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.3rem;
}

/* Hero Visual Placeholder */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.video-mockup {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05);
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.play-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

/* Features */
.features {
    padding: 6rem 10%;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-glow);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Pricing */
.pricing {
    padding: 4rem 10% 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.pricing-info {
    flex: 1;
    max-width: 500px;
}

.pricing-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.info-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: bold;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.5));
    border: 1px solid var(--accent);
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-header-new {
    margin-bottom: 1.5rem;
}

.pricing-header-new h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
}

.highlight-viral {
    font-size: 2.2rem !important;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.pricing-divider {
    width: 60%;
    height: 2px;
    background: var(--accent);
    margin: 1.5rem auto;
}

.price-container {
    margin-bottom: 2rem;
}

.price-old {
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price-old span {
    text-decoration: line-through;
    opacity: 0.7;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.installments {
    font-size: 2.5rem;
    font-weight: 800;
    margin-right: 0.5rem;
}

.currency {
    font-size: 2.5rem;
    font-weight: 800;
    margin-right: 0.2rem;
}

.value {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.cents {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-cash {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.price-cash strong {
    color: #fff;
}

.guarantee-container {
    margin-top: 1.5rem;
}

.guarantee-bold {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.guarantee-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 80%;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    border-top: 1px solid var(--card-border);
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    .title { font-size: 2.5rem; }
    
    .pricing {
        flex-direction: column;
        gap: 3rem;
    }
    .pricing-info {
        text-align: center;
    }
    .pricing-features li {
        text-align: left;
        justify-content: flex-start;
        max-width: 350px;
        margin: 0 auto 1.2rem auto;
    }
}
