/* =========================
   PALETA GLOBAL "TECH"
   ========================= */

:root {
  /* Fondo general */
  --bg: #edf2ff;                /* fondo claro azulado */
  --bg-alt: #ffffff;            /* superfices claras */

  --fs-xs: 0.82rem;
  --fs-sm: 0.92rem;
  --fs-base: 1rem;
  --fs-md: 1.15rem;
  --fs-lg: 1.35rem;
  --fs-xl: 1.9rem;
  --fs-xxl: 2.6rem;

  /* Superficies (cards) */
  --card: #ffffff;
  --card-soft: #f3f4ff;         /* para fondos suaves */
  --card-dark: #020617;         /* uso puntual (hero card) */

  /* Colores de marca */
  --primary: #2563eb;           /* azul principal */
  --primary-soft: rgba(37, 99, 235, 0.12);
  --accent: #22d3ee;            /* cian velocidad */
  --accent-soft: rgba(34, 211, 238, 0.16);
  --pro: #8b5cf6;               /* violeta PRO */

  /* Tipografía */
  --text: #020617;              /* texto principal */
  --muted: #64748b;             /* texto secundario */

  /* Otros */
  --danger: #ef4444;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --radius: 18px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --max-width: 1120px;
}

/* =========================
   RESET BÁSICO
   ========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #e2ecff 0%, #edf2ff 45%, #e5e7f9 100%);
  color: var(--text);
  font-size: var(--fs-base);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =========================
   HEADER / NAVBAR
   ========================= */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.9)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #e5edff;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #38bdf8, #2563eb 48%, #020617 100%);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.75);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  border: 2px solid rgba(248, 250, 252, 0.7);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-25deg);
}

.logo span {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: #cbd5f5;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:hover {
  color: #f9fafb;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  font-size: 0.85rem;
  color: #cbd5f5;
}

/* Botones genéricos */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 1.2rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    background 0.12s ease-out,
    border-color 0.12s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #f9fafb;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5edff;
  background: rgba(15, 23, 42, 0.3);
}

.btn-outline:hover {
  border-color: rgba(226, 232, 240, 0.9);
  background: rgba(15, 23, 42, 0.8);
}

/* Toggle mobile */

.nav-toggle {
  display: none;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  color: #e5edff;
  background: rgba(15, 23, 42, 0.85);
}

/* =========================
   HERO
   ========================= */

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* --- Eyebrow destacado arriba del título --- */

/* === Eyebrow (2 pills separadas, minimalistas y tech) === */

/* Eyebrow: mejor contraste en ambas pills */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

/* Pill principal */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Pill 1: destaque fuerte */
.eyebrow-pill.primary {
  background: #1e293b;     /* navy oscuro */
  color: #f1f5f9;          /* casi blanco */
  border: none;
}

/* Pill 2: destaque pero más “fibra óptica tech” */
.eyebrow-pill.secondary {
  background: rgba(56, 189, 248, 0.25);   /* celeste brillante */
  color: #0369a1;                         /* azul fuerte */
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.35);  /* glow suave */
}



.hero h1 {
  font-size: clamp(2.4rem, 3vw + 2rem, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
  font-size: 0.85rem;
}

.chip {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--muted);
  background: rgba(248, 250, 252, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.hero-note {
  font-size: 1.05rem;       /* 🔥 más grande */
  line-height: 1.45;        /* más legible */
  color: #334155;           /* un gris más visible */
  font-weight: 500;         /* más cuerpo */
}

.hero-note strong {
  color: #0f172a;           /* más contraste */
  font-weight: 700;
  font-size: 1.12rem;       /* aún más grande */
}


.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;                 /* más chico que antes */
  font-size: 0.9rem;           /* un toque más pequeño */
  color: #475569;
  margin-top: 1.2rem;          /* se mantiene el margen superior */
}

.hero-metrics span {
  border-left: 2px solid #94a3b8;   /* más delgado */
  padding-left: 0.7rem;             /* menos espacio */
  font-weight: 400;                 /* más liviano */
}


/* Hero card (300 Mbps) */

/* === HERO CARD – Versión minimalista una columna === */

.hero-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 1.9rem 2.2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 480px;
}

