    :root {
      --bg-main: #0f1220;
      --bg-card: #181c33;
      --accent: #7c8cff;
      --accent-soft: #aab2ff;
      --text-main: #e8e9f3;
      --text-muted: #a1a4c8;
      --border-soft: rgba(255,255,255,0.08);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #161a3a, var(--bg-main));
      color: var(--text-main);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* ---------- TOP BAR ---------- */
    .topbar {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    /* MENU */
    nav {
      display: flex;
      gap: 22px;
    }

    nav a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 500;
      position: relative;
      padding-bottom: 4px;
    }

    nav a:hover {
      color: var(--text-main);
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0%;
      height: 2px;
      background: var(--accent);
      transition: width 0.2s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    /* AUTH BUTTONS */
    .auth-buttons {
      display: flex;
      gap: 10px;
    }

    .btn-secondary {
      background: transparent;
      border: 1px solid var(--border-soft);
      color: var(--text-main);
      padding: 8px 16px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.15s ease, border 0.15s ease;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.05);
      border-color: var(--accent);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #5f6cff);
      border: none;
      color: #fff;
      padding: 8px 18px;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(124,140,255,0.35);
    }

    /* ---------- CENTERED CONTENT ---------- */
    .main-wrapper {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .container {
      width: 100%;
      max-width: 820px;
      text-align: center;
      transform: translateY(-40px);
    }

    header {
      margin-bottom: 40px;
    }

    header h1 {
      font-size: 2.6rem;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    header p {
      color: var(--text-muted);
      max-width: 620px;
      margin: auto;
      line-height: 1.6;
      font-size: 1.05rem;
    }

    .card {
      background: linear-gradient(180deg, var(--bg-card), #12152a);
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      text-align: left;
    }

    label {
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
      color: var(--accent-soft);
    }

    textarea {
      width: 100%;
      min-height: 140px;
      resize: vertical;
      border-radius: 12px;
      border: 1px solid var(--border-soft);
      padding: 14px;
      font-size: 1rem;
      background: #0c0f23;
      color: var(--text-main);
      outline: none;
      line-height: 1.6;
    }

    textarea::placeholder {
      color: #7f84b8;
    }

    textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(124,140,255,0.2);
    }

    .actions {
      display: flex;
      justify-content: flex-end;
      margin-top: 20px;
    }

    button.main-action {
      background: linear-gradient(135deg, var(--accent), #5f6cff);
      border: none;
      border-radius: 12px;
      padding: 12px 22px;
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(124,140,255,0.35);
    }

    .respuesta {
      margin-top: 30px;
      padding: 20px;
      border-radius: 14px;
      background: #0c0f23;
      border: 1px solid var(--border-soft);
      line-height: 1.7;
      white-space: pre-line;
      display: none;
    }
    
    
    
    button.main-action:disabled {
      opacity: 0.65;
      cursor: wait;
      box-shadow: none;
    }
    
    .respuesta {
      overflow-wrap: anywhere;
    }
    
    .respuesta:empty {
      display: none;
    }

    /* =========================================
       CONVERSACIÓN DE SEGUIMIENTO
    ========================================= */
    
    .continuar-conversacion {
      display: none;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--border-soft);
    }
    
    .mensaje-seguimiento {
      min-height: 100px;
    }
    
    .seguimiento-info {
      margin-top: 10px;
      color: var(--text-muted);
      font-size: 0.88rem;
    }
    
    .conversacion {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 22px;
    }
    
    .mensaje-conversacion {
      max-width: 88%;
      padding: 15px 17px;
      border-radius: 14px;
      line-height: 1.65;
      white-space: pre-line;
      overflow-wrap: anywhere;
    }
    
    .mensaje-conversacion strong {
      display: block;
      margin-bottom: 7px;
      font-size: 0.86rem;
    }
    
    .mensaje-usuario {
      align-self: flex-end;
      background: linear-gradient(
        135deg,
        var(--accent),
        #5f6cff
      );
      color: #fff;
      border-bottom-right-radius: 4px;
    }
    
    .mensaje-interprete {
      align-self: flex-start;
      background: #0c0f23;
      border: 1px solid var(--border-soft);
      color: var(--text-main);
      border-bottom-left-radius: 4px;
    }
    
    .mensaje-interprete strong {
      color: var(--accent-soft);
    }
    
    .mensaje-error {
      align-self: center;
      max-width: 100%;
      background: rgba(255, 90, 90, 0.1);
      border: 1px solid rgba(255, 90, 90, 0.3);
      color: #ffb5b5;
    }
    
    .mensaje-cargando {
      opacity: 0.75;
    }
    
    /* =========================================
       POPUP PRO
    ========================================= */
    
    .modal-pro {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    
    .modal-pro.activo {
      display: flex;
    }
    
    .modal-pro-overlay {
      position: absolute;
      inset: 0;
      background: rgba(5, 7, 18, 0.78);
      backdrop-filter: blur(6px);
    }
    
    .modal-pro-contenido {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 470px;
      padding: 34px;
      text-align: center;
      border-radius: 20px;
      background: linear-gradient(
        180deg,
        #1c2140,
        #11152a
      );
      border: 1px solid rgba(124, 140, 255, 0.35);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
      animation: aparecerModal 0.22s ease;
    }
    
    .modal-pro-icono {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    
    .modal-pro-contenido h2 {
      margin: 0 0 14px;
      font-size: 1.7rem;
    }
    
    .modal-pro-contenido p {
      margin: 0;
      color: var(--text-muted);
      line-height: 1.65;
    }
    
    .modal-pro-cerrar {
      position: absolute;
      top: 13px;
      right: 15px;
      width: 36px;
      height: 36px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: transparent;
      color: var(--text-muted);
      font-size: 1.7rem;
      cursor: pointer;
    }
    
    .modal-pro-cerrar:hover {
      color: #fff;
      background: rgba(255,255,255,0.06);
    }
    
    .ventajas-pro {
      margin: 24px 0;
      padding: 0;
      list-style: none;
      text-align: left;
    }
    
    .ventajas-pro li {
      position: relative;
      margin: 11px 0;
      padding-left: 28px;
      color: var(--text-main);
    }
    
    .ventajas-pro li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent-soft);
      font-weight: 700;
    }
    
    .boton-pro {
      display: block;
      width: 100%;
      padding: 13px 20px;
      border-radius: 12px;
      background: linear-gradient(
        135deg,
        var(--accent),
        #5f6cff
      );
      color: #fff;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(124,140,255,0.35);
    }
    
    .seguir-gratis {
      margin-top: 13px;
      padding: 8px 14px;
      border: 0;
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
    }
    
    .seguir-gratis:hover {
      color: #fff;
    }
    
    body.modal-abierto {
      overflow: hidden;
    }
    
    .acciones-finales {
      display: none;
      justify-content: center;
      margin-top: 22px;
    }
    
    .acciones-finales .btn-secondary {
      font-size: 0.95rem;
    }
    
    .acciones-finales button:disabled {
      opacity: 0.65;
      cursor: wait;
    }
    
    /* =========================================
   PÁGINA SUEÑOSTV PRO
========================================= */

.pro-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.pro-hero {
  max-width: 820px;
  margin: 40px auto 90px;
  text-align: center;
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 9px 15px;
  border: 1px solid rgba(124, 140, 255, 0.35);
  border-radius: 999px;
  color: var(--accent-soft);
  background: rgba(124, 140, 255, 0.1);
  font-size: 0.92rem;
  font-weight: 700;
}

.pro-hero h1 {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
}

.pro-hero > p {
  max-width: 670px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.pro-precio {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pro-precio-cantidad {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.pro-precio-periodo {
  margin-bottom: 6px;
  color: var(--text-muted);
}

.pro-cancelacion {
  margin-top: 10px !important;
  font-size: 0.9rem !important;
}

.pro-cta-principal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 285px;
  margin-top: 28px;
  padding: 14px 24px;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--accent),
    #5f6cff
  );
  box-shadow: 0 12px 35px rgba(124, 140, 255, 0.35);
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.pro-cta-principal:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(124, 140, 255, 0.45);
}

.pro-volver {
  display: block;
  width: max-content;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.pro-volver:hover {
  color: var(--text-main);
}

.pro-ventajas-seccion,
.pro-comparativa,
.pro-preguntas {
  margin-top: 90px;
}

.pro-titulo-seccion {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
}

.pro-titulo-seccion span {
  color: var(--accent-soft);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pro-titulo-seccion h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pro-titulo-seccion p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.pro-ventajas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pro-ventaja-card {
  padding: 26px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(24, 28, 51, 0.96),
    rgba(18, 21, 42, 0.96)
  );
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.pro-ventaja-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(124, 140, 255, 0.25);
  border-radius: 14px;
  background: rgba(124, 140, 255, 0.1);
  font-size: 1.45rem;
}

.pro-ventaja-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.pro-ventaja-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.comparativa-tabla-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: rgba(18, 21, 42, 0.8);
}

.comparativa-tabla {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.comparativa-tabla th,
.comparativa-tabla td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}

.comparativa-tabla th:first-child,
.comparativa-tabla td:first-child {
  text-align: left;
}

.comparativa-tabla thead th {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.025);
}

.comparativa-tabla tbody tr:last-child td {
  border-bottom: 0;
}

.comparativa-tabla .columna-pro {
  color: #ffffff;
  background: rgba(124, 140, 255, 0.1);
  font-weight: 700;
}

.faq-lista {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 14px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(18, 21, 42, 0.85);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 20px 54px 20px 20px;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--accent-soft);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.pro-cta-final {
  margin-top: 100px;
}

.pro-cta-final-contenido {
  padding: 55px 25px;
  border: 1px solid rgba(124, 140, 255, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at top,
      rgba(124, 140, 255, 0.18),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      #181c33,
      #11152a
    );
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.pro-cta-final-icono {
  margin-bottom: 14px;
  font-size: 3rem;
}

.pro-cta-final h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pro-cta-final p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
}

.pro-footer {
  width: 100%;
  padding: 25px 20px 35px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 900px) {
  .pro-ventajas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .pro-page {
    padding-top: 15px;
  }

  .pro-hero {
    margin-top: 25px;
    margin-bottom: 65px;
  }

  .pro-hero h1 {
    font-size: 2.45rem;
  }

  .pro-precio-cantidad {
    font-size: 2.8rem;
  }

  .pro-cta-principal {
    width: 100%;
    min-width: 0;
  }

  .pro-ventajas-grid {
    grid-template-columns: 1fr;
  }

  .pro-ventaja-card {
    padding: 22px;
  }

  .pro-ventajas-seccion,
  .pro-comparativa,
  .pro-preguntas {
    margin-top: 65px;
  }

  .pro-cta-final {
    margin-top: 70px;
  }

  .pro-cta-final-contenido {
    padding: 42px 20px;
  }
}
    
    /* =========================================
   PÁGINA SUSCRIPCIÓN
========================================= */

.suscripcion-page {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 35px 20px 80px;
}

.suscripcion-encabezado {
  max-width: 760px;
  margin: 20px auto 45px;
  text-align: center;
}

.suscripcion-volver {
  display: block;
  width: max-content;
  margin: 0 auto 25px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.suscripcion-volver:hover {
  color: var(--text-main);
}

.suscripcion-encabezado h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.suscripcion-encabezado p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.suscripcion-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.9fr);
  gap: 25px;
  align-items: start;
}

.suscripcion-card-plan,
.suscripcion-card-paso,
.suscripcion-card-estado {
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    var(--bg-card),
    #12152a
  );
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.suscripcion-card-plan {
  padding: 30px;
}

.suscripcion-plan-cabecera {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}

.suscripcion-plan-etiqueta {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.suscripcion-plan-cabecera h2 {
  margin: 0;
  font-size: 1.8rem;
}

.suscripcion-plan-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(124, 140, 255, 0.28);
  border-radius: 18px;
  background: rgba(124, 140, 255, 0.1);
  font-size: 2rem;
}

.suscripcion-beneficios {
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.suscripcion-beneficios li {
  position: relative;
  margin: 14px 0;
  padding-left: 30px;
  color: var(--text-main);
  line-height: 1.5;
}

.suscripcion-beneficios li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-soft);
  font-weight: 800;
}

