/* ============================================
   VELMO BLACK - CSS COMPLETO UNIFICADO
   Versão Final com Correções Aplicadas
   ============================================ */

:root {
    --black-absolute: #050505;
    --black-deep: #080808;
    --black-card: #0a0a0a;
    --black-surface: rgba(18, 18, 18, 0.9);
    --cyan-neon: #00F0FF;
    --cyan-dark: #008080;
    --cyan-glow: rgba(0, 240, 255, 0.3);
    --white-pure: #FFFFFF;
    --gray-light: #E0E0E0;
    --gray-medium: #999;
    --gray-dark: #666;
    --gold-urgency: #FFB800;
    --gold-dark: #FF8C00;
    --gold-glow: rgba(255, 184, 0, 0.4);
    --green-save: #4CAF50;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 240, 255, 0.15);
    --font-primary: 'Sora', 'Poppins', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--black-absolute); color: var(--gray-light); font-family: var(--font-primary); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.gradient-text {
    background: linear-gradient(135deg, #00F0FF 0%, #00A8B5 50%, #00F0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.section-tag {
    display: inline-block;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--cyan-neon);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.highlight { color: var(--cyan-neon); font-weight: 600; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); } 70% { box-shadow: 0 0 0 20px rgba(0, 240, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); } }
@keyframes sparkle { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

@keyframes neonDash { to { stroke-dashoffset: -600; } }
@keyframes neonDashReverse { to { stroke-dashoffset: 600; } }
.neon-dash { animation: neonDash 2s linear infinite; }
.neon-dash-fast { animation: neonDash 1.5s linear infinite; }
.neon-dash-reverse { animation: neonDashReverse 1.5s linear infinite; }

/* ========================================== */
/* HERO                                       */
/* ========================================== */
.hero-million {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--black-absolute);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#particleCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-glow { position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; animation: glowPulse 4s ease-in-out infinite; }
@keyframes glowPulse { 0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); } }
.hero-container { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; width: 90%; z-index: 10; gap: 60px; padding: 100px 0 60px; }
.hero-content { flex: 1; max-width: 600px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(0, 240, 255, 0.08); border: 1px solid var(--border-glow); border-radius: 50px; padding: 10px 24px; color: var(--cyan-neon); font-size: 14px; font-weight: 600; margin-bottom: 30px; backdrop-filter: blur(10px); animation: fadeInUp 0.8s ease-out; }
.badge-pulse { width: 8px; height: 8px; background: var(--cyan-neon); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; color: var(--white-pure); animation: fadeInUp 0.8s ease-out 0.2s both; }
.title-line { display: block; }
.hero-subtitle { font-size: 18px; color: var(--gray-medium); line-height: 1.6; margin-bottom: 30px; animation: fadeInUp 0.8s ease-out 0.4s both; }

/* ── hero-benefits: ícones sempre alinhados ── */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--white-pure);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.benefit-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, var(--cyan-neon), var(--cyan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--black-absolute);
    flex-shrink: 0;
    margin-top: 1px;
}

.hero-cta { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, #00F0FF 0%, #00C8D7 100%); color: var(--black-absolute); text-decoration: none; padding: 20px 48px; border-radius: 60px; font-size: 18px; font-weight: 800; letter-spacing: 1px; position: relative; overflow: hidden; transition: var(--transition-smooth); animation: fadeInUp 0.8s ease-out 0.8s both; box-shadow: 0 0 40px rgba(0, 240, 255, 0.3); }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 50px rgba(0, 240, 255, 0.5); }
.hero-cta .cta-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); animation: shine 2s infinite; }
@keyframes shine { 0% { left: -100%; } 100% { left: 100%; } }
.cta-arrow { font-size: 24px; animation: arrowBounce 1s ease-in-out infinite; }
@keyframes arrowBounce { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
.hero-guarantee { margin-top: 20px; color: var(--gray-dark); font-size: 13px; animation: fadeInUp 0.8s ease-out 1s both; }
.hero-product { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; min-height: 500px; animation: fadeInUp 0.8s ease-out 0.6s both; }
.product-3d-image { max-width: 100%; max-height: 500px; object-fit: contain; filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.4)); transition: transform 0.1s ease-out; transform-style: preserve-3d; will-change: transform; position: relative; z-index: 1; }
.product-3d-container { display: flex; align-items: center; justify-content: center; height: 500px; perspective: 1000px; position: relative; }
.product-3d-container::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: productGlow 3s ease-in-out infinite; pointer-events: none; z-index: 0; }
@keyframes productGlow { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; } }
.hero-product:hover .product-3d-image { filter: drop-shadow(0 0 60px rgba(0, 240, 255, 0.7)); transform: scale(1.08); transition: transform 0.4s ease, filter 0.4s ease; }
.floating-badge { position: absolute; background: rgba(0, 0, 0, 0.8); border: 1px solid var(--cyan-neon); border-radius: 50px; padding: 10px 20px; color: var(--cyan-neon); font-weight: 700; font-size: 14px; backdrop-filter: blur(10px); animation: float 3s ease-in-out infinite; box-shadow: 0 0 20px rgba(0, 240, 255, 0.2); z-index: 15; }
.floating-badge-1 { top: 10%; right: 5%; animation-delay: 0s; }
.floating-badge-2 { top: 50%; right: 2%; animation-delay: 1s; }
.floating-badge-3 { bottom: 15%; right: 8%; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ── scroll-indicator: sem sobreposição, sem vazamento mobile ── */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
    font-size: 12px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.2s both;
    pointer-events: none;
    width: max-content;
    max-width: calc(100vw - 40px);
    white-space: nowrap;
}
.scroll-mouse { width: 26px; height: 40px; border: 2px solid #444; border-radius: 20px; position: relative; }
.scroll-wheel { width: 4px; height: 8px; background: var(--cyan-neon); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scroll 2s ease-in-out infinite; }
@keyframes scroll { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 24px; } }

