/* ==========================================================================
   ELLA FIT — hoja de estilos del sitio público
   --------------------------------------------------------------------------
   Los tokens NO son inventados: salen de mobile/src/theme/index.ts para que la
   web y la app se vean como el mismo producto. Si cambias la paleta de la app,
   cambia también aquí.
   ========================================================================== */

:root {
  /* Paleta clara — lightColors */
  --primary: #e5397e;
  --primary-dark: #c5286a;
  --primary-soft: #fce4ee;
  --lilac: #7c5ce0;
  --lilac-soft: #ede8fc;
  --coral: #ff7a5c;
  --coral-soft: #ffe7e0;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f5f2f6;
  --beige: #f1ecf2;
  --ink: #1a1220;
  --ink-soft: #6e6478;
  --ink-faint: #ada4b6;
  --line: #ede7ef;
  --success: #2fa37b;
  --success-soft: #e0f3ec;

  /* Botón primario: par fondo/texto propio, NO derivado de --primary.
     Motivo: en la paleta oscura de la app `primaryDark` (#FF7DAE) es más CLARO
     que `primary` —ahí es el estado hover—, así que reutilizarlo como fondo
     dejaría texto blanco sobre rosa claro. Cada modo elige el par que pasa AA:
     claro  = #C5286A con texto blanco  -> 5.4:1
     oscuro = #FF5C9A con texto tinta   -> 6.0:1 */
  --btn-bg: #c5286a;
  --btn-bg-hover: #e5397e;
  --btn-fg: #ffffff;

  /* Gradientes por objetivo — goalGradients */
  --grad-gluteos: linear-gradient(145deg, #ff6fa3, #e5397e 55%, #7c2358);
  --grad-tonificar: linear-gradient(145deg, #9b7df0, #6e49d6 55%, #3a2585);
  --grad-grasa: linear-gradient(145deg, #ffb27a, #ff6f61 55%, #d53e7c);
  --grad-fuerza: linear-gradient(145deg, #5b8def, #3e63c0 55%, #241e52);
  --grad-activa: linear-gradient(145deg, #5fd3a3, #2fa37b 55%, #1b5e4e);

  /* Radios — radius */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Sombras — shadow */
  --sh-card: 0 8px 16px rgba(42, 20, 32, 0.06);
  --sh-hero: 0 12px 20px rgba(58, 16, 36, 0.22);
  --sh-lift: 0 18px 40px rgba(58, 16, 36, 0.14);

  --maxw: 1120px;
  --nav-h: 68px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* darkColors */
    --primary: #ff5c9a;
    --primary-dark: #ff7dae;
    --primary-soft: #3a1e2c;
    --lilac: #a78bf2;
    --lilac-soft: #2a2340;
    --coral: #ff9b80;
    --coral-soft: #3a251e;
    --bg: #121016;
    --surface: #1c1822;
    --surface-alt: #252031;
    --beige: #2a2434;
    --ink: #f4f0f8;
    --ink-soft: #b4aabf;
    --ink-faint: #7e7589;
    --line: #2e2839;
    --success: #3fc095;
    --success-soft: #16342a;
    --btn-bg: #ff5c9a;
    --btn-bg-hover: #ff7dae;
    --btn-fg: #1a1220;
    --sh-card: 0 8px 16px rgba(0, 0, 0, 0.4);
    --sh-lift: 0 18px 40px rgba(0, 0, 0, 0.5);
  }
}

/* --------------------------------------------------------------- base --- */

*,
*::before,
*::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* --primary sobre blanco da 4.02:1 y reprueba AA en texto normal. En modo
   oscuro, --primary-dark es el tono CLARO y sobre el fondo #121016 da 7.6:1,
   así que el mismo token sirve para los dos modos. */
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--lilac);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--btn-bg);
  color: var(--btn-fg);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  z-index: 100;
}
.skip:focus { left: 0; }

/* ---------------------------------------------------------- tipografía --- */

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; letter-spacing: -0.02em; }

/* `text-wrap: balance` reparte las líneas para que no quede una palabra suelta
   colgando al final del titular. Sin él, el hero partía como
   «Deja de / improvisar. / Entrena con un / plan.» */
h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h3 { font-size: clamp(1.1rem, 2vw, 1.32rem); font-weight: 800; }