.suscripcion-precio-resumen {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}

.suscripcion-precio-principal {
  font-size: 2.5rem;
  font-weight: 800;
}

.suscripcion-precio-periodo {
  color: var(--text-muted);
}

.suscripcion-renovacion {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.suscripcion-cancelacion {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.suscripcion-card-paso,
.suscripcion-card-estado {
  padding: 32px;
}

.suscripcion-numero-paso {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid rgba(124, 140, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(124, 140, 255, 0.12);
  font-weight: 800;
}

.suscripcion-card-paso h2,
.suscripcion-card-estado h2 {
  margin: 0 0 12px;
  font-size: 1.65rem;
}

.suscripcion-card-paso > p,
.suscripcion-card-estado > p {
  margin: 0 0 25px;
  color: var(--text-muted);
  line-height: 1.65;
}

.suscripcion-boton-principal,
.suscripcion-boton-secundario {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.suscripcion-boton-principal {
  border: 0;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--accent),
    #5f6cff
  );
  box-shadow: 0 10px 30px rgba(124, 140, 255, 0.3);
}

.suscripcion-boton-principal:hover {
  transform: translateY(-1px);
}

.suscripcion-boton-secundario {
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  background: transparent;
}

.suscripcion-boton-secundario:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.suscripcion-separador {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.suscripcion-separador::before,
.suscripcion-separador::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}

.suscripcion-ya-cuenta {
  margin-bottom: 12px !important;
  text-align: center;
}

.suscripcion-cuenta-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: #0c0f23;
}

.suscripcion-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--accent),
    #5f6cff
  );
  font-weight: 800;
}

