/* NutriLoPets — hoja de estilos de la landing.
   Guía visual del 15 de septiembre de 2026: ancho completo, fondo crema,
   hero lima, titulares en mayúsculas, tarjetas pastel con patrones,
   cinta de texto y destellos. Los tokens viven en tema.css. Outfit para el
   texto, Geist Mono para etiquetas. Mobile-first. Sin frameworks. */

:root {
  --font: var(--font-sans), system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: var(--font-mono), ui-monospace, monospace;
  --container: 1440px;
  --r-xl: 2rem;
  --r-lg: 1.5rem;
  --r-md: 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  letter-spacing: var(--letter-spacing);
  color: var(--foreground);
  background: var(--sheet);
}

/* La página va a ancho completo (pedido de Juan): sin marco ni caja. */
.sheet { background: var(--sheet); min-height: 100vh; }

h1, h2, h3 { margin: 0; color: var(--green-deep); font-weight: 800; }
h1, h2 { text-transform: uppercase; line-height: 0.98; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.2; }
.brand { text-transform: none; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
@media (min-width: 1200px) { .container { width: min(100% - 4rem, var(--container)); } }
.hero > .container, .header > .container { width: min(100% - 2rem, 1840px); }
@media (min-width: 1200px) { .hero > .container, .header > .container { width: min(100% - 3rem, 1840px); } }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-head { max-width: 60ch; }
.section-head p { margin-top: 1.1rem; font-size: 1.08rem; color: var(--muted-foreground); }
.section-head-center { text-align: center; margin-inline: auto; }
.section-bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cta-inline { margin-top: 1.6rem; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.eyebrow::before { content: ""; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--lime); outline: 2px solid var(--green-deep); }

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

/* ---------- Botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  will-change: transform;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn span { position: relative; transition: transform 0.18s ease; }
.btn:hover span { transform: translateX(3px); }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-130%); transition: transform 0.65s ease;
}
.btn:hover::before { transform: translateX(130%); }
.btn-outline::after {
  content: ""; position: absolute; inset: 0; z-index: -2; border-radius: inherit;
  background: var(--green-deep); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.btn-outline:hover::after { transform: scaleX(1); }
/* Los botones del hero laten y la flecha invita a seguir */
.hero .cta-row .btn-deep { animation: latido 2.8s ease-out infinite; }
.hero .cta-row .btn span { animation: flecha 2.4s ease-in-out infinite; }
.hero .cta-row .btn-outline span { animation-delay: -1.2s; }
@keyframes latido {
  0% { box-shadow: 0 0 0 0 rgba(15, 75, 53, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(15, 75, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 75, 53, 0); }
}
@keyframes flecha {
  0%, 55%, 100% { transform: translateX(0); }
  70% { transform: translateX(5px); }
  85% { transform: translateX(0); }
}
.btn:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 3px; }
.btn-deep { background: var(--green-deep); color: var(--sheet); }
.btn-deep:hover { background: var(--green-ink); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--green-deep); color: var(--green-deep); }
.btn-outline:hover { color: var(--sheet); transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--green-deep); }
.btn-lime:hover { background: var(--lime-soft); transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.72rem 1.1rem; font-size: 0.74rem; }
.btn-lg { padding: 1.1rem 1.7rem; font-size: 0.9rem; }

/* ---------- Barra superior y cabecera ---------- */

.topbar {
  margin: 0;
  padding: 0.55rem 1rem;
  background: var(--green-deep);
  color: var(--lime);
  text-align: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 239, 228, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px oklch(0 0 0 / 0.08); background: rgba(243, 239, 228, 0.96); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.wordmark { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.03em; color: var(--green-deep); text-decoration: none; white-space: nowrap; }
.wordmark span { color: var(--primary); }
.nav { display: none; gap: 1.5rem; }
.nav a { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; color: var(--green-deep); }
.nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.header .btn { white-space: nowrap; }
@media (min-width: 900px) { .nav { display: flex; } }

/* ---------- Hero ---------- */

.hero { padding-block: 0 clamp(2rem, 4vw, 3rem); }
.hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4.5vw, 4.25rem);
  background: var(--lime);
  border-radius: var(--r-xl);
}
.hero-copy { position: relative; z-index: 2; }
.hero .lead { margin-top: 1.3rem; max-width: 54ch; color: var(--green-deep); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.8rem; }
.cta-row-center { justify-content: center; margin-top: 1.5rem; }
.price-line { margin-top: 1.4rem; font-weight: 700; color: var(--green-deep); }
.trust { margin-top: 0.4rem; font-size: 0.93rem; color: var(--green-deep); opacity: 0.8; }

