/* ============================================================
   styles.css — Landing Grúa Horquilla · Cinder
   Mobile-first. Sistema visual reusado de cindercapacitaciones.com
   ============================================================ */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy-800);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

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

::selection {
  background: rgba(51, 211, 184, 0.4);
  color: #fff;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.accent {
  background: var(--grad-headline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Acento turquesa difuminado (glow alrededor de las letras) */
.accent-glow {
  background: linear-gradient(90deg, var(--teal-light), var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(51, 211, 184, 0.5))
    drop-shadow(0 0 34px rgba(51, 211, 184, 0.28));
}

.eyebrow {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--on-dark-muted);
}

/* ---------- Placeholder de asset pendiente ---------- */
.asset-pending {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border: 1.5px dashed rgba(51, 211, 184, 0.45);
  background: repeating-linear-gradient(
    45deg,
    rgba(51, 211, 184, 0.05),
    rgba(51, 211, 184, 0.05) 12px,
    rgba(51, 211, 184, 0.02) 12px,
    rgba(51, 211, 184, 0.02) 24px
  );
  color: var(--teal-light);
  border-radius: var(--radius-card);
  padding: 28px 22px;
}
.asset-pending .tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-900);
  background: var(--teal);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.asset-pending .desc {
  font-size: 0.9rem;
  color: var(--on-dark-body);
  max-width: 34ch;
}
.asset-pending svg {
  opacity: 0.55;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-white {
  background: #fff;
  color: var(--navy-700);
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}
.btn-wa {
  background: var(--wa);
  color: var(--wa-text);
}
.btn-wa:hover {
  background: var(--wa-hover);
}
.btn-teal {
  background: var(--teal-dark);
  color: #04211d;
  box-shadow: var(--shadow-cta);
}
.btn-teal:hover {
  background: #0fa190;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--border-dark-strong);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}
.btn-full {
  width: 100%;
}
@media (min-width: 640px) {
  .btn-full {
    width: auto;
  }
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================================
   INTRO — reveal limpio con el logo de Cinder (sin fuego).
   El fade-out lo maneja la animación CSS: se va sola aunque el JS
   no corra, y prefers-reduced-motion la oculta en el primer pintado.
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 44%, #12324f 0%, #0e1c31 52%, #0a1420 100%);
  animation: intro-out 2600ms forwards;
}
.intro__mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__glow {
  position: absolute;
  width: min(70vw, 340px);
  height: min(70vw, 340px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 211, 184, 0.3), rgba(62, 172, 226, 0.12) 45%, transparent 70%);
  filter: blur(24px);
  animation: intro-glow 2200ms ease both;
}
.intro__ring {
  position: absolute;
  width: min(46vw, 190px);
  height: min(46vw, 190px);
  border-radius: 50%;
  border: 2px solid rgba(51, 211, 184, 0.4);
  animation: intro-ring 1900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.intro__logo {
  position: relative;
  height: clamp(52px, 12vw, 76px);
  width: auto;
  animation: intro-logo 1500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes intro-out {
  0%,
  72% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@keyframes intro-logo {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    filter: blur(7px);
  }
  55% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes intro-glow {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0.45;
    transform: scale(1.1);
  }
}
@keyframes intro-ring {
  0% {
    opacity: 0;
    transform: scale(0.35);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none;
  }
}

/* ============================================================
   HEADER + TICKER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(14, 28, 49, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand img {
  height: 26px;
  width: auto;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.toggle-coreone {
  display: none;
  align-items: center;
  gap: 8px;
}
.toggle-coreone img {
  height: 26px;
  width: auto;
}
.toggle-coreone span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}
.nav-wa {
  height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}
@media (min-width: 900px) {
  .toggle-coreone {
    display: flex;
  }
}

/* Ticker de sellos */
.ticker {
  margin-top: var(--nav-h);
  border-top: 1px solid var(--border-teal);
  border-bottom: 1px solid var(--border-teal);
  background: rgba(51, 211, 184, 0.05);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  white-space: nowrap;
}
.ticker-item::after {
  content: "·";
  color: rgba(51, 211, 184, 0.6);
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-900);
  padding: 44px 0 34px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(85% 55% at 50% 118%, rgba(255, 110, 25, 0.34), transparent 62%),
    radial-gradient(55% 42% at 10% 6%, rgba(51, 211, 184, 0.14), transparent 60%),
    radial-gradient(50% 38% at 90% 14%, rgba(62, 172, 226, 0.12), transparent 60%);
}
.hero h1 {
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.75rem);
  line-height: 1.1;
}

/* Falso play */
.video-wrap {
  max-width: 760px;
  margin: 36px auto 0;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-dark-strong);
  background: #05070c;
  box-shadow: var(--shadow-frame);
}
.video-frame .asset-pending {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
}
.video-frame .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Overlay de play para el video real (testimonio) */
.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: none;
  cursor: pointer;
  background: linear-gradient(to top, rgba(5, 7, 12, 0.55), transparent 55%);
}
.video-frame.playing .play-overlay {
  display: none;
}
/* VSL del hero: al reproducir, ocultar poster/overlay y traer el video al frente */
.video-frame.playing video {
  z-index: 4;
}
.video-frame.playing .poster,
.video-frame.playing .play,
.video-frame.playing .video-overlay-text {
  display: none;
}
.video-frame .play {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  z-index: 3;
  transition: transform 0.2s ease;
}
.video-frame:hover .play {
  transform: translate(-50%, -50%) scale(1.05);
}
.video-frame .play svg {
  margin-left: 3px;
}
.video-overlay-text {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 20px;
  background: linear-gradient(to top, rgba(5, 7, 12, 0.85), rgba(5, 7, 12, 0.2) 55%, transparent);
}
.video-overlay-text span {
  display: block;
  max-width: 40ch;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  background: linear-gradient(90deg, var(--teal-light), var(--teal), var(--teal-alt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.video-caption {
  margin: 22px auto 0;
  max-width: 620px;
  text-align: center;
  color: var(--on-dark-body);
  font-size: 1.05rem;
  line-height: 1.6;
}
.video-caption strong {
  color: #fff;
  font-weight: 700;
}

/* Bloque Olimpia */
.olimpia {
  margin: 32px auto 0;
  max-width: 860px;
  text-align: center;
}
.olimpia img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.55));
}
.olimpia .cap {
  margin-top: 16px;
  color: var(--on-dark-body);
  font-size: 1.0625rem;
}
.olimpia .cap strong {
  color: #fff;
  font-weight: 700;
}

