/* MUV Night — tokens desde Figma (Manrope, #ff742c, #7f00ff, #0d0d0d) */

:root {
  --bg: #0b0b0b;
  --header-bg: #0d0d0d;
  --promo: #ff742c;
  --orange: #ff742c;
  --purple: #7f00ff;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);
  --card-glass: rgba(7, 7, 7, 0.6);
  --frame-outer: rgba(255, 255, 255, 0.05);
  --radius-sm: 6px;
  --radius-pill: 5px;
  --radius-hero: 40px;
  --radius-card: 20px;
  --font: "Manrope", system-ui, sans-serif;
  --max: 1240px;
  /* Caja de contenido alineada a header / hero (1320 + mismo gutter que .header-page) */
  --content-max: 1320px;
  --gutter-x: 1.5rem;
  --page: 1440px;
  /* Gradiente de fondo solo en .hero (capas de radial, sobre base oscura) */
  --hero-bg: hsla(0, 0%, 0%, 1);
  --hero-grad-1: radial-gradient(at 51% 85%, hsla(127, 0%, 1%, 1) 0, transparent 50%);
  --hero-grad-2: radial-gradient(at 42% 17%, hsla(0, 0%, 0%, 1) 0, transparent 50%);
  --hero-grad-3: radial-gradient(at 97% 10%, hsla(289, 72%, 18%, 1) 0, transparent 50%);
  --hero-grad-4: radial-gradient(at 15% 53%, hsla(0, 0%, 1%, 1) 0, transparent 50%);
  --hero-grad-5: radial-gradient(at 53% 77%, hsla(0, 0%, 0%, 1) 0, transparent 50%);
  --hero-grad-6: radial-gradient(at 100% 90%, hsla(23, 84%, 42%, 1) 0, transparent 50%);
  --hero-grad-7: radial-gradient(at 0% 0%, hsla(4, 70%, 55%, 1) 0, transparent 50%);
  /* Gradiente contacto Soy Doctor — púrpura izquierda, naranja abajo-derecha */
  --sd-contact-grad-1: radial-gradient(at 0% 40%, hsla(289, 70%, 22%, 1) 0, transparent 55%);
  --sd-contact-grad-2: radial-gradient(at 100% 90%, hsla(23, 82%, 42%, 1) 0, transparent 50%);
  --sd-contact-grad-3: radial-gradient(at 88% 8%, hsla(275, 58%, 18%, 1) 0, transparent 45%);
  --sd-contact-grad-4: radial-gradient(at 35% 100%, hsla(0, 0%, 0%, 1) 0, transparent 52%);
  --sd-contact-grad-5: radial-gradient(at 55% 45%, hsla(0, 0%, 5%, 1) 0, transparent 62%);
  --grad-hero: linear-gradient(90deg, #ff742c 0%, #7f00ff 100%);
  --grad-text: linear-gradient(90deg, #ff742c 0%, #7f00ff 160%);
  /* Altura de .site-head (promo + nav); se actualiza en JS — fallback seguro */
  --site-head-offset: 9.5rem;
}

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

html {
  min-height: 100%;
  scroll-padding-top: var(--site-head-offset);
}

body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

#contenido {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--orange);
  color: #000;
  font-weight: 600;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
  box-sizing: border-box;
}

.muted,
.subhead {
  color: var(--text-muted);
}

/* Sticky: barra promocional + .site-header (include header.php) */
.site-head {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Promo: fila [redes | texto+countdown | tel] */
.promo-bar {
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  padding: 0.45rem 1.25rem;
  background: var(--promo);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  box-sizing: border-box;
}

.promo-bar__actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem 1rem;
  width: 100%;
  min-width: 0;
}

/* Texto de promo + cuenta regresiva en la misma línea (bloque central) */
.promo-bar__promo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
  min-width: 0;
  width: 100%;
}

.promo-bar__promo .countdown {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  min-width: 0;
  gap: 0.35rem;
}

.promo-bar__actions .promo-bar__wa {
  justify-self: end;
}

.promo-bar__actions .promo-bar__social {
  justify-self: start;
}

.promo-bar__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  line-height: 0;
}

.promo-bar__wa .promo-bar__phone {
  line-height: 1.2;
}

.promo-bar__wa:hover,
.promo-bar__wa:focus-visible {
  text-decoration: underline;
  outline: none;
}

.promo-bar__wa .promo-bar__icon {
  flex-shrink: 0;
}

.promo-bar__text {
  margin: 0;
  text-align: center;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 1.25;
}

@media (min-width: 801px) {
  .promo-bar__text {
    text-align: left;
  }
}

.promo-bar__phone {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.promo-bar__phone:hover,
.promo-bar__phone:focus-visible {
  text-decoration: underline;
  outline: none;
}

.promo-bar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  justify-self: center;
}

/* Burbuja / pastilla circular tipo vidrio sobre la barra promo */
.promo-bar__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #fff;
  line-height: 0;
  text-decoration: none;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.14) 42%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.55),
    inset 0 -3px 6px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.promo-bar__icon-link:hover,
.promo-bar__icon-link:focus-visible {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.65),
    inset 0 -3px 6px rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.22);
  outline: none;
}

.promo-bar__icon-link:active {
  transform: translateY(0) scale(1);
}

.promo-bar__icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 800px) {
  .promo-bar {
    text-align: center;
    padding: 0.5rem 1rem;
  }

  .promo-bar__actions {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    justify-items: center;
  }

  .promo-bar__actions .promo-bar__social,
  .promo-bar__actions .promo-bar__wa {
    justify-self: center;
  }
}

.countdown {
  display: flex;
  gap: 0.32rem;
}

.countdown__unit {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 2.3rem;
  padding: 0.25rem 0.4rem;
  background: #fff;
  color: #000;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.countdown__unit small {
  font-size: 0.7rem;
  margin-left: 0.05em;
  font-weight: 600;
}

/* Header: banda a ancho completo. Contenido: misma horizontal que .hero + .hero__inner (no .wrap) */
.header-page {
  max-width: var(--page);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
  box-sizing: border-box;
}