.hero-visual { position: relative; min-height: 380px; padding-top: 2.5rem; display: grid; align-items: end; justify-items: center; align-self: end; }
.hero-photo {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  height: auto;
  margin-bottom: calc(-1 * clamp(1.5rem, 4.5vw, 4.25rem));
  filter: drop-shadow(0 24px 40px rgba(11, 58, 41, 0.35));
}
/* Mancha de pintura: forma orgánica que ondula (SMIL) y gira despacio (CSS) */
.hero-blob {
  position: absolute;
  right: -22%;
  bottom: -28%;
  width: 124%;
  height: 122%;
  overflow: visible;
  transform-origin: 50% 50%;
  animation: girar 90s linear infinite;
  will-change: transform;
}
@keyframes girar { to { transform: rotate(360deg); } }
.plan-float { position: relative; z-index: 2; width: min(100%, 380px); }

.sparkle { position: absolute; width: 2rem; height: 2rem; color: var(--green-deep); z-index: 3; animation: twinkle 3.6s ease-in-out infinite; }
.sparkle-1 { top: 4%; left: 2%; width: 2.4rem; height: 2.4rem; }
.sparkle-2 { top: 10%; right: 6%; color: var(--lime); animation-delay: -1.2s; }
.sparkle-3 { top: 48%; left: -2%; width: 1.4rem; height: 1.4rem; animation-delay: -2s; }
.sparkle-4 { bottom: 8%; right: 14%; color: var(--lime); width: 1.6rem; height: 1.6rem; animation-delay: -0.6s; }
.sparkle-a { top: 1.2rem; right: 1.4rem; }
.sparkle-b { top: 1.2rem; left: 1.4rem; }
.sparkle-c { top: 1.5rem; left: 2rem; }
.sparkle-d { bottom: 1.5rem; right: 2.5rem; width: 1.5rem; height: 1.5rem; animation-delay: -1.5s; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(0.72) rotate(18deg); opacity: 0.7; }
}


@media (min-width: 960px) {
  .hero-card { grid-template-columns: 1.3fr 0.9fr; align-items: center; gap: 3rem; }
  .hero-visual { min-height: 540px; padding-top: 0; justify-items: end; }
  .hero-photo { width: min(122%, 780px); max-width: none; margin-right: -8%; }
  .hero-blob { right: -28%; bottom: -36%; width: 138%; height: 140%; }
}

/* ---------- Cinta ---------- */

