/* ═══════════════════════════════════════════
   KIT DE CHARLAS LISTAS — CSS (versión unificada)
   Tema: Vibrante, energético, alta conversión
   Mobile-first · Animado · Anti-dark
   ═══════════════════════════════════════════ */

:root {
  --bg:       #FFFBF5;
  --bg2:      #FFF7EC;
  --dark:     #1A0A00;
  --dark2:    #2D1500;
  --orange:   #FF5C00;
  --orange-l: #FF8A3D;
  --yellow:   #FFD600;
  --yellow-l: #FFE566;
  --green:    #00C853;
  --green-l:  #5EFF9E;
  --red:      #FF3333;
  --purple:   #7C3AED;
  --white:    #FFFFFF;
  --gray:     #6B6B6B;
  --gray-l:   #F0ECE7;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-alt:  'Lato', sans-serif;

  --r: 16px;
  --r2: 24px;
  --r3: 32px;
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

.anim-pop { animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.anim-slide { animation: slideUp 0.6s ease both; }
@keyframes popIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ═══ BARRA DE TIEMPO ═══ */
.timer-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--orange); color: #fff;
  font-family: var(--font-alt); font-size: 0.82rem; font-weight: 600;
  text-align: center; padding: 10px 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: 0.03em;
}
.timer-fire { font-size: 1rem; }
.timer-count {
  background: var(--dark); color: var(--yellow);
  font-family: var(--font-alt); font-weight: 700;
  padding: 2px 10px; border-radius: 8px; font-size: 0.9rem; letter-spacing: 0.08em;
}

/* ═══ NOTIFICACIÓN ═══ */
.toast {
  position: fixed; bottom: 20px; left: 12px; z-index: 9999;
  background: #fff; border-radius: 18px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  max-width: 290px; border-left: 4px solid var(--green);
  animation: toastSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.toast--hidden { display: none; }
.toast--out { animation: toastOut 0.4s ease forwards; }
.toast-left { position: relative; flex-shrink: 0; }
.toast-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-l));
  color: #fff; font-family: var(--font-alt); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.toast-online {
  position: absolute; bottom: 1px; right: 1px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--green); border: 2px solid #fff;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.toast-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.toast-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.toast-name { font-size: 0.8rem; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.toast-time { font-size: 0.68rem; color: var(--gray); white-space: nowrap; flex-shrink: 0; }