.suscripcion-cuenta-datos {
  min-width: 0;
}

.suscripcion-cuenta-datos strong,
.suscripcion-cuenta-datos span {
  display: block;
}

.suscripcion-cuenta-datos span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.suscripcion-total {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(12, 15, 35, 0.65);
}

.suscripcion-total-fila {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 13px;
  color: var(--text-muted);
}

.suscripcion-total-fila strong {
  color: var(--text-main);
}

.suscripcion-total-linea {
  height: 1px;
  margin: 16px 0;
  background: var(--border-soft);
}

.suscripcion-total-fila.total-final {
  margin-bottom: 0;
  color: var(--text-main);
  font-size: 1.05rem;
}

.suscripcion-pagar {
  font-family: inherit;
}

.suscripcion-seguridad {
  margin: 14px 0 0 !important;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
}

.suscripcion-enlace-secundario {
  display: block;
  width: max-content;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.suscripcion-enlace-secundario:hover {
  color: var(--text-main);
}

.suscripcion-card-estado {
  text-align: center;
}

.suscripcion-estado-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--accent),
    #5f6cff
  );
  font-size: 1.8rem;
  font-weight: 800;
}

.suscripcion-usuario-dato {
  margin-bottom: 24px;
  padding: 13px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: var(--accent-soft);
  background: #0c0f23;
  overflow-wrap: anywhere;
}