.marquee { overflow: hidden; background: var(--green-deep); color: var(--lime); padding: 0.85rem 0; }
.marquee-track { display: flex; width: max-content; gap: 2.4rem; animation: marquee 42s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 2.4rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.marquee-track span::after { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: currentColor; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Tarjetas pastel (motivos) ---------- */

.grid { display: grid; gap: 1.25rem; margin-top: 2.25rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 800px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.tile { display: grid; gap: 0.45rem; align-content: start; }
.tile h3 { margin-top: 0.6rem; font-size: 1.35rem; font-weight: 800; }
.tile p { color: var(--muted-foreground); }
.tile-art {
  position: relative;
  height: 200px;
  border-radius: var(--r-md);
  background-color: var(--sun);
  background-size: 88px 88px;
  transition: transform 0.3s ease, background-position 0.6s ease;
}
.tile:hover .tile-art { transform: translateY(-4px); background-position: 20px 12px; }
.tile-index { position: absolute; top: 0.9rem; left: 0.9rem; padding: 0.3rem 0.6rem; border-radius: 999px; background: var(--sheet); color: var(--green-deep); font-family: var(--mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; }
.art-sun { background-color: var(--sun); }
.art-peach { background-color: var(--peach); }
.art-mint { background-color: var(--mint); }
.art-lime { background-color: var(--lime-soft); }
.art-bone { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' width='88' height='88'%3E%3Cg fill='%230f4b35' fill-opacity='.22' transform='rotate(-28 44 44)'%3E%3Crect x='26' y='38' width='36' height='12' rx='6'/%3E%3Ccircle cx='26' cy='36' r='8'/%3E%3Ccircle cx='26' cy='52' r='8'/%3E%3Ccircle cx='62' cy='36' r='8'/%3E%3Ccircle cx='62' cy='52' r='8'/%3E%3C/g%3E%3C/svg%3E"); }
.art-fish { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' width='88' height='88'%3E%3Cg fill='%230f4b35' fill-opacity='.22' transform='rotate(-18 44 44)'%3E%3Cellipse cx='38' cy='44' rx='22' ry='13'/%3E%3Cpath d='M58 44l16-12v24z'/%3E%3C/g%3E%3C/svg%3E"); }
.art-leaf { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' width='88' height='88'%3E%3Cpath d='M22 66C22 38 40 20 68 20c0 28-18 46-46 46z' fill='%230f4b35' fill-opacity='.22'/%3E%3C/svg%3E"); }
.art-heart { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' width='88' height='88'%3E%3Cpath d='M44 68S22 54 22 38a12 12 0 0 1 22-7 12 12 0 0 1 22 7c0 16-22 30-22 30z' fill='%230f4b35' fill-opacity='.22' transform='rotate(-12 44 44)'/%3E%3C/svg%3E"); }
.art-drop { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' width='88' height='88'%3E%3Cpath d='M44 18s18 20 18 33a18 18 0 0 1-36 0c0-13 18-33 18-33z' fill='%230f4b35' fill-opacity='.22'/%3E%3C/svg%3E"); }

/* ---------- Franjas ---------- */

.band-deep { background: var(--green-deep); color: var(--sheet); }
.band-deep h2 { color: var(--lime); }
.band-deep h3 { color: var(--lime); }
.band-deep .eyebrow { color: var(--lime); }
.band-deep .eyebrow::before { background: var(--lime); outline-color: var(--lime); }
.band-deep .section-head p { color: rgba(243, 239, 228, 0.82); }
.band-deep .closing-line { color: var(--lime); }
/* Borde superior festoneado: arcos del mismo verde que suben sobre la hoja crema */
.band-scallop { position: relative; }
.band-scallop::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -27px;
  height: 28px;
  background-image: radial-gradient(circle at 50% 100%, var(--green-deep) 0 25.5px, transparent 26.5px);
  background-size: 52px 28px;
  background-repeat: repeat-x;
  background-position: 0 100%;
  pointer-events: none;
}

/* ---------- Cómo funciona ---------- */

.steps { list-style: none; margin-top: 0; display: grid; gap: 1rem; counter-reset: paso; }
.steps > li {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.4rem;
  background: var(--popover);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  counter-increment: paso;
}
.steps > li::before {
  content: counter(paso);
  position: absolute;
  left: 1.3rem;
  top: 1.45rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--lime);
  font-weight: 800;
  display: grid;
  place-items: center;
}
.steps h3 { margin-bottom: 0.45rem; }
.steps > li > p { color: var(--muted-foreground); }
.steps-single { max-width: 760px; }
.step-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.step-note { margin-top: 0.85rem; font-size: 0.95rem; color: var(--muted-foreground); }
.steps .list-title { margin-top: 1.25rem; font-weight: 700; color: var(--green-deep); }
.steps .check-list { margin-top: 0.6rem; }
.steps .check-list li { color: var(--foreground); }

.band-deep .steps > li { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); color: var(--sheet); }
.band-deep .steps > li > p { color: rgba(243, 239, 228, 0.8); }
.band-deep .steps h3 { color: var(--lime); }

.video-block { margin-top: 2rem; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--r-md); padding: 1.5rem; }
.video-block video { width: 100%; border-radius: var(--radius-sm); margin-top: 1rem; background: #000; }
/* Marcador del video: un rectángulo 16:9 con el botón de reproducir y la palabra "Video" */
.video-placeholder {
  position: relative;
  margin-top: 1rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-ink), var(--primary));
  border: 1.5px dashed rgba(207, 230, 84, 0.55);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.video-placeholder-play { width: 4rem; height: 4rem; border-radius: 50%; background: var(--lime); position: relative; box-shadow: 0 0 0 10px rgba(207, 230, 84, 0.18); }
.video-placeholder-play::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-40%, -50%); border-style: solid; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent var(--green-deep); }

/* Línea de tiempo */
.timeline { display: grid; gap: 2.5rem; }
.steps-timeline { position: relative; padding-left: 3.4rem; }
.steps-timeline > li { padding-left: 1.5rem; }
.steps-timeline > li::before { left: -3.4rem; top: 1.35rem; background: transparent; color: var(--lime); border: 2px solid rgba(207, 230, 84, 0.5); transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease; }
.steps-timeline > li.is-active::before { background: var(--lime); color: var(--green-deep); border-color: var(--lime); transform: scale(1.08); }
.timeline-line { position: absolute; left: 1.05rem; top: 1.5rem; bottom: 1.5rem; width: 3px; border-radius: 3px; background: rgba(255, 255, 255, 0.16); overflow: hidden; }
.timeline-line span { display: block; width: 100%; height: 100%; background: var(--lime); transform-origin: top; transform: scaleY(0); }
/* La línea termina en el número 4: el último paso tapa lo que sobra con el color de la franja */
.steps-timeline > li:last-child::after { content: ""; position: absolute; z-index: 1; left: -2.5rem; width: 0.6rem; top: 2.45rem; bottom: -1.25rem; background: var(--green-deep); }
.steps-timeline > li::before { z-index: 2; }   /* el número queda encima del tapón */
.timeline-closing { grid-column: 1 / -1; margin-left: 3.4rem; }   /* alineado con las tarjetas de los pasos */
/* Anuncio como quinta tarjeta de la línea de tiempo: misma forma que los pasos */
.announce {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  width: auto;
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--lime);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}
.announce > span:last-child { flex: 1 1 24ch; }
.announce-tag {
  flex: 0 0 auto;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-deep);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 960px) {
  .timeline { grid-template-columns: 0.9fr 1.1fr; gap: 2rem 4rem; align-items: start; }
  .timeline-intro { position: sticky; top: 96px; }
  .timeline-closing { grid-column: 2; }
}

/* ---------- Secciones partidas ---------- */

.split { display: grid; gap: 2.5rem; align-items: center; }
.art-card { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(1.75rem, 4vw, 3rem); min-height: 380px; display: grid; align-content: center; }
.art-card-lime { background: linear-gradient(160deg, var(--lime-soft) 0%, var(--lime) 100%); color: var(--green-deep); }
.plan-stage { display: grid; place-items: center; }
.plan-stage .plan-float { width: min(100%, 420px); }
.split-copy .check-list { margin-top: 1.5rem; }
.split-copy .check-list + .lead { margin-top: 1.5rem; }
.art-card-peach { background: var(--peach); color: var(--green-deep); }
.split-copy .lead { margin-top: 1.1rem; color: var(--muted-foreground); }
.check-list { list-style: none; display: grid; gap: 0.9rem; }
.check-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.check-list svg { flex: 0 0 1.5rem; width: 1.5rem; height: 1.5rem; margin-top: 0.15rem; }
.check-list-lg li { font-size: 1.08rem; font-weight: 600; padding: 0.2rem 0; }
.check-list-lg svg { width: 1.75rem; height: 1.75rem; flex-basis: 1.75rem; }
/* Quiénes somos: columna centrada y más estrecha, foto con etiqueta flotante */
.people { display: grid; gap: 2.5rem; max-width: 860px; margin: 2.5rem auto 0; }
.person-card { display: grid; justify-items: center; text-align: center; }
.person-photo { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-lg); transition: transform 0.3s ease; }
.person-card:hover .person-photo { transform: translateY(-4px); }
/* Etiqueta blanca festoneada con esquinas redondeadas. El contorno lo dibuja
   js/etiquetas.js como SVG detrás del texto; sin JS es una tarjeta redondeada. */
