/* ============================================
   PREMIOS MICRÓFONO DEL ESTE 2026
   ============================================ */
:root {
  --negro: #070707;
  --negro-2: #0e0e10;
  --negro-3: #16161a;
  --oro: #f2c94c;
  --oro-claro: #ffe89a;
  --oro-oscuro: #b8860b;
  --grad-oro: linear-gradient(135deg, #ffe89a 0%, #f2c94c 35%, #d4a017 70%, #f9df7b 100%);
  --blanco: #ffffff;
  --gris: #a9a9b3;
  --borde: rgba(242, 201, 76, 0.18);
  --sombra-oro: 0 0 40px rgba(242, 201, 76, 0.25);
  --fuente-titulo: 'Sora', sans-serif;
  --fuente-texto: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--negro);
  color: var(--blanco);
  font-family: var(--fuente-texto);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--oro); color: var(--negro); }

/* ---------- Utilidades ---------- */
.contenedor { width: min(1160px, 92%); margin-inline: auto; }

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

.etiqueta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oro);
  border: 1px solid var(--borde);
  border-radius: 999px;
  padding: .45rem 1.1rem;
  background: rgba(242, 201, 76, 0.06);
}

h1, h2, h3, h4 { font-family: var(--fuente-titulo); line-height: 1.15; }

/* ---------- Íconos monocromos ---------- */
.ic {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: -0.16em;
  flex-shrink: 0;
}
.ic-oro { color: var(--oro); }

.titulo-seccion {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  margin: 1rem 0 1.2rem;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--fuente-titulo);
  font-weight: 700;
  font-size: .95rem;
  padding: .95rem 2.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-oro {
  background: var(--grad-oro);
  color: #1a1200;
  box-shadow: 0 8px 30px rgba(242, 201, 76, 0.35);
}
.btn-oro:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 44px rgba(242, 201, 76, 0.5); }

.btn-borde {
  background: transparent;
  color: var(--oro);
  border: 1.5px solid var(--oro);
}
.btn-borde:hover { background: rgba(242, 201, 76, 0.1); transform: translateY(-3px); }

/* ---------- Navegación ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: .8rem 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.compacta {
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .6);
  padding: .45rem 0;
}
.nav-interior { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 54px; width: auto; transition: height .3s ease; }
.nav.compacta .nav-logo img { height: 42px; }
.nav-enlaces { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-enlaces a {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gris);
  transition: color .2s;
  position: relative;
}
.nav-enlaces a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad-oro);
  transition: width .28s ease;
}
.nav-enlaces a:hover { color: var(--blanco); }
.nav-enlaces a:hover::after { width: 100%; }
.nav-cta { padding: .6rem 1.4rem !important; font-size: .85rem; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--oro); transition: .3s; display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
#particulas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 38%, rgba(242, 201, 76, 0.13), transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(184, 134, 11, 0.1), transparent 60%);
  z-index: 0;
}
.hero-contenido { position: relative; z-index: 2; }
.hero-logo {
  width: min(340px, 66vw);
  margin-inline: auto;
  filter: drop-shadow(0 0 55px rgba(242, 201, 76, 0.4));
  animation: flotar 5.5s ease-in-out infinite;
}
@keyframes flotar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-anio {
  font-family: var(--fuente-titulo);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 800;
  letter-spacing: .12em;
  margin-top: .2rem;
}
.hero-sub {
  max-width: 640px;
  margin: 1.1rem auto 0;
  color: var(--gris);
  font-size: clamp(.98rem, 2vw, 1.15rem);
}
.hero-botones {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

/* Ecualizador decorativo */
.ecualizador {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 46px;
  margin-top: 3rem;
}
.ecualizador span {
  width: 5px;
  border-radius: 3px;
  background: var(--grad-oro);
  animation: eq 1.1s ease-in-out infinite;
  opacity: .85;
}
.ecualizador span:nth-child(1) { animation-delay: 0s; height: 30%; }
.ecualizador span:nth-child(2) { animation-delay: .15s; height: 65%; }
.ecualizador span:nth-child(3) { animation-delay: .3s; height: 100%; }
.ecualizador span:nth-child(4) { animation-delay: .45s; height: 55%; }
.ecualizador span:nth-child(5) { animation-delay: .6s; height: 80%; }
.ecualizador span:nth-child(6) { animation-delay: .25s; height: 45%; }
.ecualizador span:nth-child(7) { animation-delay: .5s; height: 90%; }
.ecualizador span:nth-child(8) { animation-delay: .1s; height: 35%; }
.ecualizador span:nth-child(9) { animation-delay: .4s; height: 70%; }
@keyframes eq {
  0%, 100% { transform: scaleY(.4); }
  50% { transform: scaleY(1); }
}