.site-header {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 80px;
  padding: 0.35rem 0;
  background: var(--header-bg);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.site-header__inner {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.site-header__logo {
  display: block;
  flex-shrink: 0;
  margin-left: 0;
  margin-right: 0;
}

.site-header__logo img {
  display: block;
  height: 3.1rem;
  width: auto;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 1.35rem;
  font-size: 1rem;
  font-weight: 400;
  flex: 1 1 auto;
}

.site-header__nav a {
  white-space: nowrap;
}

.site-header__nav a.is-active,
.site-header__nav a:hover {
  color: var(--orange);
}

.site-header__actions {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* Mismas dimensiones (ghost traía min-height 56px y padding distinto al gradient) */
.site-header__actions .btn {
  min-height: 2.75rem;
  min-width: 10.5rem;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  justify-content: center;
}

/* Navegación: desktop */
.site-header__menu-btn {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.site-header__menu-btn:hover,
.site-header__menu-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  outline: none;
}

.site-header__menu-bars,
.site-header__menu-bars::before,
.site-header__menu-bars::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.site-header__menu-bars {
  position: relative;
  transition: background 0.2s;
}

.site-header__menu-bars::before,
.site-header__menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
  transition: transform 0.2s, top 0.2s;
}

.site-header__menu-bars::before {
  top: -5px;
}

.site-header__menu-bars::after {
  top: 5px;
}

.site-head.is-nav-open .site-header__menu-bars {
  background: transparent;
}

.site-head.is-nav-open .site-header__menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-head.is-nav-open .site-header__menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header__backdrop {
  display: none;
}

html.is-nav-locked,
html.is-nav-locked body {
  overflow: hidden;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.15s, box-shadow 0.15s;
  overflow: hidden;
  text-align: center;
  line-height: 1.2;
}

.btn--lg {
  min-height: 56px;
  padding: 0.65rem 1.4rem;
}

.btn--gradient {
  color: #fff;
  background: var(--grad-hero);
  background-size: 104% 100%;
  border-color: var(--border-strong);
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.btn--gradient::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
  filter: blur(5px);
  opacity: 0.6;
  pointer-events: none;
}

.btn--gradient:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  color: #fff;
  backdrop-filter: blur(2px);
  font-weight: 500;
  min-height: 56px;
  padding: 0.5rem 1.6rem;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 500;
  backdrop-filter: blur(2px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero: ancho completo; gradiente solo en esta sección */
.hero {
  position: relative;
 /* min-height: min(100vh, 900px);*/
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
  background-color: var(--hero-bg);
  background-image: var(--hero-grad-1), var(--hero-grad-2), var(--hero-grad-3), var(--hero-grad-4), var(--hero-grad-5), var(--hero-grad-6), var(--hero-grad-7);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr min(42%, 579px);
  gap: 2rem 2.5rem;
  align-items: start;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .site-header__menu-btn {
    display: inline-flex;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 3;
    display: grid;
    grid-auto-rows: min-content;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-top: none;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    visibility: hidden;
    transition: max-height 0.25s ease, visibility 0.25s ease;
  }

  .site-header__nav a {
    white-space: normal;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .site-header__nav a:hover,
  .site-header__nav a:focus {
    color: var(--orange);
  }

  .site-head.is-nav-open .site-header__nav {
    max-height: 70vh;
    visibility: visible;
  }

  .site-header__backdrop {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header__actions {
    width: 100%;
    margin-left: 0;
  }

  .site-header__actions .btn {
    min-width: 0;
    flex: 1 1 0;
  }
}

.hero__left {
  padding-top: 1.5rem;
  max-width: 38rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0.4rem 0.5rem 0.4rem 0.2rem;
  min-height: 2.9rem;
  width: auto;
  max-width: 100%;
  background: var(--grad-hero);
  background-size: 100% 100%;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero__pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 60%);
  filter: blur(6px);
  pointer-events: none;
  opacity: 0.4;
}

.hero__pill > span:first-child {
  position: relative;
  z-index: 1;
  padding: 0.35rem 0.5rem 0.35rem 0.6rem;
}

.hero__pill-sep {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 1px;
  height: 0.7rem;
  background: #fff;
  flex-shrink: 0;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__title-line {
  display: block;
  line-height: 1.1;
  padding: 0.1rem 0;
}

.hero__title-line--grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 39.5rem;
}

.hero__stats {
  margin-top: 1.75rem;
}

.hero__stat-n {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-l {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-top: 0.5rem;
}

/* Device / product */
.hero__right {
  justify-self: end;
  width: 100%;
  max-width: 579px;
}

.hero__device {
  position: relative;
  background: var(--frame-outer);
  border: 1px solid var(--border);
  border-radius: var(--radius-hero);
  padding: 1.25rem;
  overflow: hidden;
  min-height: 420px;
}

.hero__device::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 540px;
  max-width: 100%;
  height: 580px;
  transform: translate(-50%, -50%);
  
  border-radius: var(--radius-card);
  z-index: 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.hero__figure {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 360px;
}

.hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 15%;
  vertical-align: middle;
}

.float-card {
  position: absolute;
  z-index: 2;
  width: min(100%, 338px);
  padding: 0.6rem 0.9rem 0.75rem 1rem;
  background: var(--card-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  line-height: 0;
  backdrop-filter: blur(4px);
}

.float-card h2 {
  margin: 0.35rem 0 0.15rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--orange);
  line-height: 1.2;
  font-family: inherit;
}

.float-card p {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.25;
}

.float-card--tl {
  top: 1.15rem;
  left: 1.2rem;
}

.float-card--br {
  right: 1.2rem;
  bottom: 1.5rem;
  left: auto;
}

.u-cap-m {
  text-transform: uppercase;
}

/* Sections (resto de landing) */
.section {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 4rem 0;
 /* border-top: 1px solid var(--border); */
}

.kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.title {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.subhead {
  max-width: 50rem;
  font-size: 1.1rem;
  margin: 1.5rem auto 0;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.chip {
  padding: 1rem 2.1rem;
  border-radius: 19px;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  background: var(--bg);
}

.chip::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* grosor del borde */
  border-radius: inherit;
  background: var(--grad-hero);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.75rem;
  background: url("../img/Frame-16.jpg") no-repeat center center;
  background-size: cover;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 320px;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 20% 100%, rgba(255, 116, 44, 0.25) 0%, rgba(0, 0, 0, 0) 55%),
    radial-gradient(120% 90% at 85% 85%, rgba(127, 0, 255, 0.22) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.66) 55%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card img {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 0 1rem;
}

.feature-card--photo {
  padding: 0;
  background: #0d0d0d no-repeat center center;
  background-size: cover;
  border-radius: 12px;
  min-height: 320px;
}

.feature-card--photo::before {
  display: none;
}

.feature-card--photo > * {
  display: none;
}

.feature-card .eyebrow {
  color: var(--orange);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.feature-card h4 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

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

.u-uc {
  text-transform: uppercase;
}

/* 4 — Beneficios (grid 2×2 + imágenes) */
.section--band {
  background: #0a0a0b;
}

.grid-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .grid-benefits {
    grid-template-columns: 1fr;
  }
}

.mini-card {
  padding: 1.35rem 1.25rem;
  background: rgba(22, 24, 31, 0.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 200px;
}

.mini-card__lead {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0.4rem 0 0.6rem;
  line-height: 1.3;
  color: #fff;
}

.mini-card__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.visual-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 700px) {
  .visual-pair {
    grid-template-columns: 1fr;
  }
}

.visual-pair__shot {
  min-height: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  padding: 1rem;
}

.visual-pair__shot--a {
  background: linear-gradient(145deg, #1a2a38, #0d1118);
}

.visual-pair__shot--b {
  background: linear-gradient(145deg, #18151c, #0a0a0c);
}

.limited-offer {
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 116, 44, 0.12);
  color: var(--orange);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* 5 — Precios */
.section--pricing {
  background: #080809;
  padding: 3.5rem 0 4rem;
}

.price-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin: 1.25rem 0 0.5rem;
}

.price-highlights__tag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.price-grid-figma {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 1000px) {
  .price-grid-figma {
    grid-template-columns: 1fr;
  }
}

.price-tile {
  position: relative;
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 1.25rem 1.1rem 1.5rem;
  min-height: 161px;
  overflow: hidden;
}

.price-tile__orange {
  margin: 0 0 0.35rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.price-tile__muted {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-muted);
}

.price-tile__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.price-tile__desde {
  margin: 0;
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 500;
  text-transform: lowercase;
}

.price-tile__desde::first-letter {
  text-transform: uppercase;
}

.price-tile__amount {
  margin: 0.15rem 0 0;
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.price-tile__sub {
  margin: 0.1rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: lowercase;
}

.precio-inversion {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  overflow: hidden;
  background-color: var(--hero-bg);
  background-image:
    var(--hero-grad-3),
    var(--hero-grad-4),
    var(--hero-grad-5),
    var(--hero-grad-6);
}
.precio-valoracion {
  
  background-color: #000;
background-image:
  radial-gradient(circle at 0% 10%, rgba(127, 0, 255, 0.18) 4%, transparent 62%),
  radial-gradient(circle at 100% 100%, rgba(255, 116, 44, 0.38) 0, rgba(255, 116, 44, 0.14) 16%, transparent 34%);
}
.precio-valoracion__frame {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0.55rem;
  overflow: hidden;
  border-radius: 28px;
  background-color: var(--hero-bg);
  background-image:
    var(--hero-grad-6),
   
    var(--hero-grad-3),
    var(--hero-grad-4),
    
    var(--hero-grad-6);
}

.precio-valoracion__frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.precio-inversion__grid {
  position: relative;
  z-index: 1;
}

.precio-inversion__left-img {
  width: 100%;
  max-width: 100%;
  margin-top: 1.5rem;
  overflow: hidden;
}

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

.precio-inclusion {
  position: relative;
  width: 100%;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255, 116, 44, 0.14) 0%, rgba(14, 14, 14, 0) 42%),
    radial-gradient(120% 120% at 100% 100%, rgba(127, 0, 255, 0.12) 0%, rgba(14, 14, 14, 0) 45%),
    #0e0e0e;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 16px 50px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(255, 116, 44, 0.08),
    0 0 34px rgba(127, 0, 255, 0.08);
}

.precio-inclusion h2 {
  margin: 0 0 1.5rem;
}

.precio-incl-list {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.precio-incl-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 68px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%),
    #1a1a1a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 10px 24px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(255, 116, 44, 0.05),
    0 0 18px rgba(127, 0, 255, 0.05);
}

.precio-incl-list img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.precio-incl-list span {
  display: block;
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .precio-inclusion {
    margin-top: 1.5rem;
    padding: 1.5rem;
  }

  .precio-inversion {
    padding: 3rem 0;
  }

  .precio-incl-list li {
    min-height: 60px;
    padding: 0.9rem 1rem;
  }
}

/* 6 — Reseñas */
.section--reviews {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #000;
  padding: 4rem 0;
}

/* Resplandor magenta/violeta tipo mesh (derecha, como referencia Figma) */
.reviews-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(72vw, 560px);
  height: min(95%, 720px);
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(235, 55, 255, 0.2) 0%,
    rgba(210, 48, 245, 0.12) 22%,
    rgba(127, 0, 255, 0.22) 42%,
    transparent 68%
  );
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}



.section--reviews > * {
  position: relative;
  z-index: 1;
}

.reviews-slider {
  margin-top: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-slider__viewport {
  overflow: hidden;
}

.reviews-slider__track {
  display: flex;
  width: 100%;
  transition: transform 280ms ease;
  will-change: transform;
}

.reviews-slider__track > .reviews-feature {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
}

.reviews-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
  margin-top: 0;
}

@media (max-width: 900px) {
  .reviews-feature {
    grid-template-columns: 1fr;
  }
}

.reviews-feature__frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-feature__frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.reviews-feature__media {
  position: relative;
}

.reviews-feature__media[role="button"] {
  cursor: pointer;
}

.reviews-feature__media[role="button"]:focus-visible {
  outline: 2px solid rgba(255, 116, 44, 0.9);
  outline-offset: 4px;
  border-radius: 12px;
}

.yt-modal[hidden] {
  display: none;
}

.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.yt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.yt-modal__dialog {
  position: relative;
  width: min(920px, calc(100% - 2rem));
  margin: 8vh auto 0;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.yt-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 26px;
  line-height: 40px;
  cursor: pointer;
}

.yt-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.yt-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.yt-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 6 — FAQ */
.precio-faq {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.precio-faq h2 {
  margin: 0 0 2rem;
  text-align: center;
}

.precio-faq__item {
  position: relative;
  margin: 0 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(10, 10, 12, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 12px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.precio-faq__item[open] {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(95% 150% at 100% 100%, rgba(127, 0, 255, 0.5) 0%, rgba(127, 0, 255, 0.16) 22%, rgba(127, 0, 255, 0) 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%),
    #0b0b0d;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 38px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(127, 0, 255, 0.1);
}

.precio-faq__summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  list-style: none;
  cursor: pointer;
}

.precio-faq__summary::-webkit-details-marker {
  display: none;
}

.precio-faq__n {
  flex: 0 0 auto;
  min-width: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.precio-faq__q {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}

.precio-faq__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.85);
}

.precio-faq__icon--toggle::before {
  content: "+";
  font-size: 1rem;
  line-height: 1;
}

.precio-faq__item[open] .precio-faq__icon--toggle::before {
  content: "−";
}

.precio-faq__body {
  padding: 0 1.8rem 1.35rem 1.75rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .precio-faq {
    width: min(100%, calc(100% - 1rem));
    padding: 3rem 0;
  }

  .precio-faq h2 {
    margin-bottom: 1.5rem;
  }

  .precio-faq__summary {
    gap: 0.7rem;
    padding: 0.95rem 0.9rem;
  }

  .precio-faq__q {
    font-size: 0.95rem;
  }

  .precio-faq__body {
    padding: 0 1rem 1.1rem 1rem;
    font-size: 0.9rem;
  }
}
.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4rem;
  height: 4rem;
  margin: -2rem 0 0 -2rem;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.reviews-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 18rem;
  background-color: #000;
  width: 100%;
}

.stars {
  margin: 0;
  line-height: 0;
}

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

.quote-lg {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.review-person__av {
  border-radius: 50%;
  flex-shrink: 0;
}

.review-person__name {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  text-transform: capitalize;
}

.review-person__role {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviews-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin: 1.5rem 0 2rem;
}

.dot {
  width: 1.3rem;
  height: 6px;
  border-radius: 44px;
  background: #191919;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.dot--on {
  width: 2.1rem;
  background: var(--orange);
}

.reviews-panel {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 0.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

@media (max-width: 900px) {
  .reviews-panel {
    grid-template-columns: 1fr;
  }
}

.reviews-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.reviews-panel__score {
  margin: 0.25rem 0;
  font-size: 2.2rem;
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 1000px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.gcard {
  background: #070707;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.9rem 0.85rem 1.1rem;
  min-height: 14rem;
}

.gcard__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.gcard__head .gcard__g {
  margin-left: auto;
  flex-shrink: 0;
}

.gcard__name {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.gcard__sub {
  margin: 0.1rem 0 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gcard__q {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* 7 — Pasos */
.section--steps {
  padding: 4rem 0 4.5rem;
  background: #0a0a0c;
}

.section--steps-grad {
  background: var(--hero-bg);
  background-image:
    var(--hero-grad-1),
    var(--hero-grad-3),
    var(--hero-grad-6);
  background-repeat: no-repeat;
}

/* Desktop: grid */
.steps-grid-wrap {
  padding: 0 var(--gutter-x);
  max-width: calc(1100px + 2 * var(--gutter-x));
  margin: 0 auto;
  box-sizing: border-box;
}

.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

@media (max-width: 1200px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile: Swiper */
.steps-swiper-wrap {
  display: none;
}

.steps-swiper .swiper-slide {
  padding: 0 var(--gutter-x);
  box-sizing: border-box;
}

.steps-swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.steps-m__arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
}

.steps-m__arrow:disabled,
.steps-m__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

/* Dots de Swiper */
.steps-swiper-pagination {
  position: static;
  margin-top: 0.75rem;
}

.steps-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.steps-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
}

@media (max-width: 700px) {
  .section--steps .title {
    padding-left: var(--gutter-x);
    padding-right: var(--gutter-x);
  }

  .steps-grid-wrap {
    display: none;
  }

  .steps-swiper-wrap {
    display: block;
  }
}

.step-card {
  position: relative;
  background-color: #0a0a0c;
  background-image:
    radial-gradient(120% 90% at 20% 0%, rgba(255, 116, 44, 0.22) 0%, rgba(0, 0, 0, 0) 55%),
    radial-gradient(120% 90% at 85% 15%, rgba(127, 0, 255, 0.2) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%),
    url("../img/fondo-card.png");
  background-repeat: no-repeat;
  background-position: center, center, center, bottom center;
  background-size: cover;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem 1.15rem 1.25rem;
  min-height: 240px;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(255, 116, 44, 0.18) 0%, rgba(0, 0, 0, 0) 55%),
    radial-gradient(120% 90% at 85% 15%, rgba(127, 0, 255, 0.16) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.72) 60%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
  opacity: 0.55;
}

.step-card > * {
  position: relative;
  z-index: 1;
}

.step-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 0 0.9rem;
}

.step-card__n {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  font-size: 2.2rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
}

.step-card__t {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--orange);
  padding-right: 3.25rem;
}

.step-card__d {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.legal-note {
  margin: 2.5rem auto 0;
  max-width: 44rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cta-dual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
}

/* 8 — Resultados */
.section--results {
  padding: 3.5rem 0 4rem;
  background: #080809;
}

.results-compare {
  margin-top: 2rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.results-compare__bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 3.2rem;
  background: var(--grad-hero);
  background-size: 100% 100%;
}

.results-compare__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.results-compare__split {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateX(-0.5px);
}

.results-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0.75rem 0.5rem 1rem;
}

.results-slider__viewport {
  overflow: hidden;
}

.results-slider__track {
  display: flex;
  width: 100%;
  transition: transform 280ms ease;
  will-change: transform;
}

.results-slide {
  flex: 0 0 100%;
  width: 100%;
}

@media (max-width: 800px) {
  .results-compare__row {
    grid-template-columns: 1fr;
  }

  .results-compare__bar {
    display: none;
  }
}

.results-fig {
  margin: 0.5rem;
  text-align: center;
}

.results-fig__img {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: #d9d9d9;
  aspect-ratio: 556 / 357;
  max-width: 100%;
}

.results-fig__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-fig__cap {
  margin: 0.5rem 0.25rem 0;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #fff;
}

/* 9 — CTA final */
.cta-bottom {
  position: relative;
  text-align: center;
  padding: 5rem 1rem 4.5rem;
  background-color: #000;
  background-image: url("../img/fondo-cta-final.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid var(--border);
  overflow: hidden;
  min-height: 400px;
}
.precio-cta-final {
  display: flex;
  direction: column;
  justify-content: center;
  align-items: center;
}

.cta-bottom__deco {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 534px;
  max-width: 90vw;
  height: 534px;
  margin: -250px 0 0 -267px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.cta-bottom__glow {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#tit-cta,
.cta-bottom__lede {
  position: relative;
  z-index: 1;
}

.cta-bottom__lede {
  max-width: 40rem;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cta-bottom__sides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.cta-bottom__side {
  position: absolute;
  top: 10%;
  max-width: 30%;
  height: auto;
}

.cta-bottom__side--l {
  left: 0;
  transform: scaleX(-1);
}

.cta-bottom__side--r {
  right: 0;
}

.btn--sm {
  min-height: 2.6rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Footer (Figma Frame 37 — 183:20) */
.site-footer--full {
  position: relative;
  padding: 3rem 0 0;
  background-color: hsla(0, 0%, 0%, 1);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.site-footer__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 16% 100% at 0% 100%, hsla(289, 72%, 18%, 1) 0%, transparent 60%),
    radial-gradient(ellipse 26% 70% at 100% 100%, hsla(23, 84%, 42%, 1) 0%, transparent 60%);
  opacity: 1;
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 2.5rem 2rem;
  padding-bottom: 2.5rem;
  align-items: start;
  max-width: var(--content-max);
}

@media (max-width: 1000px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "sitemap contact";
  }

  .site-footer__col--brand {
    grid-area: brand;
    max-width: none;
  }

  .site-footer__col[data-name="sitemap"] {
    grid-area: sitemap;
    justify-self: start;
  }

  .site-footer__col--contact {
    grid-area: contact;
    grid-column: auto;
    justify-self: start;
  }

  .site-footer__mobile-social-bar {
    position: relative;
    z-index: 1;
    display: block !important;
    width: 100%;
    padding: 0 1rem 2rem;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "brand brand"
      "sitemap contact";
    gap: 1.5rem 1rem;
  }

  .site-footer__col[data-name="sitemap"],
  .site-footer__col--contact {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer__h {
    margin-bottom: 0.85rem;
    font-size: 1rem;
  }

  .site-footer__nav a,
  .site-footer__link,
  .site-footer__where {
    font-size: 0.95rem;
  }

  .site-footer__mobile-social {
    gap: 0.75rem;
  }

  .site-footer__mobile-social-link {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.site-footer__col--brand {
  max-width: 24rem;
}

.site-footer__col[data-name="sitemap"],
.site-footer__col--contact {
  justify-self: center;
  width: fit-content;
  max-width: 100%;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  line-height: 0;
}

.site-footer__logo img {
  display: block;
  height: auto;
  max-width: 5.5rem;
}

.site-footer__lede {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.site-footer__h {
  margin: 0 0 1.1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1.2;
  font-family: var(--font);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}

.site-footer__nav a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.site-footer__nav a:first-child {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
  margin-bottom: 1.25rem;
}

.site-footer__link {
  font-size: 1rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  width: fit-content;
}

.site-footer__link:hover {
  color: var(--orange);
}

.site-footer__follow {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

.site-footer__social-wrap {
  margin-bottom: 1.5rem;
  line-height: 0;
}

.site-footer__social {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-footer__mobile-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
}

.site-footer__mobile-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}

.site-footer__mobile-social-link:hover {
  color: var(--orange);
  border-color: rgba(255, 116, 44, 0.5);
  background: rgba(255, 116, 44, 0.08);
  transform: translateY(-1px);
}

.site-footer__where {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--orange);
  border-radius: 5px;
  font-size: 1rem;
  color: var(--orange);
  background: transparent;
  transition: background 0.15s, color 0.15s;
}

.site-footer__where:hover {
  background: rgba(255, 116, 44, 0.1);
  color: #ff8f5c;
}

.site-footer__rule-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  padding: 0 var(--gutter-x);
}

.site-footer__rule {
  display: block;
  width: 100%;
  height: auto;
  min-height: 1px;
}

.site-footer__legal {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: var(--content-max);
  padding: 1.5rem var(--gutter-x) 2.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__copy {
  margin: 0;
}

.site-footer__legal-links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.35rem;
}

.site-footer__legal-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.site-footer__legal-links a:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.site-footer__sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

/* Página "Por qué MUV" — nodo Figma 164:13515 (extiende variables de main.css) */

.page-por-que-muv {
  min-height: 100vh;
  background: #0a0a0a;
  color: #fff;
}

.pqm-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0d;
  font-size: 0.9rem;
  max-width: 1440px;
  margin: 0 auto;
}

.pqm-top a {
  color: var(--orange, #ff742c);
  text-decoration: none;
  font-weight: 500;
}

.pqm-top a:hover {
  text-decoration: underline;
}

/* Hero */
.pqm-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 733px;
  margin: 0;
  background-color: var(--hero-bg);
  background-image: var(--hero-grad-1), var(--hero-grad-2), var(--hero-grad-3), var(--hero-grad-4), var(--hero-grad-5), var(--hero-grad-6), var(--hero-grad-7);
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pqm-hero__deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.pqm-hero__deco--a {
  left: -25%;
  bottom: 0;
  width: 90%;
  max-width: 1000px;
  transform: scaleY(-1) rotate(10deg);
}

.pqm-hero__deco--b {
  left: -40%;
  top: -15%;
  width: 85%;
  transform: scaleY(-1) rotate(-6deg);
  opacity: 0.35;
}

.pqm-hero__deco--c {
  right: -20%;
  top: -10%;
  width: 80%;
  transform: rotate(42deg);
  opacity: 0.35;
}

.pqm-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.pqm-grad {
  background: linear-gradient(90deg, #ff742c, #7f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.pqm-hero__sub {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

/* Bloques 2 col — contenedor con borde */
.pqm-panel {
  position: relative;
  max-width: 1240px;
  margin: 4rem auto 2rem;
  padding: 0 1.25rem;
}


.pqm-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
  min-height: 625px;
  padding: 2.5rem 2rem 3rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
}

.pqm-card--casos {
  background:
    radial-gradient(78% 92% at 100% 0%, rgba(255, 116, 44, 0.2) 0%, rgba(255, 116, 44, 0.1) 24%, rgba(255, 116, 44, 0) 58%),
    radial-gradient(82% 98% at 12% 100%, rgba(127, 0, 255, 0.26) 0%, rgba(127, 0, 255, 0.14) 26%, rgba(127, 0, 255, 0) 60%),
    radial-gradient(46% 58% at 56% 56%, rgba(198, 92, 176, 0.16) 0%, rgba(198, 92, 176, 0.08) 28%, rgba(198, 92, 176, 0) 74%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 42%),
    #151515;
}

.pqm-card--memotrack {
  background:
    radial-gradient(88% 94% at 94% 6%, rgba(255, 116, 44, 0.22) 0%, rgba(255, 116, 44, 0.11) 22%, rgba(255, 116, 44, 0) 54%),
    radial-gradient(86% 104% at 2% 88%, rgba(127, 0, 255, 0.24) 0%, rgba(127, 0, 255, 0.12) 24%, rgba(127, 0, 255, 0) 58%),
    radial-gradient(50% 62% at 64% 42%, rgba(206, 106, 186, 0.14) 0%, rgba(206, 106, 186, 0.07) 26%, rgba(206, 106, 186, 0) 72%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 44%),
    #141414;
}

.pqm-card__glow {
  position: absolute;
  left: -15%;
  top: 0;
  width: 120%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: plus-lighter;
  z-index: 0;
}

.pqm-card__glow--flip {
  left: auto;
  right: -15%;
  transform: scaleX(-1);
}

.pqm-card__inner {
  position: relative;
  z-index: 1;
}

.pqm-card__inner:has(.pqm-frost) {
  position: relative;
}

.pqm-card--reverse .pqm-card__inner:first-child {
  order: 2;
}

.pqm-card--reverse .pqm-card__inner:last-child {
  order: 1;
}

.pqm-card--orto .pqm-product {
  justify-self: start;
  width: 100%;
}
.pqm-card--orto{
  background:
  radial-gradient(78% 92% at 100% 0%, rgba(255, 116, 44, 0.2) 0%, rgba(255, 116, 44, 0.1) 24%, rgba(255, 116, 44, 0) 58%),
  radial-gradient(82% 98% at 12% 100%, rgba(127, 0, 255, 0.26) 0%, rgba(127, 0, 255, 0.14) 26%, rgba(127, 0, 255, 0) 60%),
  radial-gradient(46% 58% at 56% 56%, rgba(198, 92, 176, 0.16) 0%, rgba(198, 92, 176, 0.08) 28%, rgba(198, 92, 176, 0) 74%),
  linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 42%),
  #151515;
}
@media (max-width: 960px) {
  .pqm-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 1.75rem 1.25rem 2.25rem;
  }

  /* Orto: en móvil, texto (2.º en DOM) arriba, imagen (1.º) abajo */
  .pqm-card--orto .pqm-card__inner:first-child {
    order: 2;
  }

  .pqm-card--orto .pqm-card__inner:last-child {
    order: 1;
  }

  .pqm-card--reverse .pqm-card__inner:first-child,
  .pqm-card--reverse .pqm-card__inner:last-child {
    order: unset;
  }
}

.pqm-card h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  max-width: 30rem;
}

.pqm-card p.lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  max-width: 30rem;
}

.pqm-product {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 559px;
  margin: 0 auto;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
}

.pqm-product__inner {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 507 / 455;
}

.pqm-product__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pqm-frost {
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 295px;
  max-width: 50%;
  height: 60%;
  border-radius: 10px;
  background: rgba(30, 32, 40, 0.5);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

/* Sección MUV Monitoring */
.pqm-monitoring {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 4rem 1.5rem 5rem;
  min-height: 695px;
  overflow: hidden;
}

.grad-monitoring {
  background-color: var(--hero-bg);
  background-image: var(--hero-grad-1), var(--hero-grad-2), var(--hero-grad-3), var(--hero-grad-4), var(--hero-grad-5), var(--hero-grad-6), var(--hero-grad-7);
  background-repeat: no-repeat;
}

.pqm-monitoring__deco {
  position: absolute;
  left: -5%;
  top: 10%;
  width: 110%;
  max-width: 1650px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

.pqm-monitoring__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 600px);
  gap: 2.5rem 2rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  min-height: calc(695px - 9rem);
}

.pqm-monitoring__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 40rem;
}

.pqm-monitoring__copy > p {
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
}

.pqm-feat {
  display: flex;
  gap: 0.9rem 1rem;
  align-items: flex-start;
  padding: 0.85rem 1rem 0.85rem 0.7rem;
  margin-bottom: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  max-width: 33.5rem;
}

.pqm-feat__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  overflow: hidden;
  line-height: 0;
}

.pqm-feat__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pqm-feat p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fff;
}

.pqm-monitoring__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 85%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.pqm-monitoring__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 900px) {
  .pqm-monitoring__visual {
    display: none;
  }
}


.pqm-cta {
  display: inline-flex;
  margin-top: 1.5rem;
}

.muted-sm {
  color: rgba(255, 255, 255, 0.65);
}

/* —— Tu camino para comenzar (Frame 39 — 165:30992) */
.pqm-camino {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.pqm-camino__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.pqm-camino__deco-v {
  position: absolute;
  max-width: none;
  display: block;
  opacity: 0.4;
}

.pqm-camino__deco-v--1 {
  right: -8%;
  top: -12%;
  width: min(75vw, 920px);
  height: auto;
}

.pqm-camino__deco-v--2 {
  left: -15%;
  top: 10%;
  width: min(65vw, 780px);
  height: auto;
  opacity: 0.32;
}

.pqm-camino__title {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 50rem;
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
}

.pqm-camino__lede {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-muted, rgba(255, 255, 255, 0.5));
}

.pqm-camino .step-grid,
.pqm-camino .legal-note {
  position: relative;
  z-index: 1;
}

/* —— Listo para vivir el tratamiento (Frame 36 — 164:25638) */
.pqm-cta-listo {
  position: relative;
  min-height: 24rem;
  padding: 4.5rem 1rem 5.25rem;
  background: url('../img/bg-listoparavivir.jpg') no-repeat center center;
  background-size: cover;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  text-align: center;
}

.pqm-cta-listo__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.pqm-cta-listo__ell {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  max-width: none;
  display: block;
  pointer-events: none;
  opacity: 0.42;
}

.pqm-cta-listo__ell--1 {
  width: min(55.5vw, 800px);
}

.pqm-cta-listo__ell--2 {
  width: min(64vw, 930px);
  opacity: 0.38;
}

.pqm-cta-listo__ell--3 {
  width: min(72vw, 1040px);
  opacity: 0.32;
}

.pqm-cta-listo__ell--4,
.pqm-cta-listo__ell--5 {
  width: min(38vw, 540px);
  top: 62%;
  opacity: 0.55;
}

.pqm-cta-listo__ell--5 {
  mix-blend-mode: plus-lighter;
  opacity: 0.4;
}

.pqm-cta-listo__ell--6 {
  width: min(120vw, 1500px);
  left: 42%;
  top: 65%;
  mix-blend-mode: plus-lighter;
  opacity: 0.22;
}

.pqm-cta-listo__ell--7 {
  width: min(38vw, 540px);
  top: 60%;
  opacity: 0.5;
}

.pqm-cta-listo__sides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.pqm-cta-listo__side {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 42%;
  object-fit: contain;
  opacity: 0.5;
}

.pqm-cta-listo__side--r {
  right: 0;
  object-position: right center;
}

.pqm-cta-listo__side--l {
  left: 0;
  object-position: left center;
  transform: scaleX(-1);
}

.pqm-cta-listo__content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.pqm-cta-listo__head {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
}

.pqm-cta-listo__lede {
  margin: 0.85rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted, rgba(255, 255, 255, 0.5));
}

.pqm-cta-listo .cta-dual {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-top: 1.75rem;
}

/* ============================================================
   Página: Cómo funciona
   ============================================================ */

.page-como-funciona {
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
}

/* Hero */
.cf-hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 36rem;
  padding: 6rem 1.5rem 3rem;
  overflow: hidden;
  background-color: var(--hero-bg);
  background-image: var(--hero-grad-1), var(--hero-grad-2), var(--hero-grad-3), var(--hero-grad-4), var(--hero-grad-5), var(--hero-grad-6), var(--hero-grad-7);
  background-repeat: no-repeat;
}