.person-label {
  position: relative;
  width: 86%;
  margin-top: -3.5rem;
  padding: calc(1rem + 14px) calc(1.25rem + 14px) calc(1rem + 14px);
  color: var(--popover);
  background: var(--popover);
  border-radius: 22px;
  filter: drop-shadow(0 14px 18px rgba(11, 58, 41, 0.22));
}
.person-label.has-shape { background: transparent; border-radius: 0; }
.person-label .label-shape { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.person-label h3, .person-label .role { position: relative; }
.person-label h3 { color: var(--green-deep); }
.person-label h3 { font-size: 1.3rem; font-weight: 800; }
.person-label .role { margin-top: 0.2rem; font-size: 0.95rem; font-weight: 600; color: var(--muted-foreground); }
.person-bio { margin-top: 1.1rem; max-width: 36ch; color: var(--muted-foreground); font-size: 0.98rem; }
.person-card .handle { display: inline-block; margin-top: 0.6rem; font-size: 0.92rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.person-card .handle:hover { text-decoration: underline; }
@media (min-width: 720px) { .people { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
.closing-line { margin-top: 1.75rem; font-size: 1.1rem; font-weight: 700; color: var(--green-deep); max-width: 60ch; }
@media (min-width: 800px) { .people { gap: 2rem; } }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split-reverse .split-art { order: 2; }
}

/* ---------- Un plan real, página por página ---------- */

.band-arena-soft { background: var(--secondary); }
.plan-pages { display: grid; grid-auto-flow: column; grid-auto-columns: min(88%, 380px); gap: 1.25rem; margin-top: 2.25rem; padding: 0.5rem 0.25rem 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.plan-pages::-webkit-scrollbar { display: none; }
.plan-page {
  position: relative;
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 1.25rem 1.35rem;
  background: var(--popover);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  line-height: 1.45;
  transition: transform 0.3s ease;
}
.plan-page:hover { transform: translateY(-6px); }
.plan-page::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3.5rem; background: linear-gradient(transparent, var(--popover)); }
.plan-page-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding-bottom: 0.7rem; margin-bottom: 0.9rem; border-bottom: 2px solid var(--green-deep); }
.plan-page-brand { font-weight: 800; font-size: 0.95rem; color: var(--green-deep); letter-spacing: -0.02em; }
.plan-page-brand span { color: var(--primary); }
.plan-page-title { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-foreground); }
.plan-page h3 { display: flex; align-items: center; gap: 0.5rem; margin: 0.9rem 0 0.5rem; font-size: 0.86rem; font-weight: 800; color: var(--green-deep); text-transform: none; }
.plan-num { width: 1.3rem; height: 1.3rem; border-radius: 50%; background: var(--lime); color: var(--green-deep); display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; flex: 0 0 auto; }
.plan-datos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 0.75rem; margin: 0; }
.plan-datos div { padding: 0.4rem 0.55rem; border-radius: 6px; background: var(--sheet); }
.plan-datos dt { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-foreground); }
.plan-datos dd { margin: 0.1rem 0 0; font-weight: 700; color: var(--green-deep); }
.plan-parrafo { margin-top: 0.35rem; }
.plan-parrafo-suave { margin-top: 0.4rem; color: var(--muted-foreground); }
.plan-tabla { width: 100%; border-collapse: collapse; font-size: 0.72rem; }
.plan-tabla th { text-align: left; font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-foreground); padding: 0.3rem 0.35rem; border-bottom: 1px solid var(--border); }
.plan-tabla td { padding: 0.38rem 0.35rem; border-bottom: 1px solid var(--muted); vertical-align: top; }
.plan-tabla td:first-child { font-weight: 700; color: var(--green-deep); white-space: nowrap; }
.plan-tabla td:nth-child(2), .plan-tabla td:nth-child(3) { white-space: nowrap; }
.plan-lista { list-style: none; display: grid; gap: 0.4rem; }
.plan-lista li { padding-left: 0.85rem; position: relative; }
.plan-lista li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 0.35rem; height: 0.35rem; border-radius: 50%; background: var(--lime); outline: 1.5px solid var(--green-deep); }
.plan-lista strong { color: var(--green-deep); }
.plan-nota { margin-top: 1.25rem; text-align: center; font-size: 0.92rem; color: var(--muted-foreground); }
@media (min-width: 1000px) {
  .plan-pages { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; gap: 1.75rem; max-width: 1180px; margin-inline: auto; }
  .plan-page:nth-child(1) { transform: rotate(-1.5deg); }
  .plan-page:nth-child(3) { transform: rotate(1.5deg); }
  .plan-page:hover { transform: translateY(-6px) rotate(0); }
}