.toast-action { font-size: 0.75rem; color: var(--gray); }
.toast-bottom { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.toast-plano { font-size: 0.72rem; font-weight: 700; background: rgba(255,92,0,0.1); color: var(--orange); padding: 2px 8px; border-radius: 100px; }
.toast-valor { font-size: 0.82rem; font-weight: 800; color: var(--green); }
@keyframes toastSlide { from { transform: translateX(-110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { to { transform: translateX(-110%); opacity: 0; } }

/* ═══ HÉROE ═══ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #FFF7EC 0%, #FFFBF5 100%);
  padding: 90px 0 60px; text-align: center; overflow: hidden;
  min-height: 100dvh; display: flex; align-items: center;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-blob--1 { width: 350px; height: 350px; background: rgba(255, 92, 0, 0.18); top: -80px; right: -100px; animation: blobFloat 7s ease-in-out infinite; }
.hero-blob--2 { width: 250px; height: 250px; background: rgba(255, 214, 0, 0.25); bottom: -60px; left: -80px; animation: blobFloat 9s ease-in-out infinite reverse; }
.hero-blob--3 { width: 200px; height: 200px; background: rgba(0, 200, 83, 0.12); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: blobFloat 11s ease-in-out infinite; }
@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(15px,20px) scale(1.05); } }
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-badge {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: var(--font-alt); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 10vw, 3rem); font-weight: 800; line-height: 1.08; color: var(--dark); margin-bottom: 16px; }
.hero-accent { color: var(--orange); }
.hero-outline { -webkit-text-stroke: 2px var(--dark); color: transparent; font-style: italic; }
.hero-sub { font-size: clamp(0.92rem, 3vw, 1rem); color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.hero-sub strong { color: var(--dark); }

.hero-img-wrap { position: relative; max-width: 300px; margin: 0 auto 32px; cursor: pointer; animation: imgFloat 3.5s ease-in-out infinite; }
@keyframes imgFloat { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
.hero-img-wrap:hover { animation-play-state: paused; }
.hero-img {
  width: 100%; border-radius: var(--r3); display: block;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
  box-shadow: 0 24px 60px rgba(255, 92, 0, 0.3); min-height: 200px;
  background: linear-gradient(135deg, #FFE0CC, #FFD6B0);
}
.hero-img-wrap:hover .hero-img { transform: scale(1.04) rotate(-1.5deg); box-shadow: 0 36px 80px rgba(255, 92, 0, 0.45); }
.hero-img-glow {
  position: absolute; inset: -16px; border-radius: calc(var(--r3) + 16px);
  background: radial-gradient(ellipse at center, rgba(255,92,0,0.22) 0%, transparent 68%);
  pointer-events: none; animation: glowPulse 2.8s ease-in-out infinite; z-index: -1;
}
@keyframes glowPulse { 0%,100% { opacity: 0.5; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1.08); } }

.btn-cta {
  display: inline-block; background: linear-gradient(135deg, var(--orange), var(--orange-l));
  color: #fff; font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.05em; padding: 20px 40px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(255,92,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease; cursor: pointer;
  position: relative; overflow: visible;
}
.btn-cta:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 20px 52px rgba(255,92,0,0.7); }
.btn-cta:active { transform: scale(0.97); }
.btn-pulse::before {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  border: 3px solid var(--orange); animation: ringPulse 2s ease-out infinite; pointer-events: none;
}
@keyframes ringPulse { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(1.5); opacity: 0; } }
.hero-garantia { margin-top: 16px; font-size: 0.78rem; color: var(--gray); }

/* ═══ DOLOR ═══ */
.dor-section { background: var(--bg2); padding: 70px 0; text-align: center; }
.section-tag { font-family: var(--font-alt); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange); margin-bottom: 12px; }
.section-tag--light { color: rgba(255,255,255,0.6); }
.section-h2 { font-family: var(--font-head); font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 800; line-height: 1.15; color: var(--dark); margin-bottom: 36px; }
.section-h2--light { color: var(--white); }
.acc-red { color: var(--red); }
.acc-yellow { color: var(--yellow); }
.acc-green { color: var(--green); }

.dor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.dor-card { background: var(--white); border: 2px solid var(--gray-l); border-radius: var(--r2); padding: 18px 14px; text-align: center; transition: var(--tr); }
.dor-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(255,51,51,0.12); }
.dor-emoji { font-size: 2rem; display: block; margin-bottom: 8px; }
.dor-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }
.dor-solucao { background: linear-gradient(135deg, var(--orange), var(--orange-l)); border-radius: var(--r2); padding: 22px; color: #fff; }
.dor-solucao p { font-size: 0.95rem; line-height: 1.7; }
.dor-solucao strong { color: var(--yellow); }

/* ═══ ANTES VS DESPUÉS ═══ */
.compare-section { padding: 70px 0; background: #fff; text-align: center; }
.compare-grid { margin-top: 40px; display: grid; grid-template-columns: 1fr 80px 1fr; gap: 20px; align-items: center; }
.compare-box { background: #fff; border-radius: 28px; padding: 32px; box-shadow: 0 15px 40px rgba(0,0,0,.08); }
.compare-box--bad { border: 2px solid rgba(255,80,80,.15); }
.compare-box--good { border: 2px solid rgba(32,201,151,.18); }
.compare-head { font-size: 22px; font-weight: 900; margin-bottom: 22px; color: #ff5a5a; font-family: var(--font-head); }
.compare-head--good { color: #20c997; }
.compare-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.compare-item span { font-size: 20px; }
.compare-item p { font-size: 15px; color: #444; line-height: 1.4; text-align: left; }
.compare-middle { font-size: 48px; font-weight: 900; text-align: center; color: var(--yellow); }

/* ═══ TEMAS ═══ */
.topics-section { padding: 70px 0; background: #111827; text-align: center; }
.topics-wrap { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.topic-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); color: #fff; padding: 12px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; transition: .25s; }
.topic-pill:hover { transform: translateY(-4px); background: rgba(255,255,255,.13); }
.topics-more { margin-top: 24px; text-align: center; color: #facc15; font-weight: 800; font-size: 16px; }

/* ═══ ACCESO DE POR VIDA ═══ */
.lifetime-section { padding: 70px 0; background: #f8fafc; }
.lifetime-card { background: linear-gradient(135deg, #111827, #1f2937); border-radius: 32px; padding: 40px; display: flex; align-items: center; gap: 30px; color: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.lifetime-icon { width: 90px; height: 90px; border-radius: 22px; background: transparent; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lifetime-content h3 { font-size: 28px; font-weight: 900; margin-bottom: 10px; font-family: var(--font-head); }
.lifetime-content p { font-size: 16px; opacity: .9; line-height: 1.6; }

/* ═══ TEMAS ═══ */
.temas-section { background: linear-gradient(160deg, var(--dark2) 0%, var(--dark) 100%); padding: 70px 0; text-align: center; }
.temas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
.tema-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r2); padding: 20px 14px; text-align: center; transition: var(--tr); }
.tema-card:hover { background: rgba(255,92,0,0.12); border-color: var(--orange); transform: scale(1.04); }
.tema-icon { font-size: 2rem; margin-bottom: 10px; }
.tema-card h3 { font-family: var(--font-alt); font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.tema-card p { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.nums-strip { display: flex; align-items: center; justify-content: center; gap: 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r2); overflow: hidden; }
.num-item { flex: 1; padding: 22px 10px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.num-val { font-family: var(--font-head); font-size: 2.5rem; color: var(--yellow); line-height: 1; }
.num-suf { font-family: var(--font-head); font-size: 1.4rem; color: var(--orange); margin-left: 2px; }
.num-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
.num-div { width: 1px; height: 50px; background: rgba(255,255,255,0.08); }

/* ═══ TESTIMONIOS ═══ */
.dep-section { position: relative; padding: 90px 0; background: radial-gradient(circle at top right, rgba(255,92,0,0.08), transparent 30%), linear-gradient(180deg, #FFF8F1 0%, #FFFFFF 100%); overflow: hidden; }
.dep-headline { text-align: center; margin-bottom: 42px; }
.dep-mini-tag { display: inline-block; background: rgba(255,92,0,0.1); color: var(--orange); border: 1px solid rgba(255,92,0,0.12); padding: 8px 16px; border-radius: 999px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; margin-bottom: 18px; }
.dep-title { font-family: var(--font-head); font-size: clamp(1.9rem, 6vw, 3rem); line-height: 1.12; color: var(--dark); margin-bottom: 14px; font-weight: 900; }
.dep-title span { color: var(--orange); }
.dep-grid { display: flex; flex-direction: column; gap: 22px; }
.dep-card { position: relative; background: rgba(255,255,255,0.85); backdrop-filter: blur(14px); border: 1px solid rgba(255,92,0,0.08); border-radius: 30px; padding: 26px; text-align: left; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 1px 0 rgba(255,255,255,0.8) inset; }
.dep-card:hover { transform: translateY(-8px); border-color: rgba(255,92,0,0.25); box-shadow: 0 25px 60px rgba(255,92,0,0.12), 0 1px 0 rgba(255,255,255,0.8) inset; }
.dep-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dep-stars { color: #FFB800; font-size: 1rem; letter-spacing: 0.12em; }
.dep-badge { background: rgba(0,200,83,0.1); color: var(--green); border: 1px solid rgba(0,200,83,0.15); padding: 6px 12px; border-radius: 999px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.dep-text { font-size: 0.96rem; line-height: 1.9; color: #555; font-style: italic; margin-bottom: 22px; }
.dep-autor { display: flex; align-items: center; gap: 14px; }
.dep-avatar { width: 58px; height: 58px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid rgba(255,92,0,0.15); box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
.dep-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dep-user { display: flex; flex-direction: column; }
.dep-user strong { font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.dep-user span { font-size: 0.78rem; color: #777; }
@media (min-width: 768px) { .dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; } .dep-card { height: 100%; } }

/* ═══ SECCIÓN BONOS ═══ */
.bonus-section { background: linear-gradient(160deg, #0D0500 0%, #1a0800 100%); padding: 70px 0 50px; text-align: center; position: relative; overflow: hidden; }
.bonus-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(255,214,0,0.07), transparent 55%); pointer-events: none; }
.bonus-grid { display: flex; flex-direction: column; gap: 14px; margin: 36px 0 28px; }
.bonus-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,214,0,0.15); border-radius: 20px; padding: 20px 18px; display: flex; align-items: center; gap: 16px; text-align: left; transition: 0.25s ease; }
.bonus-card:hover { background: rgba(255,214,0,0.06); border-color: rgba(255,214,0,0.35); transform: translateY(-3px); }
.bonus-icon { font-size: 2rem; width: 52px; height: 52px; background: rgba(255,214,0,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bonus-info { flex: 1; }
.bonus-titulo { font-family: var(--font-alt); font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bonus-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.bonus-valor-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.bonus-de { font-size: 0.78rem; color: rgba(255,255,255,0.25); text-decoration: line-through; }
.bonus-gratis { background: linear-gradient(135deg, var(--green), var(--green-l)); color: #000; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 100px; }
.bonus-total { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; background: rgba(0,200,83,0.08); border: 1px solid rgba(0,200,83,0.2); border-radius: 100px; padding: 12px 24px; margin-top: 8px; }
.bonus-total-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.bonus-total-de { font-family: var(--font-head); font-size: 1.3rem; color: rgba(255,255,255,0.3); text-decoration: line-through; }
.bonus-total-gratis { background: var(--green); color: #000; font-size: 0.78rem; font-weight: 800; padding: 4px 14px; border-radius: 100px; letter-spacing: 0.05em; }
@media (min-width: 640px) { .bonus-grid { display: grid; grid-template-columns: 1fr; gap: 12px; } }

/* ═══ OFERTAS ═══ */
.ofertas-section { position: relative; background: linear-gradient(160deg, #0D0500 0%, #1A0800 50%, #0D0500 100%); padding: 80px 0; text-align: center; overflow: hidden; }
.ofertas-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.o-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.o-orb--1 { width: 400px; height: 400px; background: rgba(255,92,0,0.12); top: -100px; right: -80px; }
.o-orb--2 { width: 300px; height: 300px; background: rgba(255,214,0,0.07); bottom: -80px; left: -60px; }
.cards-row { display: flex; flex-direction: column; gap: 24px; }
.ofertas-moeda-nota { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: -20px 0 28px; text-align: center; line-height: 1.6; max-width: 380px; margin-left: auto; margin-right: auto; }

.oferta-card { border-radius: 28px; padding: 28px 22px; text-align: left; position: relative; transition: 0.3s ease; }

/* Card Essencial: discreto, "básico" de propósito */
.card-basic { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); opacity: 0.75; transform: scale(0.97); }
.card-basic:hover { opacity: 0.9; transform: scale(0.98) translateY(-2px); background: rgba(255,255,255,0.05); }
.list-no { color: rgba(255,255,255,0.28) !important; font-size: 0.85rem; text-decoration: line-through; text-decoration-color: rgba(255,80,80,0.4); }
.list-yes { color: rgba(255,255,255,0.85) !important; }
.btn-card--ghost {
  background: transparent; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.4);
  font-size: 0.8rem; letter-spacing: 0.04em; padding: 12px 20px; margin-top: 18px; box-shadow: none;
  display: block; width: 100%; text-align: center; border-radius: 100px; font-family: var(--font-alt); font-weight: 700; transition: var(--tr);
}
.btn-card--ghost:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6); transform: none; }

/* Card Completo: hero visual */
.card-main {
  background: linear-gradient(145deg, #1F0A00, #2D1200);
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 1px rgba(255,92,0,0.3), 0 20px 60px rgba(255,92,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.card-main:hover { transform: translateY(-8px); box-shadow: 0 0 0 1px rgba(255,92,0,0.4), 0 32px 80px rgba(255,92,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06); }

.card-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), #FF8A3D); color: #fff;
  font-family: var(--font-alt); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em;
  padding: 6px 22px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 20px rgba(255,92,0,0.5);
}
.card-label { font-family: var(--font-alt); font-size: 0.72rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.card-label--gold { color: var(--yellow); }
.oferta-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.3; }
.card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.card-list li { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

.card-bonus-sep { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; color: var(--yellow); border-top: 1px solid rgba(255,214,0,0.15); border-bottom: 1px solid rgba(255,214,0,0.15); padding: 8px 0; margin-bottom: 10px; }
.card-list--bonus { gap: 10px; margin-bottom: 16px; }
.card-list--bonus li { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.bonus-tag { white-space: nowrap; flex-shrink: 0; font-size: 0.75rem; font-weight: 700; color: var(--green-l); }
.bonus-tag s { color: rgba(255,255,255,0.25); font-weight: 400; margin-right: 4px; }

.card-preco { margin-bottom: 6px; text-align: center; }
.preco-de { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.25); text-decoration: line-through; margin-bottom: 2px; }
.preco-val { font-family: var(--font-head); font-size: 2.6rem; color: var(--yellow); line-height: 1; display: block; }
.preco-val--main { font-size: 4.5rem; background: linear-gradient(135deg, var(--yellow), var(--orange-l)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 20px rgba(255,214,0,0.4)); }

.card-preco-bloco { margin: 6px 0 8px; text-align: center; }
.card-valor-original { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }
.card-valor-label { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.card-valor-riscado { font-family: var(--font-head); font-size: 1.1rem; color: rgba(255,255,255,0.25); text-decoration: line-through; text-decoration-color: #FF6B6B; text-decoration-thickness: 2px; }
.card-economia-dest { background: linear-gradient(135deg, rgba(0,200,83,0.15), rgba(0,200,83,0.05)); border: 1px solid rgba(0,200,83,0.25); border-radius: 12px; padding: 10px 14px; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; text-align: center; }
.card-economia-dest strong { color: var(--green-l); font-size: 1rem; }
.card-tudo-por { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 2px; text-align: center; }
.card-parcelado { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 6px; }
.card-h3-bonus { display: block; font-size: 0.9rem; color: var(--yellow); letter-spacing: 0.08em; margin-top: 4px; }

.btn-card { display: block; width: 100%; font-family: var(--font-alt); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.05em; text-align: center; padding: 16px 20px; border-radius: 100px; margin-top: 14px; transition: 0.25s ease; }
.btn-card--main {
  background: linear-gradient(135deg, var(--orange), var(--orange-l)); color: #fff; font-size: 1rem;
  padding: 18px 20px; box-shadow: 0 8px 28px rgba(255,92,0,0.5); position: relative;
}
.btn-card--main::before { content: ''; position: absolute; inset: 0; border-radius: 100px; border: 3px solid var(--orange); animation: ringPulse 2s ease-out infinite; pointer-events: none; }
.btn-card--main:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 48px rgba(255,92,0,0.7); }
.card-microcopy { text-align: center; font-size: 0.74rem; color: rgba(255,255,255,0.35); margin-top: 10px; }

/* ═══ GARANTÍA ═══ */
.garantia-section { background: var(--bg2); padding: 50px 0; }
.garantia-card { background: var(--white); border: 2px solid var(--gray-l); border-radius: var(--r2); padding: 28px 22px; display: flex; align-items: flex-start; gap: 18px; }
.garantia-icon { font-size: 3rem; flex-shrink: 0; }
.garantia-img { width: 90px; height: 90px; object-fit: contain; display: block; }
.garantia-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.garantia-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ═══ PREGUNTAS FRECUENTES ═══ */
.faq-section { background: var(--bg); padding: 60px 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1.5px solid var(--gray-l); border-radius: var(--r); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--orange); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 18px; gap: 12px; text-align: left; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--dark); transition: color 0.2s; }
.faq-q:hover { color: var(--orange); }
.faq-icon { font-size: 1.3rem; color: var(--orange); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-a p { padding: 0 18px 16px; font-size: 0.86rem; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 260px; }

/* ═══ CTA FINAL ═══ */
.cta-final { background: linear-gradient(135deg, var(--orange) 0%, #FF8A3D 100%); padding: 70px 0; text-align: center; }
.cta-h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 8vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 28px; }
.cta-h2 .acc-yellow { color: var(--yellow); }
.cta-final .btn-cta { background: var(--dark); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.cta-final .btn-cta:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.45); }
.cta-micro { margin-top: 14px; font-size: 0.76rem; color: rgba(255,255,255,0.7); }

/* ═══ PIE DE PÁGINA ═══ */
.footer { background: var(--dark); color: rgba(255,255,255,0.4); padding: 40px 0 28px; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 10px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-links span { color: rgba(255,255,255,0.2); }
.footer p { font-size: 0.75rem; margin-bottom: 8px; }
.footer-disc { font-size: 0.68rem; color: rgba(255,255,255,0.2); line-height: 1.65; max-width: 440px; margin: 12px auto 0; }

.delivery-badge { text-align: center; margin: 18px 0; }
.delivery-badge img { width: 280px; max-width: 100%; height: auto; }

/* ═══ RESPONSIVO ═══ */
@media (min-width: 480px) { .container { max-width: 560px; } }
@media (min-width: 640px) {
  .container { max-width: 640px; }
  .dor-grid { grid-template-columns: repeat(4, 1fr); }
  .temas-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-row { flex-direction: row; align-items: flex-start; }
  .oferta-card { flex: 1; }
  .dep-grid { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-middle { transform: rotate(90deg); font-size: 36px; }
  .lifetime-card { flex-direction: column; text-align: center; }
}
