/* ==========================================================================
   Cheesecakes en Vasito — hoja de estilo única
   Orden: tokens · base · tipografía · utilidades · botones · secciones · media
   Mobile-first: todo lo de arriba es móvil; las media queries sólo amplían.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* color */
  --wine:        #C64657;
  --wine-deep:   #9B3241;
  --rose:        #F38B98;
  --rose-soft:   #F8DDE0;
  --cream:       #FFF8F5;
  --ink:         #3D1F26;
  --ink-soft:    #7A5C63;
  --gold:        #C89B5A;
  --green:       #2E9E5B;
  --white:       #FFFFFF;

  /* capas del vasito: galleta · crema · cobertura */
  --biscuit:     #D9B183;
  --custard:     #FFF3E2;

  /* sombras — siempre cálidas, nunca grises */
  --shadow-sm:   0 4px 14px rgba(198, 70, 87, .08);
  --shadow-md:   0 14px 38px rgba(198, 70, 87, .12);
  --shadow-lg:   0 26px 64px rgba(198, 70, 87, .18);

  /* forma */
  --radius:      22px;
  --radius-sm:   14px;
  --radius-pill: 999px;

  /* medidas */
  --maxw:        1120px;
  --gutter:      20px;

  /* tipografía */
  --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--wine-deep); }

strong, b { font-weight: 600; }

/* foco visible en todo lo navegable por teclado */
:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Tipografía
   -------------------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.018em;
  margin: 0 0 .5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.15rem, 9vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 6.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 4.4vw, 1.6rem); font-weight: 600; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 .9rem;
}

.muted { color: var(--ink-soft); }
.small { font-size: .95rem; }

/* trazo rosa hecho a mano bajo una palabra clave */
.mark { position: relative; display: inline-block; white-space: nowrap; }
.mark__line {
  position: absolute;
  left: -2%;
  bottom: -.14em;
  width: 104%;
  height: .34em;
  overflow: visible;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   4. Utilidades de layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 760px; }