p { margin: 0 0 1em; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  /* El rosa vivo sobre blanco da 4.02:1 y esto va a 12px; --primary-dark
     (el mismo token que usa la app) sube a 5.4:1 sin salirse de la marca. */
  color: var(--primary-dark);
  margin-bottom: 14px;
  display: block;
}

.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-soft); max-width: 62ch; }

.muted { color: var(--ink-soft); }
.small { font-size: 0.875rem; }
/* --ink-faint sobre blanco da 2.2:1 y aquí va texto que importa (el aviso de
   renovación automática bajo los precios). Se usa --ink-soft: 5.6:1. */
.tiny  { font-size: 0.8rem; color: var(--ink-soft); }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ------------------------------------------------------------ botones --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-size: 1rem;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  font-family: inherit;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: var(--sh-hero);
}
.btn-primary:hover { background: var(--btn-bg-hover); box-shadow: var(--sh-lift); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-lg { padding: 18px 38px; font-size: 1.06rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.center .btn-row { justify-content: center; }

/* ---------------------------------------------------------------- nav --- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 28px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.08rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand img { width: 32px; height: 32px; border-radius: 9px; }

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.94rem;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; }

.nav .btn { padding: 11px 22px; font-size: 0.92rem; }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* --------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(46% 52% at 22% 28%, color-mix(in srgb, var(--primary) 22%, transparent), transparent 70%),
    radial-gradient(40% 46% at 78% 14%, color-mix(in srgb, var(--lilac) 20%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-grid .lead { margin-inline: auto; }
  .hero-grid .btn-row { justify-content: center; }
  .hero-badges { justify-content: center; }
}

.hero h1 .grad {
  background: linear-gradient(100deg, var(--primary), var(--lilac));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

/* ------------------------------------------------------------ cifras --- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

.stat { text-align: center; }
.stat b {
  display: block;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--primary), var(--lilac));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat span { font-size: 0.83rem; color: var(--ink-soft); font-weight: 600; }

/* ------------------------------------------------------------ seccion --- */

section { padding: clamp(56px, 8vw, 104px) 0; }
section.alt { background: var(--surface-alt); }

.sec-head { max-width: 66ch; margin-bottom: clamp(34px, 5vw, 56px); }
.sec-head.center { margin-inline: auto; }

/* ------------------------------------------------------------- cards --- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--sh-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lift); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

.ico {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.45rem;
}
.ico-pink   { background: var(--primary-soft); }
.ico-lilac  { background: var(--lilac-soft); }
.ico-coral  { background: var(--coral-soft); }
.ico-green  { background: var(--success-soft); }

/* --------------------------------------------------------- como opera --- */

.steps { counter-reset: paso; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 12px; }
.step::before {
  counter-increment: paso;
  content: counter(paso);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--lilac));
  color: #fff;
  font-weight: 900;
  font-size: 1.06rem;
  margin-bottom: 16px;
}

/* ------------------------------------------------------------ precios --- */

.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 780px; margin: 0 auto; }
@media (max-width: 700px) { .plans { grid-template-columns: 1fr; } }

.plan {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  padding: 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan.best { border-color: var(--primary); box-shadow: var(--sh-lift); }

.tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.price { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 2px; flex-wrap: wrap; }
.price b { font-size: 2.7rem; font-weight: 900; letter-spacing: -0.04em; }
.price s { color: var(--ink-faint); font-size: 1rem; font-weight: 600; }
.price .per { color: var(--ink-soft); font-size: 0.95rem; font-weight: 600; }

.plan ul { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 11px; }
.plan li { padding-left: 28px; position: relative; font-size: 0.95rem; color: var(--ink-soft); }
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}
.plan .btn { margin-top: auto; width: 100%; }

/* ---------------------------------------------------------------- faq --- */