.cf-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}

.cf-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, rgba(255, 116, 44, 0.08), rgba(127, 0, 255, 0.08));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.cf-hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cf-hero__lede {
  margin: 0 auto 2rem;
  max-width: 48rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.cf-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.cf-hero__ctas .btn--gradient {
  min-width: 12rem;
}

/* Bloque producto + copy */
.cf-split {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 36rem);
  gap: 2.5rem 2rem;
  align-items: center;
}

@media (max-width: 1000px) {
  .cf-split {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.cf-split h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 36rem;
}

.cf-split__lede {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  max-width: 36rem;
}

.cf-split__visual {
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(72% 82% at 12% 12%, rgba(242, 132, 220, 0.82) 0%, rgba(242, 132, 220, 0.4) 18%, rgba(242, 132, 220, 0) 42%),
    radial-gradient(78% 84% at 48% 0%, rgba(226, 52, 255, 0.86) 0%, rgba(226, 52, 255, 0.4) 18%, rgba(226, 52, 255, 0) 44%),
    radial-gradient(84% 88% at 100% 100%, rgba(255, 136, 84, 0.5) 0%, rgba(255, 136, 84, 0.2) 18%, rgba(255, 136, 84, 0) 42%),
    linear-gradient(138deg, rgba(111, 56, 128, 0.84) 0%, rgba(58, 33, 73, 0.92) 30%, rgba(21, 19, 25, 0.98) 62%, rgba(48, 36, 37, 0.95) 100%);
  padding: 1rem;
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 20px 44px rgba(0, 0, 0, 0.26);
}

.cf-split__visual img.cf-split__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  aspect-ratio: 509 / 455;
  object-fit: cover;
}

