/* --- Global Styles & Variables --- */
:root {
    --color-background: #000000;
    --color-dark-grey: #121212;
    --color-card-dark: #1a1a1a;
    --color-text-primary: #ffffff;
    --color-text-secondary: #cccccc;
    --color-red: #ff0000;
    --color-dark-red: #8B0000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--color-background); color: var(--color-text-primary); overflow-x: hidden; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 60px 15px; }
img { max-width: 100%; display: block; }
.cta-button { display: inline-block; background: var(--color-red); color: var(--color-text-primary); padding: 16px 32px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; transition: transform 0.2s ease-in-out, box-shadow 0.2s; border: none; box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); }
.cta-button:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 0, 0, 0.8); }
h1, h2, h3 { line-height: 1.3; }
h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h2 { font-size: clamp(1.2rem, 3vw, 1.5rem); color: var(--color-red); margin-bottom: 10px; font-weight: 500; }
h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 600; }

/* --- Sections Styling --- */
.hero-section { text-align: center; padding: 40px 0; }
.hero-section .container { background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/images/transferir2.png'); background-size: cover; background-position: center; border-radius: 12px; padding: 40px 25px; }
.hero-section h1 { max-width: 800px; margin: 0 auto 30px auto; }

.hero-alert { background-color: var(--color-card-dark); padding: 15px; border-radius: 8px; border: 1px solid var(--color-red); max-width: 700px; margin: 25px auto; text-align: center; }
.hero-alert p { font-weight: 500; }

.content-to-reveal { opacity: 0; visibility: hidden; max-height: 0; overflow: hidden; transition: opacity 0.8s ease-in-out, max-height 0.8s ease-in-out; }

.video-container { position: relative; max-width: 700px; margin: 0 auto 30px; border-radius: 10px; overflow: hidden; border: 2px solid var(--color-card-dark); background-color: #000; }
.video-container video { width: 100%; height: auto; display: block; }
#video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); display: flex; justify-content: center; align-items: center; cursor: pointer; transition: opacity 0.3s ease; opacity: 1; z-index: 10; }
#video-overlay .overlay-content { text-align: center; color: white; padding: 20px; }
#video-overlay p { font-size: 1.2rem; font-weight: 500; }
#video-overlay #overlay-main-text { font-weight: 600; }
#video-overlay #overlay-sub-text { font-size: 1rem; margin-top: 5px; }
#video-overlay svg { margin: 10px 0; }
#video-overlay.hidden { opacity: 0; pointer-events: none; }

#fake-viewer-count { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 25px; margin-bottom: 10px; color: var(--color-text-secondary); font-size: 0.9rem; font-weight: 500; }
.live-dot { width: 10px; height: 10px; background-color: var(--color-red); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 5px var(--color-red), 0 0 10px var(--color-red); }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); } }

.imagine-section { text-align: center; }
.imagine-section ul { list-style: none; display: inline-block; text-align: left; margin-top: 20px; }
.imagine-section ul li { margin-bottom: 15px; font-size: 1.1rem; padding-left: 35px; background: url('assets/icons/checkmark-red.svg') no-repeat left center; background-size: 25px; }
.project-intro-section { text-align: center; }
.project-intro-section p { font-size: clamp(1.4rem, 4vw, 2rem); max-width: 700px; margin: 0 auto; }
.modules-section .container { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.module-card { padding: 30px; border-radius: 10px; }
.module-card.red { background-color: var(--color-red); color: #fff; }
.module-card.dark-red { background-color: var(--color-dark-red); color: #fff; }
.module-card span { font-size: 2rem; font-weight: 700; }
.module-card h3 { font-size: 1.6rem; margin: 10px 0; }
.game-changer-section { background-color: var(--color-dark-grey); }
.game-changer-section h2 { text-align: center; font-size: clamp(1.6rem, 5vw, 2.5rem); margin-bottom: 40px; }
.benefits-grid { display: grid; gap: 15px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.benefit-card { background-color: var(--color-card-dark); padding: 25px; border-radius: 10px; }
.benefit-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.benefit-card p { color: var(--color-text-secondary); }
.offer-section { text-align: center; }
.price-box { background-color: var(--color-card-dark); color: #fff; padding: 30px; border-radius: 10px; max-width: 400px; margin: 0 auto; border: 2px solid var(--color-red); }
.original-price { text-decoration: line-through; opacity: 0.7; }
.installments strong { font-size: 2.5rem; color: var(--color-red); }
.cta-button-offer { display: block; background-color: var(--color-red); color: #fff; width: 100%; text-align: center; padding: 18px; margin: 20px 0; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 1.2rem; }
.payment-methods { margin: 20px auto 0; }
.author-bio-section { text-align: center; }
.author-photo { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; margin: 0 auto 30px; border: 4px solid var(--color-red); }
.bio-text { text-align: left; max-width: 700px; margin: 20px auto 30px; }
.bio-text p { margin-bottom: 15px; }

/* --- NOTIFICAÇÃO DE COMPRA FAKE --- */
.sales-popup { position: fixed; bottom: 20px; left: 20px; background-color: var(--color-card-dark); color: var(--color-text-primary); padding: 15px 20px; border-radius: 8px; border-left: 4px solid var(--color-red); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); z-index: 1000; opacity: 0; transform: translateY(100px); visibility: hidden; pointer-events: none; transition: transform 0.5s ease-out, opacity 0.5s ease-out, visibility 0.5s; }
.sales-popup.show { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.popup-content p { margin: 0; font-size: 0.9rem; line-height: 1.4; }

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
    .container { padding: 40px 15px; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.1rem; }
    h3 { font-size: 1.4rem; }
    p, li { font-size: 0.95rem; }
    .hero-section h1 { margin-bottom: 20px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .imagine-section ul { text-align: center; }
    .price-box { padding: 20px; }
    .installments strong { font-size: 2rem; }
    .sales-popup { left: 10px; right: 10px; bottom: 10px; } /* Ajuste para celular */
}