/* ========================================== */
/* CÁPSULAS                                   */
/* ========================================== */
.capsules-section-premium { position: relative; width: 100%; background: linear-gradient(180deg, #050505 0%, #080808 50%, #050505 100%); padding: 100px 0; overflow: hidden; }
.capsules-glow { position: absolute; border-radius: 50%; filter: blur(200px); opacity: 0.06; pointer-events: none; z-index: 0; }
.capsules-glow-left { width: 600px; height: 600px; background: var(--cyan-neon); top: 10%; left: -250px; }
.capsules-glow-right { width: 500px; height: 500px; background: var(--cyan-dark); bottom: 5%; right: -200px; }
.capsules-container { max-width: 1300px; width: 90%; margin: 0 auto; position: relative; z-index: 1; }
.capsules-header { text-align: center; margin-bottom: 60px; }
.capsules-title { font-size: 42px; font-weight: 800; color: var(--white-pure); margin: 16px 0; line-height: 1.2; }
.capsules-subtitle { font-size: 18px; color: var(--gray-medium); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.capsules-subtitle strong { color: var(--cyan-neon); }
.capsules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: stretch; }
.capsule-card { position: relative; border-radius: 24px; transition: var(--transition-smooth); }
.capsule-card:hover { transform: translateY(-8px); }
.capsule-card-inner { background: var(--black-surface); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 35px 28px; height: 100%; display: flex; flex-direction: column; transition: var(--transition-smooth); }
.capsule-card:hover .capsule-card-inner { border-color: var(--border-glow); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.08); }
.capsule-card-star { position: relative; z-index: 5; margin-top: -15px; }
.capsule-card-star .capsule-card-inner { background: rgba(0, 240, 255, 0.04); border: 2px solid rgba(0, 240, 255, 0.25); box-shadow: 0 0 40px rgba(0, 240, 255, 0.1); }
.capsule-star-ribbon { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); z-index: 10; background: linear-gradient(135deg, var(--gold-urgency), var(--gold-dark)); border-radius: 50px; padding: 10px 28px; display: flex; align-items: center; gap: 8px; color: var(--black-absolute); font-weight: 800; font-size: 14px; letter-spacing: 1px; box-shadow: 0 8px 30px var(--gold-glow); animation: ribbonFloat 3s ease-in-out infinite; }
@keyframes ribbonFloat { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }
.ribbon-icon { font-size: 18px; }
.capsule-star-outer-glow { position: absolute; top: -25px; left: -25px; right: -25px; bottom: -25px; border-radius: 35px; background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.08) 0%, transparent 70%); pointer-events: none; z-index: -1; }
.capsule-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.capsule-badge-icon { font-size: 18px; }
.capsule-badge-text { color: #888; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.capsule-name { font-size: 26px; font-weight: 800; color: var(--white-pure); margin: 0 0 8px 0; }
.capsule-desc { color: #777; font-size: 14px; line-height: 1.5; margin: 0 0 20px 0; }
.capsule-product-wrapper { position: relative; width: 200px; height: 200px; margin: 0 auto 20px; }
.capsule-product-star { width: 220px; height: 220px; }
.capsule-neon-ring { position: absolute; top: -18px; left: -18px; width: calc(100% + 36px); height: calc(100% + 36px); z-index: 1; pointer-events: none; }
.capsule-neon-ring svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6)); }
.capsule-neon-double svg { filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.7)); }
.capsule-aura { position: absolute; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: auraBreathe 3s ease-in-out infinite; }
.capsule-aura-star { width: 180px; height: 180px; background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, rgba(255, 184, 0, 0.1) 40%, transparent 70%); }
@keyframes auraBreathe { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; } }
.capsule-image-container { position: relative; z-index: 2; width: 150px; height: 150px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.capsule-card-star .capsule-image-container { width: 170px; height: 170px; }
.capsule-image { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 0 15px var(--cyan-glow)); transition: var(--transition-smooth); }
.capsule-card:hover .capsule-image { transform: scale(1.15); filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.7)); }
.capsule-free-tag { position: absolute; bottom: -8px; right: -12px; background: linear-gradient(135deg, var(--cyan-neon), #00C8D7); color: var(--black-absolute); border-radius: 20px; padding: 5px 12px; font-size: 10px; font-weight: 800; letter-spacing: 0.5px; z-index: 5; box-shadow: 0 0 15px rgba(0, 240, 255, 0.5); white-space: nowrap; }
.capsule-features { list-style: none; padding: 0; margin: 0 0 20px 0; flex-grow: 1; }
.capsule-features li { padding: 8px 0; border-bottom: 1px solid var(--border-subtle); color: #BBB; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.capsule-features li:last-child { border-bottom: none; }
.feature-bonus-item { color: var(--gold-urgency) !important; font-weight: 600; }
.feature-bonus-item .feature-check { color: var(--gold-urgency) !important; }
.capsule-price-block { text-align: center; border-top: 1px solid var(--border-subtle); padding-top: 18px; margin-bottom: 18px; }
.capsule-old-price { color: var(--gray-dark); font-size: 13px; text-decoration: line-through; margin-bottom: 6px; }
.capsule-price-main { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 4px; }
.capsule-price-main .price-installments { color: #888; font-size: 13px; }
.capsule-price-main .price-symbol { color: var(--cyan-neon); font-size: 18px; font-weight: 700; }
.capsule-price-main .price-value { color: var(--cyan-neon); font-size: 44px; font-weight: 800; line-height: 1; }
.capsule-card-star .price-value { font-size: 52px; text-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.capsule-cash-price { color: #777; font-size: 12px; }
.capsule-savings { background: rgba(76, 175, 80, 0.1); border-radius: 8px; padding: 6px; margin-top: 8px; color: var(--green-save); font-weight: 700; font-size: 13px; }
.capsule-shipping { display: block; text-align: center; color: var(--green-save); font-size: 12px; margin-top: 10px; }

.plan-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 24px; border-radius: 50px; font-size: 16px; font-weight: 800; text-decoration: none; text-align: center; letter-spacing: 1px; transition: var(--transition-smooth); position: relative; overflow: hidden; }
.plan-cta-primary { background: linear-gradient(135deg, var(--cyan-neon), #00C8D7); color: var(--black-absolute); box-shadow: 0 0 30px rgba(0, 240, 255, 0.4); animation: ctaGlowPulse 2s ease-in-out infinite; }
@keyframes ctaGlowPulse { 0%, 100% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.4); } 50% { box-shadow: 0 0 60px rgba(0, 240, 255, 0.8); } }
.plan-cta-secondary { background: transparent; border: 2px solid rgba(0, 240, 255, 0.4); color: var(--cyan-neon); }
.plan-cta-secondary:hover { background: rgba(0, 240, 255, 0.1); border-color: var(--cyan-neon); }
.plan-cta:hover { transform: translateY(-2px); }
.cta-sparkle { animation: sparkle 1s ease-in-out infinite; }

/* ========================================== */
/* COMBOS / TRATAMENTOS                       */
/* ========================================== */
.combos-section { position: relative; padding: 100px 20px; background: #080c14; overflow: hidden; }
.combos-bg { position: absolute; inset: 0; pointer-events: none; }
.combos-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.07; }
.combos-glow-left { top: -100px; left: -200px; background: #00f0ff; }
.combos-glow-right { bottom: -100px; right: -200px; background: #0080ff; }
.combos-container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.combos-header { text-align: center; margin-bottom: 64px; }
.combos-tag { display: inline-block; padding: 6px 18px; border-radius: 50px; background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.2); color: #00f0ff; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.combos-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.15; color: #fff; margin-bottom: 16px; }
.combos-gradient { background: linear-gradient(135deg, #00f0ff, #0080ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.combos-subtitle { color: #a0aec0; font-size: 1.05rem; max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.combos-trust { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #a0aec0; font-weight: 500; }
.trust-icon { font-size: 1rem; }
.combos-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; margin-bottom: 56px; }
.combo-card { position: relative; background: #0d1421; border: 1px solid rgba(0, 240, 255, 0.12); border-radius: 20px; padding: 32px 28px 28px; display: flex; flex-direction: column; gap: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; overflow: hidden; }
.combo-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5); }
.combo-popular { border-color: rgba(0, 240, 255, 0.4); background: linear-gradient(160deg, #0d1e35 0%, #091520 100%); box-shadow: 0 0 48px rgba(0, 240, 255, 0.12); transform: scale(1.03); z-index: 2; padding-top: 44px; }
.combo-popular:hover { transform: scale(1.03) translateY(-6px); box-shadow: 0 0 80px rgba(0, 240, 255, 0.22), 0 24px 64px rgba(0, 0, 0, 0.5); }
.combo-popular-ribbon { position: absolute; top: 0; left: 0; right: 0; background: linear-gradient(90deg, #00f0ff, #0080ff); color: #000; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; padding: 8px 0; border-radius: 20px 20px 0 0; }
.combo-premium-plan { border-color: rgba(255, 215, 0, 0.2); background: linear-gradient(160deg, #1a1500 0%, #0d0e14 100%); }
.combo-premium-plan:hover { border-color: rgba(255, 215, 0, 0.4); box-shadow: 0 0 48px rgba(255, 215, 0, 0.1), 0 24px 64px rgba(0, 0, 0, 0.5); }
.combo-badge-wrap { display: flex; justify-content: center; }
.combo-badge { display: inline-block; padding: 5px 16px; border-radius: 50px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-starter { background: rgba(100, 116, 139, 0.15); border: 1px solid rgba(100, 116, 139, 0.3); color: #94a3b8; }
.badge-popular { background: rgba(0, 240, 255, 0.12); border: 1px solid rgba(0, 240, 255, 0.35); color: #00f0ff; }
.badge-premium { background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3); color: #ffd700; }
.combo-header-card { text-align: center; }
.combo-goal { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #a0aec0; margin-bottom: 8px; }
.combo-popular .combo-goal { color: #00f0ff; }
.combo-premium-plan .combo-goal { color: #ffd700; }
.combo-name { font-size: 1.4rem; font-weight: 400; color: #cbd5e1; line-height: 1.3; margin-bottom: 20px; }
.combo-name strong { font-size: 1.9rem; font-weight: 900; color: #fff; display: block; }
.combo-kit { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.combo-pots-visual { display: flex; align-items: center; justify-content: center; gap: 12px; }
.pot-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pot-img { width: 60px; height: auto; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5)); transition: transform 0.3s ease; }
.combo-card:hover .pot-img { transform: translateY(-4px) scale(1.05); }
.pot-free .pot-img { filter: drop-shadow(0 6px 16px rgba(0,240,255,0.25)); }
.combo-premium-plan .pot-free .pot-img { filter: drop-shadow(0 6px 16px rgba(255,215,0,0.25)); }
.pot-label { font-size: 0.68rem; font-weight: 700; color: #a0aec0; text-transform: uppercase; letter-spacing: 0.08em; }
.pot-label-free { color: #00f0ff; background: rgba(0,240,255,0.1); border: 1px solid rgba(0,240,255,0.3); padding: 2px 8px; border-radius: 50px; }
.combo-premium-plan .pot-label-free { color: #ffd700; background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.3); }
.pot-plus { font-size: 1.4rem; font-weight: 900; color: #4a5568; line-height: 1; padding-bottom: 20px; }
.combo-kit-desc { font-size: 0.8rem; color: #a0aec0; text-align: center; }
.combo-kit-desc strong { color: #fff; }
.combo-offer { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 20px; }
.combo-price-block { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.combo-de { font-size: 0.82rem; color: #64748b; text-decoration: line-through; }
.combo-por-wrap { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.combo-por-label { font-size: 0.72rem; color: #a0aec0; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.combo-price { font-size: 2.6rem; font-weight: 900; color: #fff; line-height: 1; }
.combo-cents { font-size: 1.2rem; font-weight: 600; vertical-align: super; }
.combo-parcelas { font-size: 0.8rem; color: #a0aec0; margin-top: 4px; }
.combo-parcelas strong { color: #fff; }
.combo-economy { font-size: 0.78rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; margin-top: 8px; background: rgba(74, 222, 128, 0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.combo-economy-hot { background: rgba(0, 240, 255, 0.1); color: #00f0ff; border-color: rgba(0,240,255,0.25); }
.combo-economy-gold { background: rgba(255, 215, 0, 0.1); color: #ffd700; border-color: rgba(255,215,0,0.25); }
.combo-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.combo-benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: #cbd5e1; line-height: 1.5; }
.cb-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.combo-result-bar { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 10px 14px; font-size: 0.8rem; }
.result-label { color: #64748b; }
.result-value { font-weight: 700; color: #4ade80; }
.combo-result-bar-hot { border-color: rgba(0,240,255,0.15); }
.combo-result-bar-hot .result-value { color: #00f0ff; }
.combo-result-bar-gold { border-color: rgba(255,215,0,0.15); }
.combo-result-bar-gold .result-value { color: #ffd700; }
.combo-cta { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 24px; border-radius: 50px; font-weight: 800; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; cursor: pointer; }
.combo-cta-secondary { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: #cbd5e1; }
.combo-cta-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: #fff; transform: translateY(-2px); }
.combo-cta-primary { background: linear-gradient(135deg, #00f0ff, #0080ff); color: #000; border: none; box-shadow: 0 8px 32px rgba(0,240,255,0.35); }
.combo-cta-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(0,240,255,0.5); }
.combo-cta-gold { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; border: none; box-shadow: 0 8px 32px rgba(255,215,0,0.25); }
.combo-cta-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(255,215,0,0.4); }
.combo-frete { text-align: center; font-size: 0.76rem; color: #64748b; }
.combos-guarantee { display: flex; align-items: flex-start; gap: 20px; background: rgba(74, 222, 128, 0.04); border: 1px solid rgba(74, 222, 128, 0.12); border-radius: 16px; padding: 28px 32px; margin-bottom: 24px; }
.guarantee-icon { font-size: 2.4rem; flex-shrink: 0; }
.guarantee-text h4 { font-size: 1.05rem; font-weight: 800; color: #4ade80; margin-bottom: 6px; }
.guarantee-text p { font-size: 0.9rem; color: #a0aec0; line-height: 1.7; }
.combos-urgency { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 24px; background: rgba(255, 107, 53, 0.06); border: 1px solid rgba(255, 107, 53, 0.2); border-radius: 50px; max-width: 560px; margin: 0 auto; }
.urgency-dot { width: 8px; height: 8px; background: #ff6b35; border-radius: 50%; flex-shrink: 0; animation: urgency-blink 1.2s ease-in-out infinite; }
@keyframes urgency-blink { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
.combos-urgency p { font-size: 0.85rem; color: #a0aec0; }
.combos-urgency strong { color: #ff8c00; }

/* ========================================== */
/* DEPOIMENTOS                                */
/* ========================================== */
.testimonials-premium { position: relative; width: 100%; background: linear-gradient(180deg, #0a0a0a 0%, #050505 30%, #050505 70%, #0a0a0a 100%); padding: 100px 0; overflow: hidden; }
.testimonials-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 30% 20%, rgba(0, 240, 255, 0.03) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(0, 128, 128, 0.03) 0%, transparent 50%); pointer-events: none; z-index: 0; }
.testimonials-container { max-width: 1300px; width: 90%; margin: 0 auto; position: relative; z-index: 1; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-title { font-size: 48px; font-weight: 800; color: var(--white-pure); margin: 16px 0; line-height: 1.2; }
.testimonials-subtitle { font-size: 18px; color: var(--gray-medium); max-width: 600px; margin: 0 auto 24px; line-height: 1.6; }
.rating-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(255, 184, 0, 0.1); border: 1px solid rgba(255, 184, 0, 0.2); border-radius: 50px; padding: 10px 24px; }
.rating-stars { display: flex; gap: 2px; }
.star { font-size: 20px; }
.star-filled { color: var(--gold-urgency); text-shadow: 0 0 8px var(--gold-glow); animation: starGlow 2s ease-in-out infinite; }
.star-half { color: var(--gold-urgency); opacity: 0.6; }
@keyframes starGlow { 0%, 100% { text-shadow: 0 0 8px var(--gold-glow); } 50% { text-shadow: 0 0 16px rgba(255, 184, 0, 1); } }
.rating-score { color: var(--gold-urgency); font-weight: 800; font-size: 18px; }
.rating-count { color: var(--gray-medium); font-size: 14px; }
.masonry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.masonry-card { position: relative; background: rgba(20, 20, 20, 0.8); backdrop-filter: blur(10px); border: 1px solid var(--border-subtle); border-radius: 20px; overflow: hidden; transition: var(--transition-smooth); }
.masonry-card:hover { transform: translateY(-5px); border-color: var(--border-glow); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1); }
.card-large { grid-column: span 2; grid-row: span 2; }
.ba-label { position: absolute; top: 16px; z-index: 10; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.ba-label-before { left: 16px; background: rgba(255, 255, 255, 0.1); color: #CCC; backdrop-filter: blur(5px); }
.ba-label-after { right: 16px; background: rgba(0, 240, 255, 0.2); color: var(--cyan-neon); backdrop-filter: blur(5px); }
.ba-image-container { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; cursor: col-resize; }
.ba-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-image-after { clip-path: inset(0 0 0 50%); }
.ba-divider { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; z-index: 5; transform: translateX(-50%); cursor: col-resize; }
.ba-divider-line { position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background: var(--cyan-neon); transform: translateX(-50%); box-shadow: 0 0 10px rgba(0, 240, 255, 0.8); }
.ba-divider-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: var(--cyan-neon); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(0, 240, 255, 0.6); }
.video-thumbnail { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; cursor: pointer; }
.video-thumb-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-thumbnail:hover .video-thumb-img { transform: scale(1.05); }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.play-circle { width: 60px; height: 60px; background: rgba(0, 240, 255, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px rgba(0, 240, 255, 0.5); animation: playPulse 2s ease-in-out infinite; }
@keyframes playPulse { 0%, 100% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.5); } 50% { box-shadow: 0 0 50px rgba(0, 240, 255, 0.9); } }
.play-text { color: white; font-weight: 600; font-size: 14px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.card-testimonial-content { padding: 20px; }
.testimonial-stars { margin-bottom: 10px; }
.testimonial-stars span { color: var(--gold-urgency); font-size: 16px; }
.testimonial-text { color: #CCC; font-size: 15px; line-height: 1.6; margin: 0 0 16px 0; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan-neon), var(--cyan-dark)); display: flex; align-items: center; justify-content: center; color: var(--black-absolute); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.author-info { display: flex; flex-direction: column; }
.author-name { color: var(--white-pure); font-weight: 600; font-size: 14px; }
.author-verification { color: var(--green-save); font-size: 12px; }
.reveal-image-container { position: relative; width: 100%; aspect-ratio: 1/1; overflow: hidden; }
.reveal-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.5s ease; }
.reveal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0, 240, 255, 0.3), transparent 60%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; opacity: 0; transition: opacity 0.4s ease; }
.reveal-image-container:hover .reveal-overlay { opacity: 1; }
.reveal-image-container:hover .reveal-image { transform: scale(1.05); filter: brightness(0.8); }
.reveal-text { color: white; font-weight: 800; font-size: 18px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.testimonials-cta { text-align: center; }
.cta-question { color: #CCC; font-size: 20px; margin-bottom: 24px; font-weight: 500; }

/* ========================================== */
/* CIÊNCIA                                    */
/* ========================================== */
.science-premium { position: relative; width: 100%; background: var(--black-absolute); padding: 100px 0; overflow: hidden; }
.science-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.science-particle { position: absolute; border-radius: 50%; background: var(--cyan-glow); animation: scienceFloat 6s ease-in-out infinite; }
@keyframes scienceFloat { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; } 25% { transform: translateY(-30px) translateX(15px); opacity: 0.6; } 50% { transform: translateY(-15px) translateX(-15px); opacity: 0.4; } 75% { transform: translateY(-40px) translateX(10px); opacity: 0.7; } }
.molecule-lines { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.science-container { max-width: 1300px; width: 90%; margin: 0 auto; position: relative; z-index: 1; }
.science-header { text-align: center; margin-bottom: 80px; }
.science-title { font-size: 48px; font-weight: 800; color: var(--white-pure); margin: 16px 0; line-height: 1.2; }
.science-subtitle { font-size: 18px; color: var(--gray-medium); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.ingredients-interactive { position: relative; width: 100%; max-width: 900px; min-height: 600px; margin: 0 auto 80px; }
.molecule-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 5; }
.core-circle { position: relative; width: 140px; height: 140px; display: flex; align-items: center; justify-content: center; }
.core-inner { position: relative; z-index: 2; width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 128, 128, 0.3)); border: 2px solid rgba(0, 240, 255, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; backdrop-filter: blur(10px); box-shadow: 0 0 40px rgba(0, 240, 255, 0.2); animation: corePulse 3s ease-in-out infinite; }
@keyframes corePulse { 0%, 100% { box-shadow: 0 0 40px rgba(0, 240, 255, 0.2); } 50% { box-shadow: 0 0 60px rgba(0, 240, 255, 0.4); } }
.core-text { color: var(--cyan-neon); font-weight: 800; font-size: 14px; letter-spacing: 1px; }
.core-sub { color: var(--gray-medium); font-size: 10px; text-align: center; }
.core-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(0, 240, 255, 0.2); animation: ringRotate 10s linear infinite; }
.core-ring-1 { width: 140px; height: 140px; animation-duration: 8s; }
.core-ring-2 { width: 170px; height: 170px; animation-duration: 12s; animation-direction: reverse; border-style: dashed; }
.core-ring-3 { width: 200px; height: 200px; animation-duration: 15s; border-color: rgba(0, 240, 255, 0.08); }
@keyframes ringRotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.ingredient-node { position: absolute; z-index: 3; cursor: pointer; transition: transform 0.3s ease; }
.ingredient-node:hover { transform: scale(1.05); z-index: 10; }
.ingredient-node:hover .node-content { border-color: rgba(0, 240, 255, 0.4); box-shadow: 0 0 30px rgba(0, 240, 255, 0.2); }
.node-content { background: rgba(15, 15, 15, 0.9); backdrop-filter: blur(15px); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 16px; display: flex; align-items: flex-start; gap: 12px; width: 240px; transition: var(--transition-smooth); }
.node-top-right { top: 5%; right: 8%; }
.node-top-left { top: 5%; left: 8%; }
.node-right { top: 45%; right: 0; }
.node-bottom-right { bottom: 5%; right: 8%; }
.node-bottom-left { bottom: 5%; left: 8%; }
.node-icon { position: relative; width: 50px; height: 50px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.node-canvas { position: absolute; top: 0; left: 0; }
.node-emoji { font-size: 28px; position: relative; z-index: 1; }
.node-name { color: var(--white-pure); font-size: 14px; font-weight: 700; margin: 0 0 4px 0; }
.node-desc { color: var(--gray-medium); font-size: 12px; line-height: 1.4; margin: 0 0 8px 0; }
.node-stat { display: flex; align-items: baseline; gap: 6px; }
.node-stat-value { color: var(--cyan-neon); font-weight: 800; font-size: 16px; }
.node-stat-label { color: var(--gray-dark); font-size: 11px; }

/* Timeline */
.transformation-timeline { margin-bottom: 80px; }
.timeline-title { text-align: center; font-size: 36px; font-weight: 800; color: var(--white-pure); margin-bottom: 50px; }
.timeline-track { position: relative; display: flex; justify-content: space-between; gap: 20px; }
.timeline-progress { position: absolute; top: 20px; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, var(--cyan-neon), #00C8D7); z-index: 0; transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: 0 0 10px rgba(0, 240, 255, 0.5); }
.timeline-step { position: relative; flex: 1; z-index: 1; text-align: center; transition: opacity 0.5s ease; }
.timeline-step .marker-dot { width: 16px; height: 16px; border-radius: 50%; background: #1e2533; border: 2px solid #334155; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; transition: all 0.5s ease; }
.timeline-step .step-week  { color: #475569; font-weight: 700; font-size: 13px; margin-bottom: 8px; letter-spacing: 1px; }
.timeline-step .step-title { color: #64748b; font-size: 16px; font-weight: 700; margin: 0 0 12px 0; }
.timeline-step .step-benefits li { color: #475569; font-size: 13px; padding: 4px 0; list-style: none; }
.timeline-step.active .marker-dot { background: var(--cyan-neon); border-color: var(--cyan-neon); box-shadow: 0 0 20px rgba(0, 240, 255, 0.6); }
.timeline-step.active .step-week  { color: var(--cyan-neon); }
.timeline-step.active .step-title { color: var(--white-pure); }
.timeline-step.active .step-benefits li { color: #CCC; }
.step-marker { position: relative; width: 40px; height: 40px; margin: 0 auto 16px; }
.marker-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(0, 240, 255, 0.2); animation: markerPulse 2s ease-in-out infinite; opacity: 0; }
.timeline-step.active .marker-pulse { opacity: 1; }
@keyframes markerPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; } 50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; } }
.step-benefits { list-style: none; padding: 0; margin: 0; text-align: left; display: inline-block; }

/* Gráfico */
.efficacy-chart { background: rgba(20, 20, 20, 0.5); backdrop-filter: blur(10px); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 40px; margin-bottom: 60px; }
.chart-header { text-align: center; margin-bottom: 30px; }
.chart-header h3 { color: var(--white-pure); font-size: 28px; margin: 0 0 8px 0; }
.chart-header p { color: var(--gray-medium); font-size: 14px; }
.chart-container { max-width: 600px; margin: 0 auto; }
.chart-container canvas { display: block; width: 100% !important; height: 300px !important; }
.chart-legend { display: flex; justify-content: center; gap: 30px; margin-top: 20px; }
.legend-item { display: flex; align-items: center; gap: 8px; color: #CCC; font-size: 14px; }
.legend-color { width: 16px; height: 16px; border-radius: 4px; }
.legend-velmo { background: linear-gradient(135deg, var(--cyan-neon), #00C8D7); box-shadow: 0 0 10px rgba(0, 240, 255, 0.5); }
.legend-conventional { background: #444; }
.science-cta { text-align: center; }

/* ========================================== */
/* FOOTER                                     */
/* ========================================== */
.footer-premium { position: relative; width: 100%; background: linear-gradient(180deg, #0a0a0a 0%, #050505 30%, #020202 100%); padding: 0; overflow: hidden; }
.footer-glow-top { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent); z-index: 1; }
.footer-urgency-strip { position: relative; z-index: 10; background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 140, 0, 0.1)); border-bottom: 1px solid rgba(255, 184, 0, 0.2); backdrop-filter: blur(10px); animation: stripGlow 3s ease-in-out infinite; }
@keyframes stripGlow { 0%, 100% { background: linear-gradient(135deg, rgba(255, 184, 0, 0.08), rgba(255, 140, 0, 0.08)); } 50% { background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(255, 140, 0, 0.15)); } }
.urgency-strip-content { max-width: 1300px; width: 90%; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 20px; padding: 16px 20px; flex-wrap: wrap; }
.strip-icon { font-size: 28px; animation: stripIconPulse 1s ease-in-out infinite; }
@keyframes stripIconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.strip-text { display: flex; flex-direction: column; gap: 2px; }
.strip-main { color: var(--gold-urgency); font-weight: 800; font-size: 16px; letter-spacing: 0.5px; }
.strip-sub { color: var(--gray-medium); font-size: 12px; }
.strip-counter { display: flex; align-items: baseline; gap: 6px; background: rgba(255, 184, 0, 0.15); border-radius: 8px; padding: 8px 16px; }
.counter-number { color: var(--gold-urgency); font-weight: 800; font-size: 24px; font-variant-numeric: tabular-nums; animation: counterPulse 2s ease-in-out infinite; }
@keyframes counterPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.counter-label { color: var(--gray-medium); font-size: 11px; }
.strip-cta { background: linear-gradient(135deg, var(--gold-urgency), var(--gold-dark)); color: var(--black-absolute); text-decoration: none; padding: 12px 24px; border-radius: 50px; font-weight: 800; font-size: 14px; letter-spacing: 1px; transition: var(--transition-smooth); box-shadow: 0 0 20px var(--gold-glow); }
.strip-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255, 184, 0, 0.5); }
.footer-container { max-width: 1300px; width: 90%; margin: 0 auto; padding: 60px 0 30px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { margin-bottom: 16px; }
.logo-text { font-size: 28px; font-weight: 900; color: var(--white-pure); letter-spacing: 2px; }
.logo-highlight { color: var(--cyan-neon); }
.logo-tagline { display: block; font-size: 12px; color: var(--gray-dark); letter-spacing: 2px; margin-top: 2px; text-transform: uppercase; }
.footer-description { color: #888; font-size: 14px; line-height: 1.6; margin: 0 0 24px 0; }
.footer-newsletter { margin-top: 24px; }
.newsletter-title { color: var(--white-pure); font-size: 14px; font-weight: 700; margin: 0 0 12px 0; }
.newsletter-input-wrapper { position: relative; display: flex; }
.newsletter-input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; padding: 14px 50px 14px 20px; color: var(--white-pure); font-size: 14px; outline: none; transition: var(--transition-smooth); font-family: var(--font-primary); }
.newsletter-input:focus { border-color: rgba(0, 240, 255, 0.4); box-shadow: 0 0 20px rgba(0, 240, 255, 0.1); }
.newsletter-input::placeholder { color: #555; }
.newsletter-btn { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--cyan-neon), #00C8D7); color: var(--black-absolute); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.newsletter-btn:hover { box-shadow: 0 0 15px rgba(0, 240, 255, 0.5); }
.newsletter-success { display: none; color: var(--green-save); font-size: 13px; margin-top: 8px; padding: 8px 12px; background: rgba(76, 175, 80, 0.1); border-radius: 8px; }
.footer-col-title { color: var(--white-pure); font-size: 14px; font-weight: 700; margin: 0 0 16px 0; letter-spacing: 1px; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #888; text-decoration: none; font-size: 14px; transition: var(--transition-smooth); position: relative; }
.footer-links a::before { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--cyan-neon); transition: width 0.3s ease; }
.footer-links a:hover { color: var(--cyan-neon); }
.footer-links a:hover::before { width: 100%; }
.footer-contact { margin-bottom: 20px; }
.contact-item { display: flex; align-items: center; gap: 8px; color: #888; font-size: 13px; margin-bottom: 10px; }
.contact-icon { font-size: 16px; flex-shrink: 0; }
.footer-seals { display: flex; flex-direction: column; gap: 10px; }
.seal-item { display: flex; align-items: flex-start; gap: 10px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 10px 14px; transition: var(--transition-smooth); }
.seal-item:hover { border-color: var(--border-glow); background: rgba(0, 240, 255, 0.03); }
.seal-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.seal-info { display: flex; flex-direction: column; }
.seal-title { display: block; color: var(--white-pure); font-weight: 600; font-size: 12px; }
.seal-desc { display: block; color: var(--gray-dark); font-size: 11px; line-height: 1.5; }
.seal-desc a { color: #0000EE; text-decoration: underline; }
.footer-payment { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 20px 0; margin-bottom: 30px; }
.payment-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.payment-title { color: var(--gray-medium); font-size: 13px; font-weight: 600; }
.payment-badges { display: flex; gap: 12px; }
.payment-badge { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-subtle); border-radius: 6px; padding: 6px 12px; font-size: 14px; color: #CCC; transition: var(--transition-smooth); }
.payment-badge:hover { border-color: var(--border-glow); color: var(--white-pure); }
.payment-parcels { color: var(--gray-dark); font-size: 13px; }
.payment-parcels strong { color: var(--cyan-neon); }
.footer-bottom-content { text-align: center; }
.footer-copyright { color: var(--gray-dark); font-size: 13px; margin: 0 0 12px 0; }
.footer-copyright strong { color: var(--white-pure); }
.footer-disclaimer { color: #555; font-size: 11px; line-height: 1.5; max-width: 700px; margin: 0 auto 20px; }
.footer-social { display: flex; justify-content: center; gap: 16px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: #888; transition: var(--transition-smooth); }
.social-link:hover { background: rgba(0, 240, 255, 0.1); border-color: var(--border-glow); color: var(--cyan-neon); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2); }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; align-items: center; text-decoration: none; }
.whatsapp-icon { width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); position: relative; z-index: 2; transition: var(--transition-smooth); }
.whatsapp-float:hover .whatsapp-icon { transform: scale(1.1); box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6); }
.whatsapp-pulse { position: absolute; top: 0; left: 0; width: 60px; height: 60px; border-radius: 50%; background: rgba(37, 211, 102, 0.4); z-index: 1; animation: whatsappPulse 2s ease-in-out infinite; }
@keyframes whatsappPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.8); opacity: 0; } }
.whatsapp-tooltip { position: absolute; right: 75px; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px); color: var(--white-pure); padding: 10px 16px; border-radius: 20px; font-size: 13px; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition-smooth); border: 1px solid rgba(255, 255, 255, 0.1); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; right: 70px; }

/* ========================================== */
/* RESPONSIVIDADE                             */
/* ========================================== */
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; text-align: center; padding: 120px 0 60px; gap: 40px; }
    .hero-content { max-width: 100%; order: 2; }
    .hero-product { order: 1; min-height: 350px; }
    .product-3d-container { height: 400px; }
    .hero-title { font-size: 40px; }
    .hero-benefits { align-items: center; }
    .capsules-grid { grid-template-columns: repeat(2, 1fr); }
    .capsule-card-star { order: -1; grid-column: span 2; margin-top: 0; max-width: 500px; justify-self: center; }
    .combos-grid { grid-template-columns: 1fr 1fr; }
    .combo-popular { transform: none; order: -1; grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
    .combo-popular:hover { transform: translateY(-6px); }
    .masonry-grid { grid-template-columns: repeat(2, 1fr); }
    .card-large { grid-column: span 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-col-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .hero-cta { padding: 16px 36px; font-size: 16px; }
    .product-3d-container { height: 320px; }
    /* benefit-item no mobile: ícone fixo, texto alinhado */
    .benefit-item { font-size: 15px; gap: 10px; }
    .benefit-icon { width: 24px; height: 24px; min-width: 24px; font-size: 12px; }
    /* scroll-indicator no mobile: menor e não obstrui CTA */
    .scroll-indicator { bottom: 16px; font-size: 11px; }
    .scroll-indicator span { font-size: 11px; }
    .capsules-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .capsule-card-star { grid-column: span 1; max-width: none; }
    .combos-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .combo-popular { order: 0; }
    .masonry-grid { grid-template-columns: 1fr; }
    .card-large { grid-column: span 1; grid-row: span 1; }
    .ingredients-interactive { min-height: auto; display: flex; flex-direction: column; gap: 16px; align-items: center; }
    .molecule-core { position: relative; top: auto; left: auto; transform: none; margin-bottom: 20px; }
    .ingredient-node { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; }
    .node-content { width: 100%; max-width: 300px; }
    .timeline-track { flex-wrap: wrap; gap: 30px; }
    .timeline-step { flex: 0 0 100%; }
    .timeline-progress { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col-brand { grid-column: span 1; }
    .urgency-strip-content { flex-direction: column; text-align: center; gap: 12px; }
    .payment-row { flex-direction: column; text-align: center; gap: 12px; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-icon { width: 50px; height: 50px; }
    .whatsapp-pulse { width: 50px; height: 50px; }
    .whatsapp-tooltip { display: none; }
}

@media (max-width: 480px) {
    .benefit-item { font-size: 14px; gap: 8px; }
    .benefit-icon { width: 22px; height: 22px; min-width: 22px; font-size: 11px; }
}

/* ========================================== */
/* CARROSSEL — velmo-carousel                 */
/* ========================================== */
.velmo-carousel-section {
    position: relative;
    width: 100%;
    background: var(--black-absolute, #050505);
    padding: 80px 0 60px;
    overflow: hidden;
}
.velmo-carousel-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,240,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.velmo-carousel-header { text-align: center; margin-bottom: 40px; padding: 0 20px; }
.velmo-carousel-label { font-family: 'Sora', 'Poppins', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #fff; margin: 0; letter-spacing: 0.02em; }
.velmo-carousel-label-highlight { color: #53bcbb; }
.velmo-carousel-wrapper { position: relative; display: flex; align-items: center; max-width: 1300px; margin: 0 auto; padding: 0 52px; }
.velmo-carousel-viewport { overflow: hidden; width: 100%; border-radius: 12px; min-height: 180px; }
.velmo-carousel-track { display: flex; gap: 16px; will-change: transform; }
.velmo-carousel-track.velmo-animated { transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1); }
.velmo-carousel-slide { flex-shrink: 0; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.03); border: 1px solid rgba(0,240,255,0.08); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; cursor: pointer; min-width: 100px; }
.velmo-carousel-slide:hover { transform: translateY(-4px) scale(1.02); border-color: rgba(0,240,255,0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(0,240,255,0.1); }
.velmo-carousel-slide figure { margin: 0; padding: 0; aspect-ratio: 3 / 4; overflow: hidden; background: rgba(255,255,255,0.04); }
.velmo-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; background: rgba(0,240,255,0.04); }
.velmo-carousel-slide:hover img { transform: scale(1.05); }
.velmo-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0,240,255,0.25); background: rgba(5,5,5,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; padding: 0; flex-shrink: 0; }
.velmo-carousel-btn svg { width: 18px; height: 18px; fill: rgba(0,240,255,0.7); transition: fill 0.3s ease; }
.velmo-carousel-btn:hover { border-color: rgba(0,240,255,0.6); background: rgba(0,240,255,0.08); box-shadow: 0 0 16px rgba(0,240,255,0.2); }
.velmo-carousel-btn:hover svg { fill: #00F0FF; }
.velmo-carousel-btn-prev { left: 4px; }
.velmo-carousel-btn-next { right: 4px; }
.velmo-carousel-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; flex-wrap: wrap; padding: 0 20px; }
.velmo-carousel-bullet { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: all 0.3s ease; padding: 0; flex-shrink: 0; }
.velmo-carousel-bullet:hover { background: rgba(0,240,255,0.4); }
.velmo-carousel-bullet.active { background: #00F0FF; border-color: #00F0FF; box-shadow: 0 0 8px rgba(0,240,255,0.6); width: 24px; border-radius: 4px; }
.velmo-carousel-cta-wrap { display: flex; justify-content: center; margin-top: 40px; padding: 0 20px; }
.velmo-carousel-cta { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #00F0FF 0%, #00C8D7 100%); color: #050505; font-family: 'Sora', 'Poppins', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; padding: 18px 48px; border-radius: 60px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 0 30px rgba(0,240,255,0.35); position: relative; overflow: hidden; }
.velmo-carousel-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); animation: velmoCarouselShine 2.5s ease-in-out infinite; }
@keyframes velmoCarouselShine { 0% { left: -100%; } 100% { left: 100%; } }
.velmo-carousel-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 48px rgba(0,240,255,0.55); }
@media (max-width: 768px) {
    .velmo-carousel-section { padding: 60px 0 48px; }
    .velmo-carousel-wrapper { padding: 0 40px; }
    .velmo-carousel-btn { width: 34px; height: 34px; }
    .velmo-carousel-btn svg { width: 15px; height: 15px; }
    .velmo-carousel-cta { padding: 16px 32px; font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .velmo-carousel-wrapper { padding: 0 36px; }
    .velmo-carousel-cta { width: 100%; max-width: 340px; }
}