/* ---------- Testimonios: slider de tarjetas verdes con audio, video o texto ---------- */

.slider { position: relative; margin-top: 2.25rem; }
.testimonios {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1.25rem;
  padding: 0.5rem 0.25rem 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.testimonios::-webkit-scrollbar { display: none; }
.testimonios:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 4px; border-radius: var(--r-lg); }
.testimonio {
  position: relative;
  scroll-snap-align: start;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.5rem;
  border-radius: var(--r-lg);
  background: var(--green-deep);
  color: var(--sheet);
  box-shadow: var(--shadow-md);
}
.testimonio-head { display: flex; align-items: center; gap: 0.85rem; }
.testimonio-head > div { flex: 1 1 auto; min-width: 0; }
.testimonio-chip { flex: 0 0 auto; align-self: flex-start; padding: 0.3rem 0.65rem; border-radius: 999px; background: rgba(207, 230, 84, 0.16); color: var(--lime); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.testimonio-avatar { flex: 0 0 auto; width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; background: var(--lime); color: var(--green-deep); display: grid; place-items: center; font-weight: 800; font-size: 0.95rem; }
.testimonio-nombre { font-weight: 700; color: var(--sheet); }
.testimonio-rol { font-size: 0.85rem; color: rgba(243, 239, 228, 0.72); }
.testimonio-texto { font-size: 0.98rem; line-height: 1.55; color: rgba(243, 239, 228, 0.92); }
.testimonio-clip { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius-sm); background: #000; }
.testimonio-foto { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius-sm); }

.audio { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; padding: 0.5rem 0.75rem 0.5rem 0.5rem; border-radius: 999px; background: rgba(243, 239, 228, 0.1); }
.audio-play { flex: 0 0 auto; width: 2.5rem; height: 2.5rem; border: 0; border-radius: 50%; background: var(--lime); cursor: pointer; position: relative; transition: transform 0.18s ease, background-color 0.18s ease; }
.audio-play:hover { transform: scale(1.06); background: var(--lime-soft); }
.audio-play:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.audio-play::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-40%, -50%); border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent var(--green-deep); }
.is-playing .audio-play::before { transform: translate(-50%, -50%); border-width: 0; width: 10px; height: 12px; border-left: 4px solid var(--green-deep); border-right: 4px solid var(--green-deep); }
.audio-onda { flex: 1 1 auto; display: flex; align-items: center; gap: 2px; height: 2.25rem; cursor: pointer; }
.audio-onda:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; border-radius: 4px; }
.audio-onda span { flex: 1 1 0; min-width: 2px; border-radius: 2px; background: rgba(243, 239, 228, 0.45); transition: background-color 0.15s ease; }
.audio-onda span.is-past { background: var(--lime); }
.audio-tiempo { flex: 0 0 auto; font-family: var(--mono); font-size: 0.72rem; color: rgba(243, 239, 228, 0.8); min-width: 2.6rem; text-align: right; }