.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  margin-bottom: 13px;
  overflow: hidden;
}
.faq summary {
  padding: 20px 24px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 24px 22px; margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ----------------------------------------------------------- cta final --- */

.cta-final {
  background: linear-gradient(135deg, #ff6fa3, #e5397e 45%, #7c5ce0);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 72px) clamp(26px, 5vw, 60px);
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255, 255, 255, 0.92); max-width: 56ch; margin-inline: auto; }
.cta-final .btn-primary { background: #fff; color: var(--primary); }
.cta-final .btn-primary:hover { background: #fff; color: var(--primary-dark); }

/* ------------------------------------------------------------ formulario --- */

.form-inline {
  display: flex;
  gap: 10px;
  max-width: 470px;
  margin: 26px auto 12px;
  flex-wrap: wrap;
}
.form-inline input[type="email"] {
  flex: 1 1 220px;
  padding: 15px 20px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  min-width: 0;
}
.form-inline input[type="email"]::placeholder { color: var(--ink-faint); }
.form-inline input[type="email"]:focus { outline: 3px solid rgba(255, 255, 255, 0.7); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; }

/* --------------------------------------------------------------- pie --- */

.foot {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  background: var(--surface-alt);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 40px;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

.foot h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 15px;
  font-weight: 900;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot ul a { color: var(--ink-soft); font-size: 0.92rem; }
.foot ul a:hover { color: var(--primary); }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* --- disposición de la galería de teléfonos --- */

.phones {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.phones .phone:nth-child(odd) { transform: translateY(-14px); }
@media (max-width: 640px) {
  .phones .phone:nth-child(odd) { transform: none; }
  .phone { width: 250px; }
}

.hero-phone { display: flex; justify-content: center; }
/* Algo más chico que en la galería: a 290px el teléfono estiraba tanto el hero
   que el botón principal quedaba fuera de la primera pantalla. */
.hero-phone .phone { width: 262px; transform: rotate(-3deg); }
@media (max-width: 940px) { .hero-phone .phone { transform: none; } }

/* scroll horizontal en móvil para la galería */
.phones-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 14px 4px 26px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.phones-scroll .phone { scroll-snap-align: center; }
.phones-scroll::-webkit-scrollbar { height: 6px; }
.phones-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

/* ------------------------------------------------------ paginas legales --- */

.legal { padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px); }
.legal-body { max-width: 74ch; }
.legal-body h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  margin-top: 2.2em;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}
.legal-body h2:first-of-type { margin-top: 1em; }
.legal-body p, .legal-body li { color: var(--ink-soft); }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }

.legal-meta {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.legal-meta strong { color: var(--ink); }

.toc {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-bottom: 34px;
}
.toc h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-weight: 900;
}
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 30px; }
.toc li { margin-bottom: 7px; font-size: 0.9rem; }
@media (max-width: 600px) { .toc ol { columns: 1; } }

/* ================================================= BOTONES DE TIENDA ====
   Deliberadamente NO reproducen las insignias oficiales de Apple ni de
   Google: esas son marcas registradas con guías de uso propias y se
   descargan de sus recursos de marketing. Estos son botones propios, y
   cuando las fichas estén publicadas conviene sustituirlos por los oficiales.
   ======================================================================= */

.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.center .stores, .cta-final .stores { justify-content: center; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 22px;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-width: 190px;
}
.store-btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--sh-lift); }

.store-btn .ico { flex-shrink: 0; width: 24px; height: 24px; }
.store-btn .txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-btn .txt small { font-size: 0.66rem; opacity: 0.82; letter-spacing: 0.02em; }
.store-btn .txt strong { font-size: 1.02rem; font-weight: 800; letter-spacing: -0.01em; }

/* Estado "todavía no se puede descargar": se ve, se entiende y no se puede
   clicar. Un botón que lleva a un 404 cuesta más confianza que uno apagado. */
.store-btn.is-soon {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
  border-style: dashed;
  cursor: default;
  pointer-events: none;
}
.store-btn.is-soon:hover { transform: none; box-shadow: none; }
.store-btn.is-soon .ico { opacity: 0.55; }

/* Sobre el bloque de gradiente final, invertido. */
.cta-final .store-btn { background: #fff; color: var(--primary-dark); border-color: #fff; }
.cta-final .store-btn.is-soon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-final .store-btn.is-soon .ico { opacity: 0.8; }

/* ============================================ CAPTURAS REALES DE LA APP ====
   Las pantallas dejan de dibujarse con CSS y pasan a ser capturas del iPhone.
   La imagen llena el marco del teléfono; el radio se hereda del .phone para
   que las esquinas coincidan con el bisel.
   ========================================================================= */

.phone .captura {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 36px;
  background: #fff;
}

/* Pie de cada teléfono en la galería, para que se entienda qué se ve. */
.phone-fig { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.phone-fig figcaption {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
  max-width: 260px;
}