/* 3 chips */
.cf-chips {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .cf-chips {
    grid-template-columns: 1fr;
  }
}

.cf-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  min-height: 5.5rem;
}

.cf-chip__icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.cf-chip__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cf-chip__body {
  min-width: 0;
  text-align: left;
}

.cf-chip__k {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.cf-chip__v {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

/* Memotrack */
.cf-memotrack {
  max-width: 1240px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}

.cf-memotrack__wrap {
  position: relative;
  background-color: var(--hero-bg);
  background-image:
    radial-gradient(at 100% 0%, hsla(23, 84%, 42%, 1) 0, transparent 28%),
    radial-gradient(at 0% 100%, hsla(289, 72%, 18%, 1) 0, transparent 28%);
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  padding: 2.5rem 1.5rem 2rem;
}

.cf-memotrack h2 {
  text-align: center;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 700;
  margin: 0 auto 0.75rem;
  line-height: 1.2;
  max-width: 42rem;
}

.cf-memotrack__intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.cf-memogrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .cf-memogrid {
    grid-template-columns: 1fr;
  }
}

.cf-memocell {
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1rem 1.1rem 1.15rem;
  min-height: 8rem;
  text-align: left;
}

.cf-memocell__k {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ff742c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cf-memocell__p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.cf-memorow2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0 1.25rem;
}

.cf-memocell--wide {
  max-width: 21rem;
  flex: 1 1 280px;
}

.cf-memotrack__bar {
  height: 6px;
  max-width: 26rem;
  margin: 0.75rem auto 1.25rem;
  border-radius: 3px;
  background: linear-gradient(90deg, #7f00ff, #ff742c, #7f00ff);
}

.cf-memotrack__slogan {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  line-height: 1.3;
  background: linear-gradient(90deg, #ff742c, #7f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  max-width: 40rem;
  margin: 0 auto;
}

/* Transforma */
.cf-transform {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
}

.cf-transform h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.4rem, 2.3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
}

.cf-transform__line {
  height: 4px;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff742c, #7f00ff, #7f00ff);
  opacity: 0.85;
}

.cf-transform p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

/* 6 tarjetas beneficios */
.cf-bgrid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem 1.25rem;
}

@media (max-width: 800px) {
  .cf-bgrid {
    grid-template-columns: 1fr;
  }
}

.cf-bcard {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.15rem 1.25rem 1.3rem;
  min-height: 6.5rem;
}

.cf-bcard__tag {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ff742c;
  background-color: rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(90deg, rgba(255, 116, 44, 0.28) 0%, rgba(255, 116, 44, 0) 72%);
  border: 1px solid rgba(255, 116, 44, 0.45);
  border-radius: 4px;
}

.cf-bcard p:not(.cf-bcard__tag) {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

/* Vs Brackets */
.cf-vs {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0.5rem;
}

.cf-vs h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 700;
}

.cf-table-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cf-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 60px rgba(127, 0, 255, 0.18);
}