/* Flechas y puntos del slider */
.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid var(--green-deep);
  background: var(--sheet);
  color: var(--green-deep);
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  box-shadow: var(--shadow-md);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.slider-btn:hover { background: var(--green-deep); color: var(--lime); }
.slider-btn:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 3px; }
.slider-btn[aria-disabled="true"] { opacity: 0.35; cursor: default; }
.slider-btn[aria-disabled="true"]:hover { background: var(--sheet); color: var(--green-deep); }
.slider-prev { left: -0.75rem; }
.slider-next { right: -0.75rem; }
.slider-dots { display: flex; justify-content: center; gap: 0.25rem; margin-top: 1rem; }
/* El botón mide 44 px para el dedo; el punto visible es el ::before */
.slider-dots button { position: relative; width: 1.5rem; height: 2.75rem; padding: 0; border: 0; background: transparent; cursor: pointer; transition: width 0.25s ease; }
.slider-dots button::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 0.6rem; height: 0.6rem; border-radius: 999px; background: var(--border); transition: width 0.25s ease, background-color 0.25s ease; }
.slider-dots button:hover::before { background: var(--muted-foreground); }
.slider-dots button[aria-selected="true"] { width: 2.5rem; }
.slider-dots button[aria-selected="true"]::before { width: 1.75rem; background: var(--green-deep); }
.slider-dots button:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 3px; }

@media (min-width: 720px) { .testimonios { grid-auto-columns: calc(50% - 0.625rem); } }
@media (min-width: 1100px) {
  .testimonios { grid-auto-columns: calc((100% - 3rem) / 3); gap: 1.5rem; }
  .slider-prev { left: -1.75rem; }
  .slider-next { right: -1.75rem; }
}
@media (max-width: 719px) {
  .slider-btn { top: auto; bottom: -3.4rem; transform: none; width: 2.75rem; height: 2.75rem; }
  .slider-prev { left: 0; }
  .slider-next { right: 0; }
  .slider-dots { margin-top: 1.5rem; min-height: 2.75rem; align-items: center; }
}

/* ---------- Precio ---------- */

.price-card { max-width: 640px; margin: 2.25rem auto 0; background: var(--popover); color: var(--popover-foreground); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-md); }
/* Wizard de tres pasos */
.wizard-progress { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1.5rem; }
.wizard-progress li { display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.7rem; border-radius: 999px; background: var(--sheet); color: var(--muted-foreground); font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.wizard-progress li span { width: 1.4rem; height: 1.4rem; border-radius: 50%; display: grid; place-items: center; background: var(--border); color: var(--green-deep); font-size: 0.75rem; font-weight: 800; flex: 0 0 auto; }
.wizard-progress li.is-active { background: var(--green-deep); color: var(--sheet); }
.wizard-progress li.is-active span { background: var(--lime); color: var(--green-deep); }
.wizard-progress li.is-done { color: var(--green-deep); }
.wizard-progress li.is-done span { background: var(--green-deep); color: var(--lime); }
.wizard-step h3 { font-size: 1.35rem; font-weight: 800; color: var(--green-deep); margin-bottom: 0.25rem; }
.field { display: grid; gap: 0.35rem; margin-top: 1.1rem; }
.field > span { font-size: 0.92rem; font-weight: 700; color: var(--green-deep); }
.field input, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--popover);
  color: var(--foreground);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%230f4b35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field input:focus, .field select:focus { outline: none; border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(15, 75, 53, 0.15); }
.field input.is-invalid, .field select.is-invalid { border-color: var(--warm); box-shadow: 0 0 0 3px rgba(201, 100, 66, 0.18); }
.field input::placeholder { color: var(--muted-foreground); opacity: 0.7; }
.consent { display: flex; gap: 0.65rem; align-items: flex-start; margin-top: 1.1rem; font-size: 0.92rem; color: var(--foreground); }
.consent input { width: 1.15rem; height: 1.15rem; margin-top: 0.15rem; accent-color: var(--green-deep); flex: 0 0 auto; }
.consent a { color: var(--primary); }
.wizard-error { margin-top: 0.9rem; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm); background: rgba(201, 100, 66, 0.12); color: #8a3f26; font-size: 0.92rem; font-weight: 600; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.wizard-nav > :only-child { margin-left: auto; }
.wizard-nav-end { justify-content: center; margin-top: 1rem; }
.wizard-summary { margin-top: 0.5rem; color: var(--muted-foreground); }
.wizard-summary strong { color: var(--green-deep); }
.wizard-step[hidden] { display: none; }