.section { padding: 62px 0; }
.section--tight { padding: 46px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--rose  { background: var(--rose-soft); }

.section--wine {
  background: var(--wine);
  color: var(--rose-soft);
}
.section--wine h2,
.section--wine h3 { color: var(--white); }
.section--wine .eyebrow { color: var(--rose-soft); }

.center { text-align: center; }

.stack > * + * { margin-top: 1rem; }

/* separador de título: el mismo motivo de capas, en pequeño */
.rule {
  width: 62px;
  height: 9px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 0 1.2rem;
}
.rule span { flex: 1; }
.rule span:nth-child(1) { background: var(--rose); }
.rule span:nth-child(2) { background: var(--custard); }
.rule span:nth-child(3) { background: var(--biscuit); }
.center .rule, .rule--center { margin-left: auto; margin-right: auto; }

.section--wine .rule span:nth-child(2) { background: var(--white); }

/* divisor entre secciones: galleta · crema · cobertura, a lo ancho */
.layer-rule {
  display: flex;
  flex-direction: column;
  height: 11px;
}
.layer-rule span { flex: 1; }
.layer-rule span:nth-child(1) { background: var(--rose); }
.layer-rule span:nth-child(2) { background: var(--custard); }
.layer-rule span:nth-child(3) { background: var(--biscuit); }

/* --------------------------------------------------------------------------
   5. Botones
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  max-width: 420px;
  min-height: 60px;
  padding: 1rem 1.6rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(198, 70, 87, .30);
  transition: transform .18s ease-out, box-shadow .18s ease-out, background-color .18s ease-out;
}
.btn:hover { background: var(--wine-deep); box-shadow: 0 14px 32px rgba(155, 50, 65, .34); }
.btn:active { transform: translateY(1px); }

.btn__arrow { flex: none; }

.btn--light {
  background: var(--white);
  color: var(--wine-deep);
  box-shadow: 0 12px 30px rgba(61, 31, 38, .22);
}
.btn--light:hover { background: var(--cream); color: var(--wine-deep); }

.btn--xl { min-height: 68px; font-size: 1.1rem; max-width: 460px; }

.btn-note {
  margin: .85rem 0 0;
  font-size: .92rem;
  color: var(--ink-soft);
}
.section--wine .btn-note { color: var(--rose-soft); }

.cta-block { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* --------------------------------------------------------------------------
   6. Iconos
   -------------------------------------------------------------------------- */
.icon { flex: none; stroke-width: 1.75; }
.icon--check { color: var(--green); }

/* --------------------------------------------------------------------------
   7. Barra superior (3.1)
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--wine-deep);
  color: var(--rose-soft);
  text-align: center;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .55rem var(--gutter);
}
.topbar b { color: var(--white); font-weight: 600; }
@media (max-width: 400px) {
  .topbar { font-size: .74rem; letter-spacing: .02em; }
}

/* --------------------------------------------------------------------------
   8. Hero (3.2)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 85% 0%, var(--rose-soft) 0%, rgba(248, 221, 224, 0) 62%),
    var(--cream);
  padding: 42px 0 56px;
  overflow: hidden;
}
.hero__inner { display: flex; flex-direction: column; gap: 34px; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .display-serif { font-style: normal; }
.hero__sub {
  font-size: 1.13rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 34ch;
}
.hero__sub strong { color: var(--ink); }

.hero__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin: 0 0 1.8rem;
  padding: 0;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .98rem;
  font-weight: 500;
}
.hero__points .icon { color: var(--wine); }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
/* medallón de precio sobre la foto */
.price-badge {
  position: absolute;
  right: -6px;
  bottom: -14px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--rose-soft);
}
.price-badge s { color: var(--ink-soft); font-size: .78rem; }
.price-badge b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  letter-spacing: -.02em;
}
.price-badge span { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   9. Barra de credibilidad (3.3)
   -------------------------------------------------------------------------- */
.stats { background: var(--rose-soft); padding: 26px 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 0;
}
.stats__item { text-align: center; padding: 0 10px; }
.stats__item + .stats__item { box-shadow: inset 1px 0 0 rgba(155, 50, 65, .16); }
.stats__item:nth-child(odd) { box-shadow: none; }
.stats__n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.stats__l {
  display: block;
  font-size: .82rem;
  color: var(--ink-soft);
  letter-spacing: .03em;
}

/* --------------------------------------------------------------------------
   10. Dolor (3.4)
   -------------------------------------------------------------------------- */
.pain__grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.pain__card {
  background: var(--rose-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.pain__card .icon { color: var(--wine); margin-bottom: 12px; }
.pain__card p { font-size: 1.02rem; line-height: 1.55; }
.pain__close {
  margin-top: 30px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.6vw, 1.6rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--wine-deep);
}

/* --------------------------------------------------------------------------
   11. Método (3.5)
   -------------------------------------------------------------------------- */
.method__grid { display: flex; flex-direction: column; gap: 32px; }
.method img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.checklist { list-style: none; margin: 22px 0 0; padding: 0; }
.checklist li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(122, 92, 99, .14);
}
.checklist li:last-child { border-bottom: 0; }
.checklist .icon { margin-top: 3px; }
.checklist b { display: block; }
.checklist span.sub { display: block; font-size: .95rem; color: var(--ink-soft); line-height: 1.5; }

/* --------------------------------------------------------------------------
   12. Rellenos (3.6)
   -------------------------------------------------------------------------- */
.flavors__grid {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.flavor {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 14px 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.flavor__n {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}
/* el vasito: cobertura arriba, crema al medio, galleta abajo */
.flavor__glass {
  height: 74px;
  margin: 10px auto 12px;
  width: 74%;
  border-radius: 5px 5px 12px 12px;
  background: linear-gradient(
    to bottom,
    var(--top) 0 34%,
    var(--custard) 34% 74%,
    var(--biscuit) 74% 100%
  );
  border: 1px solid rgba(61, 31, 38, .12);
  position: relative;
  overflow: hidden;
}
.flavor__glass::after {
  content: "";
  position: absolute;
  top: 0; left: 13%;
  width: 9%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,.42), rgba(255,255,255,.06));
}
.flavor__name { font-size: .92rem; font-weight: 600; line-height: 1.3; }

.flavors__poster {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 30px auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   13. Las cuentas (3.7) — la sección que convierte
   -------------------------------------------------------------------------- */
.money { position: relative; padding: 68px 0; }
.money h2 { max-width: 18ch; }
.money__top { display: flex; flex-direction: column; gap: 30px; }

.cost {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin: 0;
}
.cost__row {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .5rem 0;
  font-size: 1rem;
}
.cost__row dt { flex: none; max-width: 58%; }
.cost__row .dots {
  flex: 1 1 auto;
  min-width: 12px;
  border-bottom: 1px dotted rgba(255, 255, 255, .45);
  transform: translateY(-4px);
}
.cost__row dd {
  flex: none;
  margin: 0;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

/* el póster es cuadrado y lleva texto adentro: nunca se recorta, sólo se
   limita el ancho para que no estire la sección */
.money__media { display: flex; justify-content: center; }
.money img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* flujo invierte → produces → vendes */
.flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 34px 0 0;
}
.flow__step {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  text-align: center;
}
.flow__step b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.flow__step span { font-size: .9rem; letter-spacing: .03em; }
.flow__arrow {
  align-self: center;
  color: var(--rose);
  transform: rotate(90deg);
}

.result {
  margin-top: 30px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  box-shadow: var(--shadow-lg);
}
.result b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 16vw, 5.4rem);
  font-weight: 700;
  color: var(--wine);
  line-height: .95;
  letter-spacing: -.03em;
}
.result span {
  display: block;
  margin-top: .4rem;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.money__note {
  margin-top: 20px;
  text-align: center;
  font-size: .95rem;
  color: var(--rose-soft);
  opacity: .92;
}
.money .cta-block { margin-top: 34px; }

/* --------------------------------------------------------------------------
   14. Contenido del curso (3.8)
   -------------------------------------------------------------------------- */
.course__list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 4px; }
.course__list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(122, 92, 99, .14);
}
.course__list li:last-child { border-bottom: 0; }
.course__list .icon { margin-top: 4px; }
.course__list b { display: block; font-size: 1.03rem; }
.course__list span { display: block; font-size: .95rem; color: var(--ink-soft); line-height: 1.5; }