.cf-table th,
.cf-table td {
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
  line-height: 1.35;
  background: #141414;
}

.cf-table thead th {
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: #1a1a1a;
}

.cf-table tbody th {
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  width: 16.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.cf-table tbody td {
  text-align: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Colores por columna (como el diseño) */
.cf-table thead th:nth-child(1) {
  background-image:
    radial-gradient(circle at 12% 20%, rgba(127, 0, 255, 0.55), transparent 56%),
    linear-gradient(180deg, rgba(30, 10, 60, 0.95), rgba(18, 8, 32, 0.95));
  border-color: rgba(127, 0, 255, 0.22);
}

.cf-table thead th:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(255, 116, 44, 0.98), rgba(255, 116, 44, 0.86));
  border-color: rgba(255, 116, 44, 0.32);
}

.cf-table thead th:nth-child(3) {
  background-image:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.95), rgba(16, 16, 16, 0.95));
  border-color: rgba(255, 255, 255, 0.12);
}

.cf-table tbody th {
  background-image:
    radial-gradient(circle at 14% 80%, rgba(127, 0, 255, 0.45), transparent 58%),
    linear-gradient(180deg, rgba(18, 8, 32, 0.92), rgba(28, 10, 60, 0.92));
  border-color: rgba(127, 0, 255, 0.18);
}