.choice { margin-top: 1.25rem; }
.choice-label { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--green-deep); }
.segmented { display: inline-flex; background: var(--sheet); border-radius: 999px; padding: 0.25rem; }
.segmented label { position: relative; }
.segmented input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.segmented span { display: inline-block; padding: 0.6rem 1.15rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem; color: var(--secondary-foreground); transition: background-color 0.18s ease, color 0.18s ease; }
.segmented input:checked + span { background: var(--green-deep); color: var(--lime); }
.segmented input:focus-visible + span { outline: 2px solid var(--green-deep); outline-offset: 2px; }
.price-row { margin-top: 1.75rem; display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.price { font-size: clamp(3rem, 6vw, 4rem); font-weight: 800; line-height: 1; color: var(--green-deep); letter-spacing: -0.03em; }
.price-currency { font-size: 1.1rem; font-weight: 700; color: var(--muted-foreground); }
.price-tag { flex-basis: 100%; font-size: 0.9rem; font-weight: 600; color: var(--green-deep); }
.price-cop { font-size: 1.05rem; font-weight: 700; color: var(--muted-foreground); }
.cupos { margin-top: 0.75rem; display: inline-block; padding: 0.4rem 0.8rem; border-radius: 999px; background: var(--sun); color: var(--green-deep); font-size: 0.88rem; font-weight: 700; }
.pago-medios { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem; margin-top: 0.9rem; }
.pago-medios li { padding: 0.3rem 0.7rem; border-radius: 999px; background: var(--sheet); color: var(--green-deep); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.pago-medios li:first-child { background: var(--lime-soft); }
.garantia { display: flex; gap: 0.7rem; align-items: flex-start; margin-top: 1rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm); background: var(--sheet); color: var(--green-deep); font-size: 0.92rem; font-weight: 600; line-height: 1.45; }
.garantia svg { flex: 0 0 1.4rem; width: 1.4rem; height: 1.4rem; margin-top: 0.1rem; }
.price-note { margin-top: 0.5rem; color: var(--muted-foreground); }
.price-card .check-list { margin-top: 1.5rem; color: var(--green-deep); }
.price-card .btn { margin-top: 1.75rem; }
.after-pay { margin-top: 1rem; font-size: 0.93rem; color: var(--muted-foreground); text-align: center; }

/* ---------- FAQ: pestañas por tipo y una tarjeta por pregunta ---------- */

.faq-tabs { display: none; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; }
.js .faq-tabs { display: flex; }
.faq-tabs button {
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--popover);
  color: var(--green-deep);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.faq-tabs button:hover { border-color: var(--green-deep); }
.faq-tabs button[aria-selected="true"] { background: var(--green-deep); border-color: var(--green-deep); color: var(--sheet); }
.faq-tabs button:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 3px; }