/* --------------------------------------------------------------------------
   15. Bonos (3.9)
   -------------------------------------------------------------------------- */
.bonus__grid { display: grid; gap: 16px; margin-top: 30px; }
.bonus {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.bonus__tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.bonus h3 { font-size: 1.16rem; margin-bottom: .35em; }
.bonus p { font-size: .97rem; color: var(--ink-soft); line-height: 1.55; }

/* --------------------------------------------------------------------------
   16. Cintia (3.10)
   -------------------------------------------------------------------------- */
.about__grid { display: flex; flex-direction: column; gap: 30px; }
.about img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about__name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 .4em;
}
.about p { color: var(--ink-soft); }
.about p:first-of-type { color: var(--ink); }

/* --------------------------------------------------------------------------
   17. Testimonios (3.11)
   -------------------------------------------------------------------------- */
.social-proof {
  background: var(--rose-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 28px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}
.social-proof b { color: var(--wine-deep); }

.tstm__grid { display: grid; gap: 16px; }
.tstm {
  background: var(--white);
  border: 1px solid rgba(243, 139, 152, .35);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.tstm__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 12px; }
.tstm p { font-size: 1rem; line-height: 1.6; }
.tstm footer { margin-top: 14px; display: flex; flex-direction: column; }
.tstm__name { font-weight: 600; font-size: .97rem; }
.tstm__at { font-size: .88rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   18. Oferta (3.12) + garantía (3.13)
   -------------------------------------------------------------------------- */
.offer-card {
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: 34px 22px 30px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.offer-card h2 { margin-bottom: .4em; }

.value {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  text-align: left;
}
.value li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .55rem 0;
  font-size: .98rem;
}
.value .dots {
  flex: 1 1 auto;
  min-width: 12px;
  border-bottom: 1px dotted rgba(122, 92, 99, .45);
  transform: translateY(-4px);
}
.value .v { flex: none; color: var(--ink-soft); white-space: nowrap; }
.value .v s { color: var(--ink-soft); }

.value__total {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(122, 92, 99, .2);
  font-size: 1rem;
  color: var(--ink-soft);
}
.value__total s { font-weight: 600; }

.price {
  margin: 14px 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price__label { font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; color: var(--wine); font-weight: 600; }
.price__n {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 17vw, 5rem);
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  letter-spacing: -.03em;
}
.price__sub { font-size: .95rem; color: var(--ink-soft); margin-top: .5rem; }

.offer-card .btn { margin-top: 20px; }
.pay-badge { margin: 20px auto 0; opacity: .95; }

.guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 620px;
  margin: 34px auto 0;
  background: var(--cream);
  border: 1px solid rgba(200, 155, 90, .4);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.seal {
  flex: none;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--wine-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.seal b {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.seal span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.guarantee h3 { margin-bottom: .4em; }
.guarantee p { color: var(--ink-soft); font-size: 1rem; }

/* --------------------------------------------------------------------------
   19. FAQ (3.14)
   -------------------------------------------------------------------------- */
.faq__list { margin-top: 28px; }
.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  flex: none;
  color: var(--wine);
  transition: transform .22s ease-out;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__item p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   20. Cierre (3.15)
   -------------------------------------------------------------------------- */
.closing { text-align: center; padding: 66px 0; }
.closing h2 { max-width: 16ch; margin-left: auto; margin-right: auto; }
.closing p { max-width: 46ch; margin-left: auto; margin-right: auto; font-size: 1.08rem; }
.closing .cta-block { margin-top: 28px; }

/* --------------------------------------------------------------------------
   21. Pie (3.16)
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: #D9C4C8;
  padding: 40px 0 34px;
  text-align: center;
  font-size: .9rem;
}
.footer .pay-badge {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 24px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--white);
  opacity: 1;
}
.footer nav { margin-bottom: 18px; }
.footer nav a { color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 2px; }
.footer nav a:hover { border-bottom-color: var(--rose); }
.footer nav span { margin: 0 .6rem; opacity: .5; }
.footer__disclaimer {
  max-width: 62ch;
  margin: 0 auto 16px;
  font-size: .78rem;
  line-height: 1.6;
  color: #A4898E;
}
.footer__legal { font-size: .8rem; color: #A4898E; }

/* --------------------------------------------------------------------------
   22. Barra fija de CTA (sólo móvil)
   -------------------------------------------------------------------------- */
.cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 248, 245, .97);
  border-top: 1px solid var(--rose-soft);
  box-shadow: 0 -8px 24px rgba(198, 70, 87, .12);
  transform: translateY(110%);
  transition: transform .28s ease-out;
}
.cta-bar.is-visible { transform: translateY(0); }
.cta-bar__price { flex: none; line-height: 1.15; text-align: left; }
.cta-bar__price s { display: block; font-size: .72rem; color: var(--ink-soft); }
.cta-bar__price b {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: -.02em;
}
.cta-bar .btn { min-height: 52px; font-size: .95rem; padding: .7rem 1rem; }

/* --------------------------------------------------------------------------
   23. Reveal al hacer scroll
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease-out, transform .4s ease-out;
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   24. Tablet — 720px
   -------------------------------------------------------------------------- */
@media (min-width: 720px) {
  body { font-size: 17px; }
  .section { padding: 84px 0; }
  .section--tight { padding: 58px 0; }

  .hero { padding: 56px 0 76px; }
  .hero__points { flex-direction: row; flex-wrap: wrap; gap: 1.4rem; }

  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stats__item + .stats__item { box-shadow: inset 1px 0 0 rgba(155, 50, 65, .16); }

  .pain__grid { grid-template-columns: repeat(3, 1fr); }
  .flavors__grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .bonus__grid { grid-template-columns: repeat(2, 1fr); }
  .tstm__grid { grid-template-columns: repeat(2, 1fr); }
  .course__list { grid-template-columns: repeat(2, 1fr); gap: 0 34px; }

  .flow { flex-direction: row; align-items: center; gap: 12px; }
  .flow__step { flex: 1; }
  .flow__arrow { transform: none; }

  .money h2 { max-width: 22ch; }
  .money__top { flex-direction: row; align-items: center; gap: 42px; }
  .money__top > * { flex: 1 1 0; min-width: 0; }

  .method__grid { flex-direction: row; align-items: center; gap: 46px; }
  .method__grid > * { flex: 1 1 0; min-width: 0; }

  .about__grid { flex-direction: row; align-items: center; gap: 46px; }
  .about__grid > .about__media { flex: 0 0 40%; }
  .about__grid > .about__text { flex: 1 1 0; min-width: 0; }

  .guarantee { flex-direction: row; text-align: left; gap: 28px; padding: 32px; }

  .offer-card { padding: 44px 46px 38px; }
  .cta-bar { display: none; }
}

/* --------------------------------------------------------------------------
   25. Escritorio — 1024px
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .section { padding: 104px 0; }
  .hero__inner { flex-direction: row; align-items: center; gap: 56px; }
  .hero__text { flex: 1 1 54%; }
  .hero__media { flex: 1 1 46%; }
  .hero__sub { font-size: 1.2rem; }
  .hero .btn { max-width: 380px; }
  .hero .cta-block { align-items: flex-start; text-align: left; }

  .money { padding: 108px 0; }
  .result b { font-size: 5.6rem; }
}

/* --------------------------------------------------------------------------
   26. Movimiento reducido
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .cta-bar { transition: none; }
}

/* guías punteadas: sólo cuando hay ancho para que se vean enteras */
@media (max-width: 599px) {
  .cost__row .dots, .value .dots { display: none; }
  .cost__row, .value li { justify-content: space-between; gap: 1rem; }
  /* el rótulo cede espacio y parte en dos líneas; el importe nunca se corta */
  .cost__row dt, .value li > span:first-child { flex: 0 1 auto; min-width: 0; max-width: none; }
  .cost__row dd, .value .v { flex: 0 0 auto; }
}

/* --------------------------------------------------------------------------
   27. Espacio bajo el pie cuando la barra fija está visible (sólo móvil)
   -------------------------------------------------------------------------- */
@media (max-width: 719px) {
  body.has-cta-bar { padding-bottom: 84px; }
}
