:root {
    --bg-dark: #09090b;
    --card-bg: rgba(24, 24, 27, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    /* Venda direta colors */
    --accent-blue: #10b981;
    --gradient-text: linear-gradient(90deg, #f59e0b, #fbbf24); /* Efeito Ouro para Lucro */
    --btn-gradient: linear-gradient(90deg, #10b981 0%, #059669 100%);
    --btn-hover: linear-gradient(90deg, #34d399 0%, #10b981 100%);
}

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

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

h1, h2, h3, h4, .logo, .highlight-price { font-family: 'Outfit', sans-serif; }

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Attention Badge */
.attention-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    margin-bottom: 20px;
}

/* Call to Action Buttons */
.btn-primary { 
    background: var(--btn-gradient); 
    color: #fff; 
    padding: 10px 24px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 800; 
    display: inline-block; 
    border: none; 
    cursor: pointer; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.btn-primary:hover { 
    background: var(--btn-hover);
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4); 
}
.btn-large {
    font-size: 1.5rem;
    padding: 20px 50px;
}
.pulse-btn {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ---- HERO SCROLL VIDEO SECTION ---- */
.hero-scroll-container {
    position: relative;
    height: 400vh;
    width: 100%;
}
.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
}

/* Very Dark Gradient Overlay */
.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(9,9,11,0.6) 0%, rgba(9,9,11,1) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #e2e8f0;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.secure-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Flavors Section */
.flavors, .testimonials, .offer-section { position: relative; z-index: 5; background-color: var(--bg-dark); }
.flavors { padding: 100px 5%; }
.section-title { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto;}
.section-title h2 { font-size: 2.8rem; margin-bottom: 10px; }
.section-title p { color: var(--text-secondary); font-size: 1.15rem; line-height: 1.6;}

.cards-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.card { overflow: hidden; transition: transform 0.4s; }
.card:hover { transform: translateY(-10px); border-color: rgba(16, 185, 129, 0.4); }
.card-image-wrapper { position: relative; width: 100%; height: 280px; overflow: hidden; }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-image-wrapper img { transform: scale(1.1); }
.badge { position: absolute; top: 20px; right: 20px; background: #fbbf24; color: #000; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; }
.badge.premium { background: #f43f5e; color: #fff;}
.card-content { padding: 32px; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.card-content p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 10px;}

.more-flavors-note {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 20px;
    border: 1px dashed rgba(16, 185, 129, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.more-flavors-note h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.more-flavors-note p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials { padding: 60px 5% 100px; }
.marquee-container { overflow: hidden; width: 100%; max-width: 1200px; margin: 0 auto 60px auto; position: relative; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.marquee-content { display: flex; gap: 20px; width: max-content; animation: marquee-scroll 20s linear infinite; }
.marquee-content:hover { animation-play-state: paused; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 10px)); } }
.testimonial-print { width: 280px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.05); transition: transform 0.4s ease; flex-shrink: 0; cursor: pointer; }
.testimonial-print:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(245, 158, 11, 0.4); }
.testimonial-print img { width: 100%; height: auto; display: block; object-fit: cover; }
.testimonial-print:hover { transform: translateY(-5px); border-color: rgba(245, 158, 11, 0.4); }
.testimonial-print img { width: 100%; height: auto; display: block; object-fit: cover; }
.testimonial-card { padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.testimonial-header { display: flex; align-items: center; gap: 16px; }
.avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.avatar-info h4 { font-size: 1.1rem; margin-bottom: 2px; }
.stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }
.quote { font-size: 1rem; color: #cbd5e1; font-style: italic; line-height: 1.7; }

/* Premium Checkout Section */
.offer-section { 
    padding: 60px 5% 120px; 
    background: linear-gradient(rgba(9, 9, 11, 0.6), rgba(9, 9, 11, 0.95)), url('assets/bg_pagamentos.jpg') center/cover no-repeat; 
}
.premium-checkout-wrap { max-width: 1000px; margin: 0 auto; }
.checkout-header-banner { text-align: center; margin-bottom: 40px; }
.checkout-header-banner h2 { font-size: clamp(2.3rem, 5vw, 3.2rem); margin-bottom: 10px; color: #f8fafc; }
.checkout-header-banner p { font-size: 1.15rem; color: #cbd5e1; }
/* Elegant Premium Checkout Layout */
.elegant-checkout-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05); text-align: left; overflow: hidden; margin-bottom: 20px; }
.deliverables-panel { padding: 50px 45px; background: rgba(0, 0, 0, 0.2); border-right: 1px solid rgba(255, 255, 255, 0.05); }
.deliverables-panel h3 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; color: #f8fafc; font-weight: 300; letter-spacing: 1px; margin-bottom: 30px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.checklist li { display: flex; align-items: flex-start; gap: 15px; font-size: 1.1rem; font-weight: 300; color: #cbd5e1; line-height: 1.6; }
.checklist li strong { color: #f8fafc; font-weight: 600; }
.checklist svg { width: 22px; height: 22px; flex-shrink: 0; stroke: #fbbf24; stroke-width: 2px; margin-top: 3px; }
.highlight-bonus { margin-top: 15px; padding: 20px; background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.02) 100%); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 16px; display: flex; flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }
.bonus-badge { background: linear-gradient(90deg, #f59e0b, #fbbf24); color: #000; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1.5px; }
.guarantee-box { margin-top: 40px; display: flex; align-items: center; gap: 20px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.guarantee-icon { font-size: 2.2rem; filter: grayscale(20%) sepia(20%) hue-rotate(15deg); }
.guarantee-text h4 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 500; color: #fff; margin-bottom: 5px; }
.guarantee-text p { font-size: 0.95rem; color: #94a3b8; font-weight: 300; }

.pricing-panel { padding: 50px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.urgency-pulse { display: inline-block; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #fca5a5; font-family: 'Inter', sans-serif; font-weight: 400; padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; margin-bottom: 35px; animation: flash 3s infinite; }
.price-stack { margin-bottom: 40px; }
.old-price { font-size: 1.1rem; color: #64748b; font-weight: 300; margin-bottom: 8px; }
.strike { text-decoration: line-through; opacity: 0.7; }
.currency-label { display: block; font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 1.2rem; color: #94a3b8; margin-bottom: 5px; }
.giant-price { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 4.5rem; background: linear-gradient(90deg, #f59e0b, #fbbf24); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; display: block; margin-bottom: 12px; }
.payment-note { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 400; color: #f8fafc; opacity: 0.6; }

.checkout-actions { display: flex; flex-direction: column; gap: 15px; width: 100%; margin-bottom: 25px; align-items: stretch; }
.btn-checkout { flex: 1.2; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #10b981 0%, #059669 100%); border: 1px solid rgba(255,255,255,0.1); padding: 20px 15px; border-radius: 16px; text-decoration: none; color: #fff; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255,255,255,0.2); overflow: hidden; }
.btn-text { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.25rem; letter-spacing: 0.5px; display: block; line-height: 1.1; margin-bottom: 0px; z-index: 2; text-align: center;}
.btn-checkout:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255,255,255,0.3); }

.btn-whatsapp { flex: 0.8; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(37, 211, 102, 0.3); border-radius: 16px; text-decoration: none; color: #cbd5e1; transition: all 0.3s; text-align: left; }
.btn-whatsapp span { font-size: 0.8rem; line-height: 1.3; }
.btn-whatsapp strong { color: #25D366; font-weight: 500; font-size: 0.85rem;}
.btn-whatsapp:hover { background: rgba(37, 211, 102, 0.08); border-color: rgba(37, 211, 102, 0.6); transform: translateY(-3px); }

.secure-badges { display: flex; flex-direction: column; gap: 8px; color: #64748b; font-size: 0.85rem; }

/* Responsive adjustments for checkout */
@media (max-width: 850px) {
    .elegant-checkout-card { grid-template-columns: 1fr; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
    .deliverables-panel { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 35px 25px; }
    .pricing-panel { padding: 40px 25px; }
    .giant-price { font-size: 3.8rem; }
    .btn-text { font-size: 1.2rem; }
    .checkout-actions { flex-direction: column; }
    .btn-checkout, .btn-whatsapp { flex: 1; padding: 20px 15px;}
    
    .live-visitors-badge {
        top: 10px;
        right: 10px;
        left: auto;
        bottom: auto;
        transform: none;
        width: max-content;
        font-size: 0.70rem;
        padding: 5px 10px;
    }
}

/* Live Visitors Widget */
.live-visitors-badge { position: fixed; top: 15px; right: 15px; bottom: auto; left: auto; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); color: #f8fafc; padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; display: flex; align-items: center; gap: 6px; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.6); }
.live-dot { width: 6px; height: 6px; background: #10b981; border-radius: 50%; animation: flash 2s infinite; box-shadow: 0 0 8px #10b981; }
#visitor-count { font-weight: 800; color: #fbbf24; font-size: 0.85rem;}

/* Animations */
.bounce-in { animation: bounceIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.fade-in { opacity: 0; animation: fadeIn 1s ease 0.3s forwards; }
.fade-in-delay { opacity: 0; animation: fadeIn 1s ease 0.6s forwards; }
@keyframes bounceIn { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes flash { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

/* JS Scroll Reveal */
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 768px) {
    .offer-content h2 { font-size: 2.5rem; }
    .highlight-price { font-size: 3.5rem; }
    .glowing-border { padding: 40px 20px;}
    .btn-large { font-size: 1.2rem; padding: 15px 30px;}
}