.cf-table tbody td:nth-child(2) {
  color: rgba(255, 116, 44, 0.92);
  background-image:
    radial-gradient(circle at 50% 20%, rgba(255, 116, 44, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(6, 6, 6, 0.95));
  border-color: rgba(255, 116, 44, 0.12);
}

.cf-table tbody td:nth-child(3) {
  background-image:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(180deg, rgba(46, 46, 46, 0.92), rgba(22, 22, 22, 0.92));
  border-color: rgba(255, 255, 255, 0.12);
}

/* Redondeo de esquinas */
.cf-table thead tr:first-child th:first-child { border-top-left-radius: 14px; }
.cf-table thead tr:first-child th:last-child { border-top-right-radius: 14px; }
.cf-table tbody tr:last-child th { border-bottom-left-radius: 14px; }
.cf-table tbody tr:last-child td:last-child { border-bottom-right-radius: 14px; }

/* Confianza */
.cf-trust {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 1rem;
}

.cf-trust__line {
  height: 6px;
  max-width: 32rem;
  margin: 0 auto 1rem;
  border-radius: 3px;
  background: linear-gradient(90deg, #7f00ff, #ff742c);
  opacity: 0.85;
}

.cf-trust__text {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background-image: linear-gradient(90deg, #7f00ff, #ff742c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   Página: Clínicas asociadas (nuevo.php)
   ============================================================ */

.ca-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}

.ca-title {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 980px) {
  .ca-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin: 0 auto;
  }
}

.ca-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.ca-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
}

.ca-card__body {
  padding: 1.05rem 1.1rem 1.15rem;
}

.ca-card__name {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.92);
}