/* ---------- Marquee de categorías ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--borde);
  background: var(--negro-2);
  padding: 1rem 0;
  white-space: nowrap;
}
.marquee-pista {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-pista span {
  font-family: var(--fuente-titulo);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oro);
  opacity: .8;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Secciones ---------- */
.seccion { padding: 5.5rem 0; position: relative; }
.seccion-oscura { background: var(--negro-2); }

/* Nosotros */
.grid-nosotros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.tarjeta {
  background: linear-gradient(160deg, var(--negro-3), var(--negro-2));
  border: 1px solid var(--borde);
  border-radius: 20px;
  padding: 2rem 1.7rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.tarjeta:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 201, 76, 0.5);
  box-shadow: var(--sombra-oro);
}
.tarjeta .icono {
  margin-bottom: .9rem;
  display: inline-block;
  color: var(--oro);
}
.tarjeta .icono .ic { width: 2rem; height: 2rem; stroke-width: 1.7; }
.tarjeta h3 { font-size: 1.15rem; margin-bottom: .6rem; color: var(--oro); }
.tarjeta p { color: var(--gris); font-size: .94rem; }

/* Contadores */
.contadores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  text-align: center;
}
.contador h3 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
}
.contador p {
  color: var(--gris);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .3rem;
}

/* Categorías */
.renglones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.renglon {
  background: var(--negro-3);
  border: 1px solid var(--borde);
  border-radius: 22px;
  padding: 2rem 1.8rem;
}
.renglon h3 {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: 1.25rem;
  margin-bottom: 1.3rem;
}
.lista-categorias { list-style: none; display: grid; gap: .55rem; }
.lista-categorias li {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .68rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .95rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.lista-categorias li:hover {
  border-color: var(--borde);
  background: rgba(242, 201, 76, 0.07);
  transform: translateX(6px);
}
.lista-categorias .emoji { color: var(--oro); display: inline-flex; }
.lista-categorias .emoji .ic { width: 1.15rem; height: 1.15rem; }
.renglon h3 .ic, .titulo-seccion .ic { color: var(--oro); }
.pildora-voto .ic { width: 1.5rem; height: 1.5rem; }

.nota-votos {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pildora-voto {
  background: var(--negro-3);
  border: 1px solid var(--borde);
  border-radius: 16px;
  padding: 1.1rem 1.8rem;
  font-size: .92rem;
  color: var(--gris);
}
.pildora-voto strong { color: var(--oro); font-size: 1.3rem; display: block; font-family: var(--fuente-titulo); }

/* Reconocimientos */
.recon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

/* Ganadores 2025 */
.ganadores-columnas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.lista-ganadores { list-style: none; display: grid; gap: .5rem; }
.lista-ganadores li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: .93rem;
}
.lista-ganadores .cat { color: var(--gris); }
.lista-ganadores .nombre { color: var(--oro); font-weight: 600; text-align: right; }

/* Galería */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 2.5rem;
}
.galeria-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(.92);
}
.galeria-item:hover img { transform: scale(1.08); filter: saturate(1.1); }
.galeria-item.grande { grid-column: span 2; grid-row: span 2; }
@media (max-width: 640px) { .galeria-item.grande { grid-column: span 1; grid-row: span 1; } }