/* Etiqueta */
.hero-card-label {
  align-self: flex-start;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #166534;
}

/* Título */
.hero-card-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Oferta */
.hero-card-offer {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 0.2rem;
}

/* Beneficios */
.hero-card-list {
  padding-left: 1.3rem;
  display: grid;
  gap: 0.45rem;
  font-size: 1rem;
  color: #1e293b;
}

.hero-card-list li::marker {
  font-size: 0.9rem;
}

/* 🔥 NUEVO BLOQUE DE PRECIO ABAJO */
.hero-card-price-block {
  margin-top: 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-label {
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
}

.price-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
}

.price-suffix {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Botón */
.hero-card-btn {
  margin-top: 0.7rem;
  align-self: flex-start;
  padding-inline: 1.8rem;
  font-size: 1rem;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-card {
    max-width: 100%;
    padding: 1.6rem;
  }

  .hero-card-btn {
    width: 100%;
    text-align: center;
  }
}


/* =========================
   SECCIONES GENERALES
   ========================= */

section {
  padding: 2.6rem 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

/* =========================
   PLANES
   ========================= */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.plan-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

/* Franja superior del plan */

.plan-top {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 1.1rem 1.2rem 0.9rem;
  color: #f9fafb;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.plan-top-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.plan-top-sub {
  font-size: 0.8rem;
  opacity: 0.9;
}

.plan-top-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(248, 250, 252, 0.7);
  white-space: nowrap;
}

/* Franja media */

.plan-middle {
  background: var(--card-soft);
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-middle span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.plan-middle span::before {
  content: "⚡";
  font-size: 0.9rem;
}

/* Cuerpo */

.plan-body {
  padding: 0.9rem 1.2rem 0.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.plan-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.plan-tag {
  flex: 1 1 120px;
  text-align: center;
  font-size: 0.75rem;
  padding: 0.45rem 0.3rem;
  border-radius: 12px;
  background: #e5edff;
  color: #1e293b;
}

.plan-tag-300 {
  flex: 1 1 120px;
  text-align: center;
  font-size: 0.75rem;
  padding: 0.45rem 0.3rem;
  border-radius: 12px;
  background: #fff4e5;
  color: #1e293b;
}

.plan-tag-500 {
  flex: 1 1 120px;
  text-align: center;
  font-size: 0.75rem;
  padding: 0.45rem 0.3rem;
  border-radius: 12px;
  background: #eee5ff;
  color: #1e293b;
}

.plan-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.3rem;
}

.plan-note span {
  font-weight: 600;
  color: var(--primary);
}

/* División y parte inferior */

.plan-divider {
  width: 80%;
  height: 1px;
  background: rgba(148, 163, 184, 0.5);
  margin: 0.8rem auto 0.6rem;
}

.plan-bottom {
  padding: 0 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.plan-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--text);
}

.plan-price {
  font-size: 1.4rem;
  font-weight: 700;
}

.plan-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.plan-pay-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.plan-button {
  width: 100%;
  border-radius: 0 0 24px 24px;
  border: none;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #f9fafb;
  text-align: center;
  transition:
    background 0.15s ease-out,
    transform 0.1s ease-out,
    box-shadow 0.1s ease-out;
}

.plan-button:hover {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

/* =========================
   SECCIÓN VENTAJAS + BANNER
   ========================= */

.advantages-section {
  padding: 2.8rem 0 2.5rem;
}

.advantages-title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 1.6rem;
  color: var(--text);
}

.advantages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 1.4rem;
}

/* Banner grande */