.ca-card__addr {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.4);
}

.ca-card__map {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 116, 44, 0.95);
  text-decoration: none;
  margin-bottom: 0.9rem;
}

.ca-card__map-ico {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.ca-card__map:hover {
  text-decoration: underline;
}

.ca-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  margin-bottom: 1.2rem;
}

.ca-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.45rem;
  border-radius: 4px;
  font-size: 0.62rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.ca-card__cta {
  width: 100%;
  justify-content: center;
  border-radius: 6px;
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  text-transform: lowercase;
}

/* Maloclusión */
.cf-malo {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 0.5rem;
}

.cf-malo h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}

.cf-malo > p {
  margin: 0 auto 1.5rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  max-width: 54rem;
}

.cf-malo__grid {
  max-width: 1240px;
  margin: 0 auto 3rem;
  padding: 0.5rem 1.25rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .cf-malo__grid {
    grid-template-columns: 1fr;
  }
}

.cf-malo__card {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 14rem;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cf-malo__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.cf-malo__card--1 {
  background-image: url("../img/dientes-1.jpg");
}

.cf-malo__card--2 {
  background-image: url("../img/dientes-2.jpg");
}

.cf-malo__card--3 {
  background-image: url("../img/dientes-3.jpg");
}

.cf-malo__card--4 {
  background-image: url("../img/dientes-4.png");
}

.cf-malo__card--5 {
  background-image: url("../img/dientes-5.jpg");
}

.cf-malo__card--6 {
  background-image: url("../img/dientes-6.jpg");
}

.cf-malo__card--accent {
  border-color: rgba(255, 116, 44, 0.55);
}

.cf-malo__card h3,
.cf-malo__card p {
  position: relative;
  z-index: 1;
}

.cf-malo__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.cf-malo__card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   Página: Soy Doctor (soy-doctor.php)
   Migrado desde soy-doctor.css (solo usamos main.css)
   ============================================================ */

.muted-tiny {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.page-soy-doctor {
  min-height: 100vh;
  background: #0a0a0a;
  color: #fff;
}

/* Hero */
.sd-hero {
  position: relative;
  min-height: 32rem;
}

.page-soy-doctor .hero__inner {
  align-items: center;
}

.sd-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sd-hero__bg img {
  position: absolute;
  opacity: 0.38;
}

.sd-hero__bg--a {
  left: -18%;
  bottom: 0;
  width: min(90%, 920px);
  transform: scaleY(-1) rotate(10deg);
}

.sd-hero__bg--b {
  left: -22%;
  top: 35%;
  width: min(85%, 900px);
  transform: scaleY(-1) rotate(168deg);
  opacity: 0.28;
}

.sd-hero__bg--c {
  right: -28%;
  top: -10%;
  width: min(95%, 1100px);
  transform: rotate(42deg);
  opacity: 0.28;
}

.sd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem 0.35rem 0.75rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(255, 116, 44, 0.08), rgba(127, 0, 255, 0.08));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.sd-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cdbdff;
  box-shadow: 0 0 8px #cdbdff;
}

.sd-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.sd-grad {
  background: linear-gradient(90deg, #ff742c, #7f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.sd-hero__lede {
  margin: 0 0 1.5rem;
  max-width: 44rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.sd-hero__lede .u-uc {
  text-transform: uppercase;
}

.sd-hero__visual {
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  line-height: 0;
  overflow: hidden;
}

.sd-hero__visual-inner {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 443 / 581;
}

.sd-hero__visual-inner img {
  width: 125%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left: -12%;
}

/* Plataforma — Frame 39 */
.sd-platform {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
  background: #000;
}

/* Resplandor inferior: magenta → violeta (referencia Figma) */
.sd-platform::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -35%;
  height: min(55%, 420px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #d033ef 0%,
    #8a2be2 48%,
    #5d26c1 100%
  );
  opacity: 0.72;
  filter: blur(88px);
}

.sd-platform::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 18%,
    rgba(0, 0, 0, 0.82) 38%,
    #000 52%
  );
}