.faq { display: grid; gap: 0.75rem; max-width: 860px; margin: 1.75rem auto 0; }
.faq details {
  background: var(--popover);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details:hover, .faq details[open] { border-color: var(--green-deep); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq details.is-hidden { display: none; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 600; font-size: 1.05rem; color: var(--green-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: 0 0 auto; font-size: 1.5rem; line-height: 1; color: var(--green-deep); transition: transform 0.25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 0.8rem; max-width: 70ch; color: var(--muted-foreground); }
.faq-body { overflow: hidden; }

/* ---------- Cierre y pie ---------- */

.closing-card { position: relative; overflow: hidden; background: var(--lime); border-radius: var(--r-xl); padding: clamp(2.25rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3rem); text-align: center; }
.closing-card h2 { max-width: 20ch; margin-inline: auto; }
.closing-card .cta-row { justify-content: center; }

.footer { background: var(--green-deep); color: var(--sheet); padding-block: 3rem; font-size: 0.95rem; }
.footer .container { display: grid; gap: 1.5rem; }
.footer .wordmark { color: var(--sheet); }
.footer .wordmark span { color: var(--lime); }
.footer .tagline { margin-top: 0.35rem; }
.footer .signature { font-style: italic; opacity: 0.8; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { color: var(--sheet); text-decoration: none; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links a:hover { color: var(--lime); }
.footer .policy { opacity: 0.8; max-width: 60ch; }
@media (min-width: 800px) {
  .footer .container { grid-template-columns: 1fr auto; align-items: start; }
  .footer .policy { grid-column: 1 / -1; }
}

/* ---------- Páginas de texto (gracias, privacidad, términos) ---------- */
.thanks-page { padding-block: clamp(3rem, 6vw, 5rem); }
.thanks-page .section-head p { color: var(--foreground); }
.prose { max-width: 72ch; }
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
.prose h2 { font-size: 1.25rem; margin-top: 2.25rem; margin-bottom: 0.6rem; text-transform: none; letter-spacing: 0; line-height: 1.2; }
.prose p { margin-top: 0.9rem; }
.prose .prose-date { margin-top: 0.75rem; font-size: 0.93rem; color: var(--muted-foreground); }
.prose a { color: var(--primary); }

/* =====================================================================
   Capa de movimiento. Solo el hero se oculta antes de que arranque el JS
   (la red de seguridad de index.html lo muestra a los 3 s si no arranca).
   Lo demás lo oculta motion.js, y solo lo que todavía no está en pantalla,
   así nada parpadea aunque el JS llegue tarde.
   ===================================================================== */

.js:not(.motion-off) [data-hero-item],
.js:not(.motion-off) [data-hero-photo] { opacity: 0; }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 100%; background: var(--lime); transform-origin: left; transform: scaleX(0); }

/* Tarjeta del plan (hero) */
.plan-float { animation: float 7s ease-in-out infinite; }
.plan-card { position: relative; background: var(--popover); color: var(--popover-foreground); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: 0 24px 60px -20px rgba(11, 58, 41, 0.55); }
.plan-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--muted); }
.plan-kicker { font-family: var(--mono); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-foreground); }
.plan-title { margin-top: 0.25rem; font-size: 1.25rem; font-weight: 800; color: var(--green-deep); }
.plan-chip { flex: 0 0 auto; padding: 0.35rem 0.7rem; border-radius: 999px; background: var(--sun); color: var(--green-deep); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.plan-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--muted); }
.plan-row:last-of-type { border-bottom: 0; }
.plan-label { font-weight: 600; font-size: 0.95rem; }
.plan-bars { display: flex; align-items: flex-end; gap: 0.35rem; height: 2.4rem; }
.plan-bars span { display: block; width: 0.8rem; height: calc(var(--h, 0.5) * 100%); border-radius: 4px 4px 2px 2px; background: var(--green-deep); transform-origin: bottom; }
.plan-bars span:nth-child(2) { background: var(--lime); }
.plan-bars span:nth-child(3) { background: var(--peach); }
.plan-lines { display: grid; gap: 0.4rem; width: 40%; }
.plan-lines span { display: block; height: 0.55rem; width: var(--w, 70%); border-radius: 999px; background: var(--muted); transform-origin: left; }
.plan-check { flex: 0 0 1.6rem; width: 1.6rem; height: 1.6rem; color: var(--green-deep); }
.plan-foot { margin-top: 0.9rem; font-size: 0.9rem; color: var(--muted-foreground); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Cifras: dos por fila en celular y tableta, cuatro en escritorio, cada una con su barra lima */
.stats { border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; padding-block: 2rem; }
.stat { padding-left: 0.9rem; border-left: 3px solid var(--lime); min-width: 0; }
.stat-number { font-size: clamp(1.7rem, 6vw, 2.8rem); font-weight: 800; line-height: 1; color: var(--green-deep); letter-spacing: -0.03em; white-space: nowrap; }
.stat-label { margin-top: 0.45rem; font-size: 0.88rem; line-height: 1.4; color: var(--muted-foreground); max-width: 22ch; }
@media (min-width: 640px) {
  .stats-grid { gap: 2rem 2.5rem; padding-block: 2.5rem; }
  .stat { padding-left: 1.1rem; }
  .stat-number { font-size: clamp(2rem, 3.6vw, 2.8rem); }
  .stat-label { font-size: 0.93rem; }
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; padding-block: 2.75rem; }
}

/* Barra fija de celular */
.sticky-cta { position: fixed; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 55; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.55rem 0.55rem 0.55rem 1rem; background: var(--green-deep); color: var(--sheet); border-radius: 999px; box-shadow: 0 10px 30px oklch(0 0 0 / 0.3); transform: translateY(140%); opacity: 0; transition: transform 0.35s ease, opacity 0.35s ease; }
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; }
.sticky-cta-text { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.sticky-cta .btn { flex: 0 0 auto; white-space: nowrap; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .plan-float, .sparkle, .marquee-track, .hero .cta-row .btn-deep, .hero .cta-row .btn span, .hero-blob { animation: none; }
  .btn::before, .btn-outline::after { transition: none; }
  .btn, .btn span, .tile-art, .header, .sticky-cta, .faq summary::after, .steps-timeline > li::before, .segmented span { transition: none; }
  .timeline-line span { transform: none; }
  .scroll-progress { display: none; }
}