/* Videos */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.video-marco {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--borde);
  background: var(--negro-3);
}
.video-marco iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-titulo {
  margin-top: .7rem;
  font-size: .9rem;
  color: var(--gris);
  font-weight: 600;
}
.video-enlace { display: block; }
.video-enlace img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.video-enlace:hover img { transform: scale(1.06); }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--grad-oro);
  color: #1a1200;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  padding-left: 4px;
  box-shadow: 0 0 34px rgba(242, 201, 76, 0.55);
  transition: transform .3s ease;
}
.video-enlace:hover .video-play { transform: translate(-50%, -50%) scale(1.12); }

/* Productor */
.productor-caja {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
  background: var(--negro-3);
  border: 1px solid var(--borde);
  border-radius: 24px;
  padding: 2.4rem;
}
.productor-caja p { color: var(--gris); margin-bottom: 1rem; }

/* CTA final */
.cta-final {
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 50%, rgba(242, 201, 76, 0.12), transparent 70%);
}
.cta-final > .contenedor { position: relative; }

/* Footer */
.footer {
  border-top: 1px solid var(--borde);
  padding: 3rem 0 2rem;
  background: var(--negro-2);
}
.footer-interior {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { height: 70px; width: auto; }
.redes { display: flex; gap: .8rem; }
.redes a {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--borde);
  border-radius: 50%;
  color: var(--oro);
  transition: background .25s, transform .25s;
}
.redes a:hover { background: rgba(242, 201, 76, 0.12); transform: translateY(-4px); }
.redes svg { width: 19px; height: 19px; fill: currentColor; }
.footer-copy {
  margin-top: 2rem;
  text-align: center;
  color: #6d6d78;
  font-size: .82rem;
}

/* ---------- Animaciones de aparición ---------- */
.revelar {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}
.revelar.visible { opacity: 1; transform: translateY(0); }
.revelar-retraso-1 { transition-delay: .12s; }
.revelar-retraso-2 { transition-delay: .24s; }
.revelar-retraso-3 { transition-delay: .36s; }

/* ============================================
   FORMULARIO DE POSTULACIÓN
   ============================================ */
.pagina-form {
  min-height: 100svh;
  padding: 8.5rem 0 5rem;
  position: relative;
}
.pagina-form::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 85% 8%, rgba(242, 201, 76, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 95%, rgba(184, 134, 11, 0.07), transparent 60%);
  pointer-events: none;
}
.form-cabecera { text-align: center; max-width: 680px; margin: 0 auto 3rem; position: relative; }
.form-cabecera p { color: var(--gris); margin-top: .8rem; }

.form-tarjeta {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  background: linear-gradient(170deg, var(--negro-3), var(--negro-2));
  border: 1px solid var(--borde);
  border-radius: 26px;
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

/* Barra de progreso */
.pasos-barra {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.6rem;
  position: relative;
}
.pasos-barra::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 8%; right: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
.pasos-barra::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 8%;
  height: 2px;
  width: calc(var(--progreso, 0) * 84%);
  background: var(--grad-oro);
  z-index: 0;
  transition: width .5s ease;
}
.paso-punto {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex: 1;
}
.paso-punto .circulo {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--fuente-titulo);
  font-weight: 700;
  font-size: .95rem;
  background: var(--negro-2);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--gris);
  transition: all .4s ease;
}
.paso-punto .paso-nombre {
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #77777f;
  text-align: center;
  transition: color .3s;
}
.paso-punto.activo .circulo {
  background: var(--grad-oro);
  border-color: transparent;
  color: #1a1200;
  box-shadow: 0 0 24px rgba(242, 201, 76, 0.45);
  transform: scale(1.08);
}
.paso-punto.activo .paso-nombre { color: var(--oro); }
.paso-punto.completado .circulo {
  background: rgba(242, 201, 76, 0.15);
  border-color: var(--oro);
  color: var(--oro);
}

/* Pasos */
.paso-panel { display: none; animation: aparecerPaso .45s ease; }
.paso-panel.activo { display: block; }
@keyframes aparecerPaso {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: translateX(0); }
}
.paso-panel h2 {
  font-size: 1.35rem;
  margin-bottom: .4rem;
}
.paso-desc { color: var(--gris); font-size: .92rem; margin-bottom: 1.8rem; }