/* ============================================================
   SECCIONES genéricas
   ============================================================ */
.section {
  padding: 38px 0;
}
.section-tight {
  padding: 28px 0;
}
.section-title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto;
}
.section-sub {
  text-align: center;
  color: var(--on-dark-body);
  max-width: 52ch;
  margin: 14px auto 0;
  font-size: 1.0625rem;
}

/* ---------- Bullets ---------- */
.bullets {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) {
  .bullets {
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
  }
}
.bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--on-dark-strong);
}
.bullet .check {
  flex: none;
  margin-top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  background: rgba(51, 211, 184, 0.15);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bullets-cta {
  margin-top: 32px;
}

/* ---------- Indicadores de éxito (stats) ---------- */
.stats-section {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.02);
  padding: 30px 0;
}
.stats-title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin-bottom: 26px;
}
.stats-grid {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .stats-grid {
    gap: 16px;
  }
}
.stat-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(51, 211, 184, 0.2);
  background: linear-gradient(135deg, rgba(51, 211, 184, 0.12), rgba(255, 255, 255, 0.02) 55%, rgba(62, 172, 226, 0.09));
  box-shadow: var(--shadow-inset, inset 0 1px 0 rgba(255, 255, 255, 0.06));
  padding: 20px 8px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.stat-card:hover {
  border-color: rgba(51, 211, 184, 0.45);
}
.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  background: var(--grad-stat);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat-label {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--on-dark-muted);
  line-height: 1.25;
}
@media (min-width: 768px) {
  .stat-label {
    font-size: 0.9rem;
  }
}
.stats-seal {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.stats-seal img {
  height: 48px;
  width: auto;
}

/* ---------- Cómo funciona (3 etapas) ---------- */
.steps {
  max-width: 960px;
  margin: 26px auto 0;
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.step {
  border-radius: var(--radius-card);
  border: 1px solid var(--border-dark-strong);
  background: rgba(255, 255, 255, 0.03);
  padding: 26px 22px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-900);
  background: var(--teal);
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.step p {
  color: var(--on-dark-body);
  font-size: 1rem;
}

/* ---------- Cards de 2 columnas (programas / formas) ---------- */
.duo {
  max-width: 900px;
  margin: 26px auto 0;
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .duo {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.card {
  border-radius: var(--radius-card);
  border: 1px solid var(--border-dark-strong);
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.card .kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 12px;
}
.card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.card p {
  color: var(--on-dark-body);
  font-size: 1.0625rem;
  flex: 1;
}
.card .btn {
  margin-top: 22px;
}

/* ---------- Spotlight simulador (sección clara) ---------- */
.spotlight {
  position: relative;
  overflow: hidden;
  background: var(--grad-light);
  color: var(--light-text);
  padding: 40px 0;
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 82% 8%, rgba(51, 211, 184, 0.1), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(18, 179, 160, 0.08), transparent 60%);
  pointer-events: none;
}
.spotlight .inner {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 1024px) {
  .spotlight .inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
  }
}
.spotlight-media {
  position: relative;
  display: flex;
  justify-content: center;
  order: 1;
}
.spotlight-media img {
  max-height: 460px;
  width: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-float);
}
@media (min-width: 1024px) {
  .spotlight-media img {
    max-height: 580px;
  }
}
.spotlight-body {
  order: 2;
  max-width: 520px;
}
.spotlight-body h2 {
  color: var(--light-text);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
}
.spotlight-body h2 .accent {
  background: none;
  color: var(--teal-dark);
  -webkit-text-fill-color: var(--teal-dark);
}
.spotlight-body p {
  margin-top: 18px;
  color: var(--light-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.spotlight-body .btn {
  margin-top: 26px;
}

/* ---------- Banda de inmersión (operador en consola) ---------- */
.immersion {
  position: relative;
  isolation: isolate;
  min-height: clamp(340px, 52vh, 500px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.immersion img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  z-index: -2;
}
.immersion::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(14, 28, 49, 0.92) 0%, rgba(14, 28, 49, 0.7) 38%, rgba(14, 28, 49, 0.25) 100%),
    linear-gradient(to bottom, rgba(24, 33, 53, 0.6), transparent 30%, transparent 70%, rgba(24, 33, 53, 0.9));
}
.immersion__inner {
  padding: 48px 20px;
  max-width: var(--container);
}
.immersion h2 {
  max-width: 18ch;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  line-height: 1.14;
  color: #fff;
}
.immersion p {
  margin-top: 14px;
  max-width: 42ch;
  color: var(--on-dark-body);
  font-size: 1.0625rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .immersion__inner {
    padding: 56px 24px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ---------- Licencia clase D ---------- */
.licencia {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-teal);
  background: rgba(51, 211, 184, 0.06);
  padding: 40px 28px;
}
.licencia h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #fff;
}
.licencia p {
  margin: 16px auto 0;
  max-width: 56ch;
  color: var(--on-dark-body);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.licencia .cta-row {
  margin-top: 26px;
}

/* ---------- Testimonio ---------- */
.testimonio {
  padding: 34px 0;
}
.testimonio .frame {
  max-width: 900px;
  margin: 0 auto;
}
.testimonio .video-frame {
  aspect-ratio: 16 / 9;
}
.testimonio .who {
  margin-top: 22px;
  text-align: center;
}
.testimonio .who .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}
.testimonio .who .role {
  margin-top: 4px;
  color: var(--on-dark-body);
}

/* ---------- Confían en (marquee logos) ---------- */
.confian {
  padding: 28px 0 34px;
}
.confian .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}
.confian .head .logos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.confian .head .logos img {
  height: 28px;
  width: auto;
}
.logo-marquee {
  overflow: hidden;
}
.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: logo-scroll 60s linear infinite;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.logo-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin: 0 26px;
  filter: brightness(1.45) contrast(1.05);
}
@media (min-width: 768px) {
  .logo-track img {
    height: 60px;
  }
}
@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Formulario ---------- */
.form-section {
  padding: 6px 0 44px;
  scroll-margin-top: 90px;
}
.form-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
}
.form-head h2 {
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.form-head p {
  margin-top: 12px;
  color: var(--on-dark-body);
  font-size: 1.0625rem;
}
.form-card {
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-dark-strong);
  background: rgba(255, 255, 255, 0.03);
  padding: 28px 22px;
}
@media (min-width: 640px) {
  .form-card {
    padding: 34px 32px;
  }
}
.field {
  margin-bottom: 16px;
}
.field.row2 {
  display: grid;
  gap: 16px;
}
@media (min-width: 560px) {
  .field.row2 {
    grid-template-columns: 1fr 1fr;
  }
}
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--on-dark-strong);
  margin-bottom: 7px;
}
.field input,
.field select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-dark-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.field input:focus,
.field select:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.06);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2333D3B8' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field select option {
  color: #111;
}
.form-card .btn {
  margin-top: 8px;
}
.form-note {
  max-width: 620px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--on-dark-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.form-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-ok {
  display: none;
  text-align: center;
  color: var(--teal);
  font-weight: 600;
  margin-top: 16px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 28px 0 44px;
}
.faq-list {
  max-width: 760px;
  margin: 24px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius-card);
  border: 1px solid var(--border-dark-strong);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
}
.faq-q .icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  border: 1px solid var(--border-teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 22px 22px;
  color: var(--teal);
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.02);
}
.footer-grid {
  display: grid;
  gap: 32px;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-brand img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}
.footer-brand .tag {
  margin-top: 12px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--on-dark-body);
}
.footer-pill {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-teal);
  background: rgba(51, 211, 184, 0.09);
  padding: 7px 14px;
  font-size: 0.9375rem;
  color: var(--on-dark-strong);
}
.footer-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(51, 211, 184, 0.9);
}
.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
  color: var(--on-dark-body);
  font-size: 1.0625rem;
}
.footer-col .line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col .line svg {
  color: rgba(51, 211, 184, 0.7);
  flex: none;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-social {
    align-items: flex-end;
  }
}
.footer-bar {
  border-top: 1px solid var(--border-dark);
  padding: 18px 0;
  text-align: center;
  color: var(--on-dark-muted);
  font-size: 0.9rem;
}

/* ---------- Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.06);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .logo-track {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
