:root {
  --bg: #0a0a0c;
  --bg-2: #121216;
  --card: rgba(24, 24, 28, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --txt: #f4f4f6;
  --muted: #a0a0a8;
  --red: #e50914;
  --red-soft: rgba(229, 9, 20, 0.14);
  /* Acentos de la tarjeta de cuenta. Se redefinen en body.tema-disney para que
     la misma tarjeta salga roja en Netflix y azul en Disney. */
  --acento-borde: rgba(229, 9, 20, 0.42);
  --acento-fondo: rgba(229, 9, 20, 0.13);
  --acento-fondo-2: rgba(229, 9, 20, 0.05);
  --acento-linea: rgba(229, 9, 20, 0.26);
  --acento-claro: #ff9ba0;
  --avatar-1: #ff3b45;
  --avatar-2: #b0060f;
  --ok: #2ecc71;
  --radius: 18px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* ===== Tema Disney (azul) — se activa al elegir Disney ===== */
body.tema-disney {
  --red: #1f5cff;
  --red-soft: rgba(31,92,255,.16);
  --acento-borde: rgba(31,92,255,.34);
  --acento-fondo: rgba(31,92,255,.14);
  --acento-fondo-2: rgba(31,92,255,.05);
  --acento-linea: rgba(31,92,255,.24);
  --acento-claro: #9db8ff;
  --avatar-1: #2f6cff;
  --avatar-2: #1a49d6;
}
body.tema-disney .bg-glow {
  background:
    radial-gradient(60vmax 60vmax at 50% -10%, rgba(31,92,255,.30), transparent 60%),
    radial-gradient(50vmax 50vmax at 90% 110%, rgba(31,92,255,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
body.tema-disney #mail { border-color: rgba(31,92,255,.55); animation-name: latido-disney; }
@keyframes latido-disney {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31,92,255,0); border-color: rgba(31,92,255,.45); }
  50% { box-shadow: 0 0 0 5px rgba(31,92,255,.18); border-color: rgba(31,92,255,.85); }
}
body.tema-disney .code { text-shadow: 0 0 26px rgba(31,92,255,.55); }
/* Detalles que tenían el rojo escrito a mano y se quedaban fuera del tema:
   el puntito de la etiqueta y el borde del código al pasar por encima. */
body.tema-disney .result .kind::before { box-shadow: 0 0 8px 1px rgba(31,92,255,.7); }
body.tema-disney .code-box:hover { border-color: rgba(31,92,255,.5); }
body.tema-disney .copiado .code { text-shadow: 0 0 26px rgba(46,204,113,.5); }

body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Resplandor de fondo */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60vmax 60vmax at 50% -10%, rgba(229, 9, 20, 0.22), transparent 60%),
    radial-gradient(50vmax 50vmax at 90% 110%, rgba(229, 9, 20, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  pointer-events: none;
}

/* Barra superior */
.topbar {
  /* sin z-index a propósito: así el mix-blend-mode del logo se mezcla con el
     fondo y el negro del logo desaparece (una capa aislada lo rompería). */
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}
.brand-logo {
  height: 40px; width: auto; flex: none;
  mix-blend-mode: screen;
}
.brand-name { font-size: 14px; font-weight: 700; letter-spacing: .3px; color: var(--muted); }

/* Logo Mi Chester (hero). El logo trae fondo negro; con mix-blend-mode:screen
   ese negro se vuelve transparente y solo se ve el perro dorado + el texto,
   sin cuadrado sobre el degradado de la página. */
.hero-logo {
  /* position:relative SIN z-index: queda encima del degradado por orden del
     DOM, pero NO crea una capa aislada, así el mix-blend-mode del logo puede
     mezclarse con el fondo y el negro desaparece. */
  position: relative;
  width: 100%; box-sizing: border-box;
  display: flex; justify-content: center;
  margin-top: 6px; padding: 0 20px;
}
.hero-logo img {
  width: 210px; height: auto; max-width: 60%;
  mix-blend-mode: screen;
}
@media (max-width: 420px) {
  .hero-logo img { width: 190px; max-width: 62%; }
}

.lang { display: flex; gap: 2px; background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang button {
  border: 0; background: transparent; color: var(--muted);
  font: 600 12px/1 var(--font); padding: 7px 11px; border-radius: 999px; cursor: pointer;
  transition: .18s;
}
.lang button.on { background: var(--red); color: #fff; }

/* Contenedor */
.wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 10px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tarjeta */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
}

/* Logo de la plataforma elegida (para que se note dónde están) */
.plat-hero { display: flex; justify-content: center; margin: 0 0 14px; }
.logo-netflix { height: 66px; width: auto; }
.logo-disney { height: 96px; width: auto; border-radius: 16px; box-shadow: 0 10px 30px -8px rgba(31,92,255,.6); }

.title { margin: 0; font-size: 26px; font-weight: 800; letter-spacing: -.4px; }
.subtitle { margin: 6px 0 22px; color: var(--muted); font-size: 15px; }

/* Pasos */
.steps { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
.steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: #d7d7dc; line-height: 1.45; }
.steps b { color: #fff; font-weight: 700; }
.step-n {
  flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red-soft); color: var(--red);
  font-weight: 800; font-size: 13px;
  border: 1px solid rgba(229,9,20,.35);
}

/* Nota del código de 6 dígitos */
.nota {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--red-soft); border: 1px solid rgba(229,9,20,.3);
  border-radius: 12px; padding: 12px 14px; margin: 0 0 20px;
  font-size: 13.5px; line-height: 1.5; color: #e9d6d8;
}
.nota-ico { font-size: 17px; line-height: 1.3; flex: none; }
.nota b { color: #fff; }
.nota i { color: #ffd7da; font-style: normal; }

/* Link a la guía */
.ver-guia {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--txt);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; margin: 0 0 18px;
  font-size: 13.5px; transition: border-color .15s, background .15s;
}
.ver-guia:hover { border-color: rgba(229,9,20,.5); background: var(--red-soft); }
.ver-guia b { color: #fff; }
.ver-guia .vg-play {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 10px;
  display: grid; place-items: center; padding-left: 2px;
}
.ver-guia .vg-arrow { margin-left: auto; color: var(--muted); font-size: 16px; }

/* Formulario */
.campo-label {
  display: block; text-align: center;
  color: #fff; font-size: 15px; font-weight: 700;
  margin: 4px 0 10px; letter-spacing: .2px;
}
.field { display: flex; gap: 10px; }
#mail {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(229,9,20,.55);
  color: var(--txt);
  border-radius: 12px;
  padding: 16px 16px;
  font-size: 16px; /* 16px evita el zoom automático en iOS */
  transition: border-color .18s, box-shadow .18s;
  box-shadow: 0 0 0 0 rgba(229,9,20,.45);
  animation: latido-campo 2.4s ease-in-out infinite;
}
#mail::placeholder { color: #b9b9c0; }
#mail:focus {
  outline: none; border-color: var(--red);
  background: rgba(0,0,0,.4);
  box-shadow: 0 0 0 4px var(--red-soft);
  animation: none; /* al escribir, deja de parpadear */
}
/* Latido suave para que el ojo vaya al campo (clave en móvil) */
@keyframes latido-campo {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,9,20,0); border-color: rgba(229,9,20,.45); }
  50% { box-shadow: 0 0 0 5px rgba(229,9,20,.16); border-color: rgba(229,9,20,.8); }
}

/* Inputs a ancho completo (apilados) */
.inp-full { width: 100%; box-sizing: border-box; }
#fila-clave { margin-top: 12px; }
.sub-lbl { color: var(--muted); font-weight: 500; font-size: 13px; }

#btn, .btn-full {
  width: 100%; margin-top: 14px;
  background: var(--red); color: #fff;
  border: 0; border-radius: 12px;
  min-height: 54px;
  font-size: 16px; font-weight: 800; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: filter .15s, transform .05s;
}
#btn:hover { filter: brightness(1.08); }
#btn:active { transform: scale(.99); }
#btn:disabled { opacity: .65; cursor: default; }

/* Selector de plataforma (Netflix / Disney) */
.elige { text-align: center; color: var(--muted); font-size: 13.5px; margin: 0 0 10px; font-weight: 600; }
.selector {
  display: flex; gap: 10px; max-width: 560px; width: 100%;
  margin: 0 auto 16px; padding: 0 20px; box-sizing: border-box;
  position: relative; z-index: 1;
}
.sel-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px; border-radius: 14px; cursor: pointer;
  background: rgba(255,255,255,.05); border: 2px solid var(--line);
  color: var(--muted); font-family: var(--font); font-size: 16px; font-weight: 800;
  transition: .16s;
}
.sel-btn span { font-size: 18px; }
.sel-btn:hover { border-color: rgba(255,255,255,.25); color: var(--txt); }
.sel-btn.on[data-plat="netflix"] { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 8px 22px -8px rgba(229,9,20,.7); }
.sel-btn.on[data-plat="disney"]  { background: #1a49d6; border-color: #1a49d6; color: #fff; box-shadow: 0 8px 22px -8px rgba(26,73,214,.7); }

/* Sub-selector dentro de Netflix: Hogar/Viaje (sin clave) · Inicio de sesión (con clave) */
.sub-selector { display: flex; gap: 8px; margin: 2px 0 18px; }
.sub-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 8px; border-radius: 12px; cursor: pointer;
  background: rgba(255,255,255,.05); border: 1.5px solid var(--line);
  color: var(--muted); font-family: var(--font); font-size: 13.5px; font-weight: 700;
  transition: .16s;
}
.sub-btn span { font-size: 15px; }
.sub-btn:hover { border-color: rgba(255,255,255,.25); color: var(--txt); }
.sub-btn.on { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 6px 18px -8px rgba(229,9,20,.65); }