.suscripcion-confianza {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.suscripcion-confianza-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(18, 21, 42, 0.65);
}

.suscripcion-confianza-item > span {
  font-size: 1.35rem;
}

.suscripcion-confianza-item strong {
  display: block;
  margin-bottom: 5px;
}

.suscripcion-confianza-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .suscripcion-layout {
    grid-template-columns: 1fr;
  }

  .suscripcion-confianza {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .suscripcion-page {
    padding-top: 15px;
  }

  .suscripcion-card-plan,
  .suscripcion-card-paso,
  .suscripcion-card-estado {
    padding: 22px;
  }

  .suscripcion-precio-resumen {
    align-items: flex-start;
    flex-direction: column;
  }

  .suscripcion-precio-principal {
    font-size: 2.2rem;
  }
}
    
    
    
    @keyframes aparecerModal {
      from {
        opacity: 0;
        transform: translateY(15px) scale(0.97);
      }
    
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    
    @media (max-width: 600px) {
      .mensaje-conversacion {
        max-width: 95%;
      }
    
      .modal-pro-contenido {
        padding: 28px 22px;
      }
    }





    footer {
      margin-top: 30px;
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 768px) {
      .topbar {
        flex-direction: column;
        align-items: center;
      }

      nav {
        flex-wrap: wrap;
        justify-content: center;
      }

      .container {
        transform: translateY(-20px);
      }
    }