.sd-platform > h2,
.sd-platform__grid,
.sd-platform__labels {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

.sd-platform__glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 120%;
  max-width: 2100px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: plus-lighter;
  z-index: 0;
}

.sd-platform__glow img {
  width: 100%;
  height: auto;
  display: block;
}

.sd-platform h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: clamp(1.4rem, 2.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 52rem;
  margin: 0 auto 2rem;
}

.sd-platform__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

@media (max-width: 1100px) {
  .sd-platform__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sd-platform__grid {
    grid-template-columns: 1fr;
  }
}

.sd-pcard {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 1.35rem 1.1rem 1.5rem;
  min-height: 11.5rem;
  display: flex;
  flex-direction: column;
}

.sd-pcard > p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.sd-platform__labels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1100px) {
  .sd-platform__labels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sd-platform__labels {
    grid-template-columns: 1fr;
  }
}

.sd-plab__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.sd-plab__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #ff742c 0%, #7f00ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Alianza 3+1 */
.sd-alliance {
  padding: 2.5rem 1.25rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.sd-alliance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .sd-alliance__grid {
    grid-template-columns: 1fr;
  }
}

.sd-acard {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.75rem 1.25rem 1.5rem;
  min-height: 10rem;
}

.sd-acard__bar {
  width: 56px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #ff742c, #7f00ff);
  margin-bottom: 1rem;
}

.sd-acard h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.sd-acard p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

/* Modelo clínico — Frame 52 */
.sd-modelo {
  padding: 2rem 1.25rem 3rem;
  max-width: 1240px;
  margin: 0 auto;
}

.sd-modelo__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: stretch;
  padding: 2.5rem 2rem 2.5rem 2.25rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .sd-modelo__card {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem 2rem;
  }
}

.sd-modelo__visual {
  position: relative;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  min-height: 20rem;
  overflow: hidden;
  padding: 0.5rem;
}

.sd-modelo__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  min-height: 380px;
}

.sd-modelo__body h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
}

.sd-check-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.sd-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
}

.sd-check img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Flujo 5 pasos */
.sd-flow {
  padding: 2.5rem 1.25rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.sd-flow h2 {
  text-align: center;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.sd-timeline__orbs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 0.35rem;
  padding: 0 0.5rem;
}

.sd-timeline__orbs .sd-orb {
  position: relative;
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.sd-orb img {
  width: 64px;
  height: 64px;
  display: block;
}

.sd-timeline__n {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 1;
  pointer-events: none;
}

.sd-connector--v {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 0.4rem;
  padding: 0 0.75rem;
  height: 2.5rem;
}

.sd-connector--v > span {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.sd-connector--v i {
  display: block;
  width: 2px;
  height: 100%;
  min-height: 2rem;
  background: linear-gradient(180deg, #ff742c, #7f00ff);
  border-radius: 1px;
  opacity: 0.55;
  font-style: normal;
}

.sd-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 0.5rem;
  position: relative;
  margin-bottom: 1.5rem;
}

.sd-step {
  flex: 1 1 100px;
  max-width: 220px;
  min-width: 100px;
  text-align: center;
  margin: 0 auto;
}

.sd-step__n {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.35rem;
}

.sd-step__ring {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.sd-step__icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sd-step__body {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 1.15rem 0.5rem 1.25rem;
  min-height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-step p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

@media (max-width: 768px) {
  .sd-timeline__orbs,
  .sd-connector--v {
    display: none;
  }

  .sd-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.sd-flow-banner {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #1a1a1a;
  padding: 2.2rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.sd-flow-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: plus-lighter;
}

.sd-flow-banner p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

/* Práctica */
.sd-practice {
  padding: 3.5rem 1.25rem 3rem;
  background: #080809;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sd-practice__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.sd-practice h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 2rem;
  max-width: 40rem;
}

.sd-practice__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 1000px) {
  .sd-practice__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .sd-practice__grid {
    grid-template-columns: 1fr;
  }
}

.sd-pfeat {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.1rem 1rem 1.1rem 2.4rem;
  min-height: 6.5rem;
  background: #101010;
  overflow: hidden;
}

.sd-pfeat::before {
  content: "+";
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.sd-pfeat p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.sd-practice__cta {
  display: flex;
  justify-content: center;
}

/* Contacto */
.sd-contact {
  padding: 2.5rem 1.25rem 4rem;
  max-width: 1240px;
  margin: 0 auto;
}

.sd-contact__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 2.5rem 2rem;
  align-items: center;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}

.sd-contact__wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #0a0a0a;
  background-image:
    var(--sd-contact-grad-1),
    var(--sd-contact-grad-2),
    var(--sd-contact-grad-3),
    var(--sd-contact-grad-4),
    var(--sd-contact-grad-5);
}

@media (max-width: 900px) {
  .sd-contact__wrap {
    grid-template-columns: 1fr;
  }
}

.sd-contact__lede {
  position: relative;
  z-index: 1;
}

.sd-contact__lede h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 36rem;
}

.sd-contact__form {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 6px;
  background: rgba(39, 39, 39, 0.29);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.sd-contact__alert {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  border-radius: 6px;
  border: 1px solid transparent;
}

.sd-contact__alert.is-success {
  color: #b8f5d0;
  background: rgba(34, 120, 70, 0.25);
  border-color: rgba(72, 200, 120, 0.45);
}

.sd-contact__alert.is-error {
  color: #ffc9c9;
  background: rgba(140, 40, 40, 0.3);
  border-color: rgba(255, 100, 100, 0.45);
}

.sd-contact__form h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.sd-contact__form > p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.sd-field {
  margin-bottom: 0.85rem;
}

.sd-field label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}

.sd-field input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  color: #fff;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-sizing: border-box;
}

.sd-field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.sd-field input:focus {
  outline: 2px solid rgba(255, 116, 44, 0.4);
  outline-offset: 1px;
}

.sd-contact__form .btn--gradient {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.muted-sm {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

/* Página legal — política de privacidad */

.page-legal {
  min-height: 100vh;
  background: #0a0a0a;
  color: #fff;
}

.legal-page {
  max-width: 48rem;
  padding: 7rem var(--gutter-x) 4rem;
  margin: 0 auto;
}

.legal-page__header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-page__brand {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
}

.legal-page h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.legal-page__updated {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-page__intro p:last-child {
  margin-bottom: 0;
}

.legal-section {
  margin-bottom: 2.25rem;
}

.legal-section h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.legal-section h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.legal-section p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.legal-section li + li {
  margin-top: 0.35rem;
}

.legal-address {
  margin: 0 0 1rem;
  padding: 1.25rem 1.5rem;
  font-style: normal;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  background: var(--card-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.legal-address a,
.legal-section a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-address a:hover,
.legal-section a:hover {
  color: #ff9a66;
}

/* Botón flotante WhatsApp */

.wa-float {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.wa-float:hover {
  background: #20bd5a;
  color: #fff;
  transform: scale(1.06);
  box-shadow:
    0 6px 20px rgba(37, 211, 102, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.wa-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.wa-float__icon {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .wa-float {
    transition: none;
  }

  .wa-float:hover {
    transform: none;
  }
}