/* Aviso "Disney pronto" */
.disney-pronto {
  margin-top: 14px; text-align: center; padding: 16px;
  background: rgba(26,73,214,.12); border: 1px solid rgba(26,73,214,.4);
  border-radius: 12px; color: #bcd0ff; font-weight: 600; font-size: 14.5px;
}

/* Advertencia Disney */
.aviso-disney {
  display: flex; gap: 8px; align-items: flex-start;
  background: rgba(231,182,75,.10); border: 1px solid rgba(231,182,75,.35);
  border-radius: 10px; padding: 10px 12px; margin: 2px 0 4px;
  font-size: 13px; line-height: 1.45; color: #ecdbb0;
}
.aviso-disney b { color: #fff; }

/* Modal flotante de clave (Disney) */
.modal-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(0,0,0,.74); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: fadein .2s ease;
}
.modal-overlay[hidden] { display: none; } /* el atributo hidden debe ganar */
.modal {
  position: relative; width: 100%; max-width: 380px;
  background: var(--card); border: 1px solid rgba(31,92,255,.45);
  border-radius: 18px; padding: 28px 22px 22px; text-align: center;
  box-shadow: 0 30px 70px -18px rgba(0,0,0,.85);
  animation: pop .28s ease;
}
.modal-x {
  position: absolute; top: 12px; right: 12px; width: 46px; height: 46px;
  border-radius: 50%; border: 1.5px solid var(--line); background: rgba(255,255,255,.08);
  color: #fff; font-size: 20px; font-weight: 700; cursor: pointer;
  display: grid; place-items: center; transition: .15s;
}
.modal-x:hover { background: rgba(255,255,255,.16); }
.modal-x:active { transform: scale(.92); }
.modal-ico {
  width: 62px; height: 62px; margin: 0 auto 12px; border-radius: 50%;
  background: rgba(31,92,255,.16); display: grid; place-items: center; font-size: 28px;
}
.modal-titulo { font-size: 21px; font-weight: 800; margin: 0 0 6px; }
.modal-texto { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0 0 16px; }
.modal-texto b { color: #fff; }
.modal .inp-full {
  margin-bottom: 12px; border: 2px solid rgba(31,92,255,.6); background: rgba(0,0,0,.4);
  color: var(--txt); border-radius: 12px; padding: 15px 16px; font-size: 16px; text-align: center;
}
.modal .inp-full:focus { outline: none; border-color: #1f5cff; box-shadow: 0 0 0 4px rgba(31,92,255,.2); }
.modal .btn-full { margin-top: 0; background: #1f5cff; }
.modal-error { color: #ffb3b8; font-size: 13.5px; margin: 12px 0 0; }
/* La pista de los dos últimos dígitos. Va destacada dentro del error porque es
   lo que de verdad resuelve el problema: el cliente reconoce cuál de sus
   celulares usar sin tener que adivinar. */
.pista {
  display: block; margin-top: 10px; padding: 10px 12px; border-radius: 10px;
  background: rgba(255,176,32,.12); border: 1px solid rgba(255,176,32,.4);
  color: #ffc861; font-size: 13.5px; font-weight: 600;
}
.pista b { color: #fff; font-weight: 800; letter-spacing: .5px; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* Código difuminado (Disney, antes de poner la clave) */
.code.blur { filter: blur(11px); -webkit-user-select: none; user-select: none; }
.code-box.bloqueado { cursor: default; border-color: rgba(26,73,214,.5); }
.code-box.bloqueado:hover { border-color: rgba(26,73,214,.7); }
.code-box.bloqueado .code-hint { color: #bcd0ff; }

.btn-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.captcha { margin-top: 14px; display: flex; justify-content: center; }

/* Salida de resultados */
.salida { margin-top: 6px; }
.salida:empty { margin-top: 0; }

.msg {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  animation: pop .25s ease;
}
.msg.error { border-color: rgba(229,9,20,.4); background: var(--red-soft); color: #ffd0d3; }

.result {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  animation: pop .28s ease;
}
.result .top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 16px; border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.result .kind {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--red);
}
.result .kind::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px 1px rgba(229,9,20,.7); }
.result .when { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.result .body { padding: 16px 15px 18px; text-align: center; }

/* Código = botón grande para copiar de un toque (clave en móvil) */
.code-box {
  -webkit-tap-highlight-color: transparent;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 100%; border: 1.5px solid var(--line); border-radius: 14px;
  background: rgba(0,0,0,.30); color: inherit; cursor: pointer;
  padding: 16px 10px 12px; transition: border-color .15s, background .15s, transform .05s;
}
.code-box:hover { border-color: rgba(229,9,20,.5); }
.code-box:active { transform: scale(.99); }
.code-box.copiado { border-color: var(--ok); background: rgba(46,204,113,.10); }
.code {
  font-family: "SF Mono", ui-monospace, "Roboto Mono", Menlo, Consolas, monospace;
  font-size: clamp(32px, 10vw, 44px); font-weight: 800; letter-spacing: 4px;
  line-height: 1.05; color: #fff; text-shadow: 0 0 26px rgba(229,9,20,.55);
  white-space: nowrap; text-indent: 4px; /* compensa el letter-spacing final */
}
.copiado .code { text-shadow: 0 0 26px rgba(46,204,113,.5); }
.code-hint { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.copiado .code-hint { color: var(--ok); }

.subject { font-size: 15px; color: #e9e9ee; margin: 0; }
.action {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; box-sizing: border-box;
  background: var(--red); color: #fff; text-decoration: none;
  padding: 15px 22px; border-radius: 12px; font-weight: 700; font-size: 15.5px;
  transition: filter .15s, transform .05s;
}
.action:hover { filter: brightness(1.08); }
.action:active { transform: scale(.99); }

@keyframes pop { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.pie { text-align: center; color: #6c6c74; font-size: 12.5px; margin: 22px auto 0; max-width: 420px; }
.admin-link { display: block; text-align: center; color: #4a4a52; font-size: 11px; text-decoration: none; margin: 14px auto 0; letter-spacing: .5px; }
.admin-link:hover { color: var(--muted); }

@media (max-width: 420px) {
  .field { flex-direction: column; }
  #btn { min-height: 50px; justify-content: center; }
  .title { font-size: 23px; }
}

/* ============ Tarjeta de la cuenta del cliente ============
   Aparece bajo el código, después de que el cliente se identifica con su
   número. Le dice cuál de los perfiles de la cuenta es el suyo y cuándo le
   toca renovar — y con quién, porque "tu suscripción vence" a secas hace
   pensar que le paga a la plataforma y no a Chester. */
.cuenta {
  margin-top: 16px; border-radius: 16px; padding: 16px;
  background: linear-gradient(160deg, var(--acento-fondo), var(--acento-fondo-2));
  border: 1px solid var(--acento-borde);
}
.cuenta[hidden] { display: none; }
.cuenta .quien { display: flex; align-items: center; gap: 12px; }
/* La inicial en un círculo hace de avatar sin necesitar foto: entre los 7
   perfiles de una cuenta compartida, el cliente se reconoce al instante. */
.cuenta .avatar {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%;
  background: linear-gradient(160deg, var(--avatar-1), var(--avatar-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; font-weight: 800; color: #fff; text-transform: uppercase;
  box-shadow: 0 6px 18px -6px var(--acento-borde);
}
.cuenta .nombre { font-size: 19px; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; }
.cuenta .rotulo { font-size: 11.5px; color: var(--acento-claro); text-transform: uppercase; letter-spacing: .6px; font-weight: 700; }
.cuenta .vence {
  margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--acento-linea);
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.cuenta .vence .txt { font-size: 12.5px; color: var(--muted); }
.cuenta .vence .marca { color: var(--acento-claro); font-weight: 800; }
.cuenta .vence .fecha { display: block; font-size: 15px; font-weight: 700; color: var(--txt); margin-top: 2px; }
/* El contador convierte un dato en un aviso: "faltan 3 días" mueve a renovar,
   "Septiembre 8" no le dice nada a nadie. */
.cuenta .dias { font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.cuenta .dias.ok { background: rgba(46,204,113,.16); color: #6ee7a0; }
.cuenta .dias.pronto { background: rgba(255,176,32,.16); color: #ffc861; }
.cuenta .dias.vencido { background: rgba(229,9,20,.18); color: #ff9ba0; }

/* Botón de renovación por WhatsApp. Crece con la urgencia: mientras aún quedan
   días es un enlace discreto que no le compite al código —que es lo que el
   cliente vino a buscar—, y solo se vuelve botón lleno cuando el vencimiento
   ya está encima. Un aviso que grita siempre deja de avisar. */
.wa {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 14px; padding: 13px 16px; border-radius: 12px;
  background: #25D366; color: #06331a; font-weight: 800; font-size: 14.5px;
  text-decoration: none; transition: .15s;
}
.wa:hover { background: #1fbe5a; transform: translateY(-1px); }
.wa:active { transform: translateY(0); }
.wa svg { flex: 0 0 20px; }
/* Versión discreta: aún quedan días, así que solo se insinúa. */
.wa.sutil {
  background: transparent; color: #6ee7a0; font-weight: 700; font-size: 13px;
  border: 1px solid rgba(37,211,102,.42); padding: 10px 14px; margin-top: 12px;
}
.wa.sutil:hover { background: rgba(37,211,102,.10); border-color: rgba(37,211,102,.7); color: #8af0b6; }
.wa.sutil svg { flex: 0 0 17px; opacity: .85; }
.modal .wa { margin-top: 14px; }


/* ---- PRUEBA: promo de 2 dias (temporal, ver comentario en index.html) ---- */
.promo {
  max-width: 420px; margin: 20px auto 0; padding: 16px 18px;
  border: 1px solid rgba(255,194,71,.30); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,194,71,.10), rgba(255,194,71,.03));
  text-align: center;
}
.promo-titulo { margin: 0; font-size: 15px; font-weight: 700; color: #f2f2f5; }
.promo-titulo b { color: #ffc247; }
.promo-sub { margin: 5px 0 13px; font-size: 12.5px; color: #a2a2b0; }
.promo-botones { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.promo-boton {
  display: inline-block; padding: 9px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  background: #25d366; color: #06240f; transition: background .15s, transform .1s;
}
.promo-boton:hover { background: #1fbe5a; transform: translateY(-1px); }
.promo-boton--linea { background: transparent; color: #f2f2f5; border: 1px solid rgba(255,255,255,.16); }
.promo-boton--linea:hover { background: rgba(255,255,255,.06); }

/* Aviso de correo mal escrito: "¿Quisiste decir …?" con un botón que lo corrige
   y vuelve a buscar de un toque. Va debajo del mensaje de "no llega nada".
   Discreto a propósito: es una ayuda, no un error — el cliente no hizo nada
   malo, solo se le fue una letra. */
.msg.sugerencia {
  margin-top: 10px;
  background: var(--acento-fondo);
  border: 1px solid var(--acento-linea);
  color: var(--txt);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.msg.sugerencia b { color: var(--acento-claro); word-break: break-all; }
.btn-sugerencia {
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 9px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.btn-sugerencia:hover { filter: brightness(1.08); }
