:root {
    --bg-color: #050505;
    --card-bg: #0a0a0a;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --primary: #00f3ff;
    --secondary: #bd00ff;
    --accent: #ff0055;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 243, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px var(--primary));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--primary));
    }

    100% {
        filter: drop-shadow(0 0 5px var(--primary));
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at top right, rgba(189, 0, 255, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 243, 255, 0.1), transparent 40%);
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text .badge {
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--primary);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.price-tag {
    margin-bottom: 30px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
}

.new-price {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

.big-price {
    font-size: 3rem;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: transform 0.3s;
    margin-bottom: 15px;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
}

.guarantee {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Book Mockup Placeholder */
.book-mockup {
    width: 300px;
    height: 450px;
    background: #111;
    border-radius: 10px;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    margin: 0 auto;
    transform: rotateY(-15deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--primary);
    height: 90%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a, #000);
}

.book-cover h2 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
}

.chip-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 10px var(--primary));
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.scroll-down .arrow {
    font-size: 1.5rem;
    margin-top: 5px;
    animation: float 2s infinite;
}

/* Benefits */
.benefits {
    padding: 100px 0;
    background: #080808;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Audience */
.audience {
    padding: 80px 0;
}

.audience-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.audience-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: var(--glass);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.check {
    color: var(--primary);
    margin-right: 15px;
    font-weight: bold;
}

/* Bonus */
.bonus {
    padding: 80px 0;
    background: linear-gradient(180deg, #050505, #11001c);
}

.bonus-header {
    text-align: center;
    margin-bottom: 50px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--secondary);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    box-shadow: 0 0 50px rgba(189, 0, 255, 0.2);
}

.bonus-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.bonus-price {
    margin-top: 20px;
    font-size: 1.2rem;
}

.strike {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 15px;
}

.free {
    color: #0f0;
    font-weight: bold;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    /* Align items vertically */
}

/* Base Plan Card Styles */
.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    width: 350px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Complete Plan Specific Styles (Highlight) */
.plan-card.complete {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    /* Make it slightly larger */
    background: linear-gradient(180deg, #0a0a0a, #0d1f24);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.plan-price {
    margin: 30px 0;
}

.plan-price .amount {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    font-family: var(--font-heading);
}

.plan-price.complete .amount {
    color: var(--primary);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.btn-plan {
    display: block;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.basic-btn {
    border: 1px solid var(--text-muted);
    color: var(--text-main);
}

.complete-btn {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.complete-btn:hover {
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
}

.scarcity {
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 15px;
    font-weight: bold;
}

/* FAQ */
.faq {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.02);
}

.accordion-content p {
    padding-bottom: 20px;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
}

footer .links {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .book-mockup {
        width: 200px;
        height: 300px;
        margin-top: 40px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .plan-card.complete {
        transform: scale(1);
        order: -1;
        /* Show complete plan first on mobile */
    }
}

/* ============================= */
/* ===== O PREÇO DE NÃO AGIR ==== */
/* ============================= */

.pain-points {
    padding: 100px 0;
    text-align: center;
}

.pain-highlight-box {
    max-width: 1000px;
    margin: 0 auto;
}

.pain-intro {
    max-width: 750px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.pain-card {
    background: var(--card-bg);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.pain-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* BOTÃO CENTRALIZADO */
.pain-cta-container {
    display: flex;
    justify-content: center;
}

.pain-cta-container .cta-button {
    margin-top: 10px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-grid {
    justify-content: center;
}

.plan-card.complete {
    transform: scale(1.08);
    max-width: 420px;
}

.hero-text .subtitle {
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-text .subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 320px;
        margin: 0 auto 25px auto;
    }
}

.book-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; /* Remove qualquer fundo antigo */
}

.ebook-image {
    max-width: 480px;  
    width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.45));
}

.book-mockup{
    width: 100%;
    max-width: 520px;
}

.book-mockup::before { content: ""; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0, 102, 255, 0.25), transparent 70%); z-index: -1; border-radius: 50%; }

.plan-price .from {
    display: block;
    font-size: 1rem;
    color: #aaa;
    text-decoration: line-through;
    margin-bottom: 10px;
    opacity: 0.8;
}

.plan-price .current {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-price .label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #00f2ff;
    margin-bottom: 5px;
}

.price-line {
    display: flex;
    align-items: flex-start;
}

.plan-price .currency {
    font-size: 1.2rem;
    margin-right: 5px;
}

.plan-price .amount {
    font-size: 4rem;
    font-weight: 700;
}

.plan-price .cents {
    font-size: 1.5rem;
    margin-top: 10px;
}