.banner-full {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.banner-img {
  width: 100%;
  height: 18.5rem;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.banner-text {
  position: absolute;
  top: 64px;
  right: 52px;
  max-width: 40%;
  color: #f9fafb;
  text-align: left;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.banner-text h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.banner-text h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0.3rem 0 0.85rem;
}

.banner-btn {
  display: inline-block;
  background: rgba(15, 23, 42, 0.85);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  color: #f9fafb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  backdrop-filter: blur(6px);
}

/* Grid de ventajas */

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.adv-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
}

.adv-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  object-position: center 20%;
}

.adv-card-body {
  padding: 0.95rem 0.9rem 1rem;
  background: var(--card);
}

.adv-card-text {
  font-size: 0.95rem;
  text-align: center;
  color: var(--text);
}

/* =========================
   COBERTURA
   ========================= */

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.coverage-card,
.coverage-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  font-size: 0.86rem;
  color: var(--muted);
}

.coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.5);
  margin-bottom: 0.7rem;
}

.coverage-list {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.3rem;
  margin-top: 0.6rem;
}

/* Form inputs */

.input-group {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

label {
  font-size: 0.8rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.45rem 0.75rem;
  background: #f9fafb;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
}

textarea {
  border-radius: 12px;
  resize: vertical;
  min-height: 70px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

/* =========================
   BLOG
   ========================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 0.9rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  font-size: 0.83rem;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.blog-title {
  font-size: 0.97rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

/* =========================
   CONTACTO
   ========================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.6rem;
}

.contact-row span {
  font-size: 0.8rem;
}

.contact-row strong {
  color: var(--text);
}

/* =========================
   FOOTER
   ========================= */

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1rem 0 1.4rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .hero-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .plans-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-card {
    order: -1;
  }

  .banner-text {
    top: 40px;
    right: 30px;
    max-width: 55%;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 58px 0 auto 0;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.7rem 1.25rem 0.8rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .plans-grid,
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  section {
    padding: 2rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .banner-text {
    top: 32px;
    right: 20px;
    max-width: 70%;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .advantages-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================
   ORGANIZACIÓN NUEVA
========================== */

.plans-common {
  margin-bottom: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plans-ultra {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Responsive */
@media (max-width: 900px) {
  .plans-common,
  .plans-ultra {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================================================
   PLANES ULTRA (Mantienen fondo blanco — solo cambia el header)
============================================================ */

.plan-ultra-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.2s ease;
}

/* Hover suave premium */
.plan-ultra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

/* =======================
   HEADER ULTRA (nuevo)
======================= */

.plan-ultra-card .plan-top {
  padding: 1.2rem 1.4rem;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* 300 Megas → degradado celeste */
.plan-ultra-card.ultra-300 .plan-top {
  background: linear-gradient(135deg, #ff6600, #FF8661);
}

/* 500 Megas → degradado violeta premium */
.plan-ultra-card.ultra-500 .plan-top {
  background: linear-gradient(135deg, #7c3aed, #6366f1);
}

/* Titulo del header */
.plan-ultra-card .plan-top h3,
.plan-ultra-card .plan-top .plan-top-title {
  color: #ffffff !important;
  font-size: 1.55rem;
  font-weight: 800;
}

/* subtitulo */
.plan-ultra-card .plan-top-sub {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* badge Ultra */
.plan-ultra-card .plan-top-badge {
  background: rgba(129, 38, 38, 0.2);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.3rem 0.8rem;
  color: #fff;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* =======================
    Botón Premium
======================= */

.plan-ultra-card .plan-button-300 {
  background: #FF8661;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem;
  border: none;
  border-radius: 12px;
  transition: 0.2s ease;
}

.plan-ultra-card .plan-button-500 {
  background: #6366f1;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem;
  border: none;
  border-radius: 12px;
  transition: 0.2s ease;
}

.plan-ultra-card .plan-button-300:hover {
  background: #ff6600;
}

.plan-ultra-card .plan-button-500:hover {
  background: #7c3aed;
}