/* Campos */
.campo { margin-bottom: 1.35rem; }
.fila-doble {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 560px) { .fila-doble { grid-template-columns: 1fr; } }

.campo label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  margin-bottom: .45rem;
  color: #d8d8de;
}
.campo label .req { color: var(--oro); }
.campo label .opcional { color: #71717a; font-weight: 400; font-size: .78rem; }
.campo input[type="text"],
.campo input[type="email"],
.campo input[type="tel"],
.campo input[type="url"],
.campo select,
.campo textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  color: var(--blanco);
  font-family: var(--fuente-texto);
  font-size: .96rem;
  padding: .85rem 1.05rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.campo select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f2c94c' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.campo select option { background: var(--negro-2); }
.campo input:focus, .campo select:focus, .campo textarea:focus {
  outline: none;
  border-color: var(--oro);
  box-shadow: 0 0 0 4px rgba(242, 201, 76, 0.14);
  background: rgba(242, 201, 76, 0.04);
}
.campo input.invalido, .campo select.invalido {
  border-color: #e5484d;
  box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.12);
}
.campo .ayuda { font-size: .78rem; color: #71717a; margin-top: .35rem; }
.mensaje-error {
  display: none;
  color: #ff8589;
  font-size: .82rem;
  margin-top: .4rem;
}
.mensaje-error.visible { display: block; }

/* Chips de categorías */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.chip {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  font-size: .86rem;
  color: var(--gris);
  transition: all .22s ease;
}
.chip:hover span { border-color: rgba(242, 201, 76, 0.5); color: var(--blanco); }
.chip input:checked + span {
  background: var(--grad-oro);
  border-color: transparent;
  color: #1a1200;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(242, 201, 76, 0.35);
}
.chips-grupo-titulo {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--oro);
  margin: 1.1rem 0 .6rem;
}

/* Navegación del formulario */
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.form-nav .btn { min-width: 140px; justify-content: center; }
.btn-fantasma {
  background: transparent;
  color: var(--gris);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.btn-fantasma:hover { color: var(--blanco); border-color: rgba(255, 255, 255, 0.4); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* Resumen */
.resumen {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.4rem;
}
.resumen h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--oro);
  margin-bottom: .8rem;
}
.resumen dl { display: grid; gap: .45rem; }
.resumen .par { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.resumen dt { color: var(--gris); }
.resumen dd { text-align: right; font-weight: 600; }

.check-politicas {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--gris);
  cursor: pointer;
  margin-top: 1.2rem;
}
.check-politicas input {
  margin-top: .25rem;
  width: 18px; height: 18px;
  accent-color: var(--oro);
  flex-shrink: 0;
}

/* Pantalla de éxito */
.exito {
  text-align: center;
  padding: 2.5rem 1rem;
  display: none;
}
.exito.visible { display: block; animation: aparecerPaso .5s ease; }
.exito .icono-exito {
  width: 92px; height: 92px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--grad-oro);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  box-shadow: 0 0 60px rgba(242, 201, 76, 0.5);
  animation: pulso 2s ease-in-out infinite;
}
@keyframes pulso {
  0%, 100% { box-shadow: 0 0 40px rgba(242, 201, 76, 0.4); }
  50% { box-shadow: 0 0 80px rgba(242, 201, 76, 0.7); }
}
.exito h2 { font-size: 1.7rem; margin-bottom: .8rem; }
.exito p { color: var(--gris); max-width: 480px; margin: 0 auto 1.8rem; }

/* Honeypot */
.hp-campo { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-enlaces {
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 7, 0.97);
    flex-direction: column;
    justify-content: center;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 99;
  }
  .nav-enlaces.abierto { transform: translateX(0); }
  .nav-burger { display: flex; z-index: 100; }
  .nav-burger.abierto span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-burger.abierto span:nth-child(2) { opacity: 0; }
  .nav-burger.abierto span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .paso-punto .paso-nombre { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
