:root {
    --primary: #ff3e3e; 
    --bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text: #ffffff;
    --text-dim: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    text-align: center; /* CENTRALIZAÇÃO TOTAL */
}

/* HEADER */
header { padding: 3rem 1rem; }
.logo { font-weight: 900; font-size: 2.2rem; display: inline-block; animation: float 4s ease-in-out infinite; }
.logo span { color: var(--primary); text-shadow: 0 0 15px rgba(255, 62, 62, 0.4); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* HERO E INDICADORES */
main { padding: 0 1rem; display: flex; flex-direction: column; align-items: center; }
.hero { max-width: 900px; width: 100%; margin-bottom: 5rem; }

h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.highlight { color: var(--primary); }

.step-indicator {
    background: rgba(255, 62, 62, 0.1);
    color: var(--primary);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid var(--primary);
    text-transform: uppercase;
}

/* PLAYER */
.video-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 3rem auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    cursor: pointer;
}

#vsl-video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10; transition: 0.4s; }
.video-overlay.hide { opacity: 0; pointer-events: none; }
.play-circle { width: 80px; height: 80px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; box-shadow: 0 0 30px var(--primary); }
.play-triangle { width: 0; height: 0; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-left: 25px solid white; margin-left: 5px; }
.custom-progress { position: absolute; bottom: 0; left: 0; width: 100%; height: 6px; background: rgba(255,255,255,0.1); }
.progress-fill { height: 100%; width: 0%; background: var(--primary); }

/* INDICADOR DE SCROLL */
.scroll-indicator { margin-top: 2rem; color: var(--text-dim); animation: bounce 2s infinite; }
.arrow-down { width: 2px; height: 40px; background: var(--primary); margin: 10px auto; position: relative; }
.arrow-down::after { content: ''; position: absolute; bottom: 0; left: -4px; border: 5px solid transparent; border-top-color: var(--primary); }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* GRID */
.content-section { width: 100%; max-width: 1100px; margin-bottom: 6rem; }
.section-title { font-size: 1.8rem; margin-bottom: 3rem; text-transform: uppercase; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; width: 100%; }
.feature-card { background: var(--card-bg); padding: 2.5rem; border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.05); transition: 0.4s; text-align: center; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

/* OFERTA */
.offer-section { width: 100%; padding: 5rem 1rem; background: linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%); display: flex; flex-direction: column; align-items: center; }
.price-container { background: #000; padding: 4rem 2rem; border-radius: 40px; border: 2px solid var(--primary); max-width: 500px; width: 100%; position: relative; }
.discount-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); padding: 8px 24px; border-radius: 50px; font-weight: 900; font-size: 0.8rem; }
.main-price { font-size: 5rem; font-weight: 900; margin: 1rem 0; }
.currency { font-size: 1.8rem; color: var(--primary); vertical-align: middle; }
.cta-button { display: block; background: var(--primary); color: white; padding: 1.5rem; border-radius: 100px; font-weight: 900; text-decoration: none; animation: pulse 2s infinite; text-transform: uppercase; margin-top: 2rem; }

@keyframes pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 62, 62, 0.7); } 70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 62, 62, 0); } 100% { transform: scale(1); } }

/* NOTIFICAÇÃO */
#notification-box { position: fixed; top: 20px; right: 20px; background: rgba(15, 15, 15, 0.9); backdrop-filter: blur(10px); padding: 15px 20px; border-radius: 15px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,0.1); z-index: 9999; transition: 0.5s; }
#notification-box.hidden { opacity: 0; transform: translateX(100px); }
.notif-icon { background: var(--primary); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* FLOATING */
#mobile-floating-btn { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; background: var(--primary); color: white; padding: 1.1rem; border-radius: 50px; font-weight: 900; z-index: 9998; display: none; text-decoration: none; }
#mobile-floating-btn.show { display: block; }

footer { padding: 4rem; color: #333; font-size: 0.8rem; }