/* ==========================================================================
    VARIABLES Y CONFIGURACIÓN GLOBAL
    ========================================================================== */

:root {
  /* Colores principales */
  --color-bg: #0b1220;           /* slate-950 */
  --color-panel: #0f172a;        /* slate-900 */
  --color-panel-2: #111827;      /* gray-900 */
  --color-text: #e5e7eb;         /* gray-200 */
  --color-muted: #9ca3af;        /* gray-400 */
  
  /* Colores de marca */
  --color-brand-primary: #7c3aed;  /* violet-600 */
  --color-brand-secondary: #a78bfa; /* violet-300 */
  --color-brand-gradient: linear-gradient(180deg, var(--color-brand-primary), #6d28d9);
  
  /* Colores de estado */
  --color-success: #22c55e;      /* green-500 */
  --color-danger: #ef4444;
  
  /* Efectos visuales */
  --color-ring: rgba(124, 58, 237, 0.45);
  --shadow-primary: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-brand: 0 12px 30px rgba(124, 58, 237, 0.33);
  
  /* Bordes */
  --border-radius: 16px;
  --border-radius-sm: 12px;
  --border-radius-lg: 24px;
  --border-color: rgba(148, 163, 184, 0.15);
  --border-color-light: rgba(148, 163, 184, 0.25);
  
  /* Espaciado */
  --spacing-gap: 22px;
  --spacing-section: 54px 0;
  
  /* Nuevas variables para móviles */
  --mobile-padding: 16px;
  --touch-min-size: 44px;
}

/* ==========================================================================
    RESET Y ESTILOS BASE
    ========================================================================== */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--color-text);
  background: radial-gradient(1200px 700px at 70% -10%, rgba(124, 58, 237, 0.18), transparent 70%), 
              linear-gradient(180deg, #0a0f1d 0%, var(--color-bg) 100%);
  line-height: 1.6;
  /* Mejorar renderizado en móviles */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
    COMPONENTES REUTILIZABLES - OPTIMIZADOS PARA MÓVILES
    ========================================================================== */

/* Contenedores */
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
  padding: 0 var(--mobile-padding);
}

/* Utilidades de texto */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  z-index: 1000;
}

/* Tarjetas */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 18px;
  box-shadow: var(--shadow-primary);
}

/* Botones - Optimizados para touch */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
  /* Tamaño mínimo para touch */
  min-height: var(--touch-min-size);
}

.btn-primary {
  background: var(--color-brand-gradient);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--border-color-light);
}

.btn-outline:hover, .btn-outline:focus {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-mini {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--color-brand-gradient);
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-primary);
  transition: transform 0.15s ease, filter 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Tamaño mínimo para touch */
  min-height: var(--touch-min-size);
}

.cta-mini:hover, .cta-mini:focus {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.cta-mini:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 3px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #bbf7d0;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-mini {
  font-size: 0.75rem;
  color: #a5b4fc;
  border: 1px solid rgba(167, 139, 250, 0.35);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

/* Elementos de lista */
.features {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: grid;
  gap: 10px;
}

.features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

dt.subtitle {
  font-size: 23px;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.2);
  display: grid;
  place-items: center;
  font-weight: 900;
  flex-shrink: 0; /* Evita que se reduzca en móviles */
}

.x {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(239, 68, 68, 0.2);
  display: grid;
  place-items: center;
  font-weight: 900;
  flex-shrink: 0; /* Evita que se reduzca en móviles */
}

/* Utilidades de diseño */
.grid {
  display: grid;
  gap: var(--spacing-gap);
}

.center {
  text-align: center;
}

/* Utilidades de espaciado */
.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 18px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 27px; }

.pill {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-color-light);
  background: rgba(148, 163, 184, 0.08);
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ==========================================================================
    COMPONENTES DE LAYOUT - OPTIMIZADOS PARA MÓVILES
    ========================================================================== */

/* Header y Navegación */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(120%) blur(8px);
  background: rgba(15, 23, 42, 0.75);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand .logo {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(135deg, var(--color-brand-primary), #5b21b6);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
  font-size: 20px;
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  padding: 44px 0 28px;
}

.hero-grid {
  display: grid;
  gap: var(--spacing-gap);
  grid-template-columns: 1fr;
}

.title {
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.1;
  margin: 14px 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

.subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-muted);
  max-width: 100%;
  line-height: 1.5;
}

.hero-card {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.18), rgba(124, 58, 237, 0.06));
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: var(--border-radius);
  padding: 12px;
  box-shadow: var(--shadow-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1; /* Mover la imagen arriba en móviles */
  margin-bottom: 20px;
}

/* Estilos para la imagen dentro de hero-card */
.hero-card picture,
.hero-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 6px;
}

.hero-cta .btn {
  flex: 1;
  min-width: 140px; /* Ancho mínimo para botones en móviles */
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 16px 0;
}

/* KPIs */
.kpis {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.kpi {
  background: rgba(2, 6, 23, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px;
}

.kpi strong {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

/* Secciones generales */
section {
  padding: 40px 0;
}

.section-title {
  font-size: clamp(22px, 2.8vw, 32px);
  margin: 0 0 10px;
  font-weight: 800;
  line-height: 1.2;
}

.section-sub {
  color: var(--color-muted);
  margin: 0 0 22px;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.5;
}

/* Beneficios */
.benefits {
  display: grid;
  gap: var(--spacing-gap);
  grid-template-columns: 1fr;
}

.recommends {
  border-radius: var(--border-radius-sm);
  color: var(--color-muted);
  font-size: 11px; 
  letter-spacing: 0.2px;
  opacity: 0.85;
  background-color: #111827;
  padding: 0.2rem 0.5rem;
  max-width: 100%;
  word-wrap: break-word;
}

/* Planes */
.plans {
  display: grid;
  gap: var(--spacing-gap);
  grid-template-columns: 1fr;
}

.plan {
  position: relative;
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color-light);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(15, 23, 42, 0.9));
  box-shadow: var(--shadow-primary);
}

.plan.popular {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 10px 0;
}

.tachado {
  text-decoration: line-through;
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* Tablas */
.table {
  overflow-x: auto;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  margin: 20px 0;
  -webkit-overflow-scrolling: touch; /* Mejor scroll en iOS */
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  min-width: 500px; /* Ancho mínimo para tablas */
}

th, td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Testimonios */
.testimonials {
  display: grid;
  gap: var(--spacing-gap);
  grid-template-columns: 1fr;
}

.quote {
  font-style: italic;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Garantía */
.guarantee {
  display: grid;
  gap: var(--spacing-gap);
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(34, 197, 94, 0.12));
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: var(--border-radius);
  padding: 20px;
}

/* FAQ */
.lp-faq {
  display: grid;
  gap: 12px;
}

details {
  background: rgba(2, 6, 23, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  overflow: hidden;
}

details ul,
details ol {
  margin-left: 0;
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
}

details li {
  margin-bottom: 6px;
}

details p {
  margin: 8px 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 8px 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Footer */
footer {
  padding: 28px 0 40px;
  color: var(--color-muted);
  text-align: center;
}

.footer-grid {
  display: grid;
  gap: var(--spacing-gap);
  grid-template-columns: 1fr;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 16px 0;
}

.whatsapp svg {
  width: 20px;
  height: 20px;
}

.note {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ==========================================================================
    MEDIA QUERIES MEJORADAS PARA MÓVILES
    ========================================================================== */

/* Móviles pequeños (hasta 360px) */
@media (max-width: 360px) {
  :root {
    --mobile-padding: 12px;
    --spacing-gap: 16px;
  }
  
  .container {
    padding: 0 var(--mobile-padding);
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust {
    justify-content: center;
  }
  
  .pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .kpi strong {
    font-size: 1.2rem;
  }
}

/* Móviles medianos (361px - 480px) */
@media (min-width: 361px) and (max-width: 480px) {
  .trust {
    justify-content: center;
  }
  
  .pill {
    font-size: 0.8rem;
  }
}

/* Móviles grandes y tablets pequeñas (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .benefits,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-card {
    order: 0; /* Restaurar orden natural */
    margin-bottom: 0;
  }
}

/* Tablets (769px - 900px) */
@media (min-width: 769px) and (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  
  .benefits,
  .plans,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guarantee {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .hero-card {
    max-height: 400px;
  }
}

/* Desktop (901px en adelante) */
@media (min-width: 901px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  
  .benefits,
  .plans,
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .guarantee,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .kpis {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-card {
    max-height: 500px;
    order: 0; /* Restaurar orden natural */
  }
}

/* Modo de alto contraste para mejorar accesibilidad */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--color-text);
  }
  
  .btn {
    border: 2px solid var(--color-text);
  }
}

/* Modo de reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .btn {
    transition: none;
  }
}

/* Orientación landscape en móviles */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 30px 0 20px;
  }
  
  .section-title {
    margin: 0 0 8px;
  }
  
  .section-sub {
    margin: 0 0 16px;
  }
}

/* Mejoras para Safari iOS */
@supports (-webkit-touch-callout: none) {
  .hero-card {
    max-height: 50vh; /* Usar viewport height en iOS */
  }
}

/* === SUSCRIPCIÓN ANUAL === */

/* ── Reset de sección ── */

#suscripcion-anual .container {
  max-width: 900px;
  margin: 0 auto;
}

/* ── Encabezado ── */
.lp-eyebrow {
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a9fa8;
  margin-bottom: 1rem;
}
.lp-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: #f0ede6;
  margin: 0 0 1rem;
  max-width: 620px;
}
.lp-sub {
  font-size: 15px;
  color: #8a9fa8;
  font-weight: 300;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── Layout de dos columnas ── */
.lp-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 680px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-card { position: static; }
}

/* ── Columna izquierda: lista de artículos ── */
.lp-article-header {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a7a82;
  margin-bottom: 1rem;
  border-bottom: 0.5px solid #1e2a2f;
  padding-bottom: 0.5rem;
}
.article-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 12px;
  padding: 0.9rem 0;
  border-bottom: 0.5px solid #1a2025;
  align-items: start;
}
.article-num {
  font-size: 11px;
  color: #3a5a62;
  font-weight: 500;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.article-kw {
  font-size: 12px;
  color: #4a9aaa;
  font-weight: 500;
  margin-bottom: 2px;
}
.article-title {
  font-size: 13.5px;
  color: #c8c3b8;
  line-height: 1.45;
  margin-bottom: 3px;
}
.article-intent {
  font-size: 11px;
  color: #4a5a60;
  font-weight: 300;
}
.article-intent strong { color: #5a8a92; font-weight: 500; }
.more-note {
  font-size: 12px;
  color: #3a5a62;
  padding: 0.75rem 0 0;
  font-style: italic;
}

/* ── Franja de resultados ── */
.results-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1a2530;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.result-cell {
  background: #0d1520;
  padding: 1.25rem 1rem;
  text-align: center;
}
.result-val {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #4a9aaa;
  display: block;
  margin-bottom: 4px;
}
.result-label { font-size: 13px; color: #4a6a72; line-height: 1.4; }

/* ── Columna derecha: tarjeta de precio ── */
.lp-card {
  background: #111820;
  border: 0.5px solid #1e2e35;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  position: sticky;
  top: 2rem;
}
.card-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #0e2a30;
  color: #4a9aaa;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 0.5px solid #1a3a42;
}
.card-plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: #f0ede6;
  margin-bottom: 0.25rem;
}
.card-plan-desc {
  font-size: 12px;
  color: #5a7a82;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-main-val {
  font-size: 30px;
  font-weight: 500;
  color: #f0ede6;
}
.price-period { font-size: 13px; color: #5a7a82; }
.price-alt {
  font-size: 12px;
  color: #4a9aaa;
  margin-top: 4px;
}
.price-alt span { text-decoration: line-through; color: #3a5a62; margin-right: 4px; }
.card-divider { border: none; border-top: 0.5px solid #1e2e35; margin: 1.25rem 0; }
.card-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: #8a9fa8;
  padding: 5px 0;
  line-height: 1.45;
}
.card-feature svg { flex-shrink: 0; margin-top: 2px; }
.card-cta {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  background: #4a9aaa;
  color: #0a1418;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s, transform 0.15s;
}
.card-cta:hover { background: #5aaabb; transform: translateY(-1px); }
.card-guarantee {
  margin-top: 1rem;
  font-size: 11px;
  color: #3a5a62;
  text-align: center;
  line-height: 1.5;
}

/* === BUNDLING === */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=DM+Sans:wght@300;400;500&display=swap');

.bundles-section {
  font-family: 'DM Sans', sans-serif;

  color: #e8e3d8;
  padding: 5rem 1.5rem;
}
.bundles-container { max-width: 860px; margin: 0 auto; }

.b-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a7a82;
  margin-bottom: 1rem;
}
.b-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: #f0ede6;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
.b-sub {
  font-size: 14px;
  color: #5a7a82;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 480px;
  line-height: 1.6;
}

.bundles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media(max-width: 620px) { .bundles-grid { grid-template-columns: 1fr; } }

/* ── Tarjeta base ── */
.bundle-card {
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.bundle-card.starter {
  background: #111820;
  border: 0.5px solid #1e2e35;
}
.bundle-card.premium {
  background: #0b1c22;
  border: 1.5px solid #2a4a55;
}
/* línea decorativa lateral */
.bundle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  border-radius: 16px 0 0 16px;
}
.bundle-card.starter::before { background: #2a5a62; }
.bundle-card.premium::before { background: #4a9aaa; }

.b-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.starter .b-badge { background: #0e2a30; color: #4a8a92; border: 0.5px solid #1a3a42; }
.premium .b-badge { background: #0e2a30; color: #4a9aaa; border: 0.5px solid #2a5a65; }

.b-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: #f0ede6;
  margin-bottom: 0.2rem;
}
.b-target {
  font-size: 12px;
  color: #4a6a72;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* ── Bloques del bundle ── */
.b-parts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.b-part {
  background: #0a1318;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}
.b-part-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a5a62;
  margin-bottom: 4px;
}
.b-part-name {
  font-size: 13.5px;
  color: #c8c3b8;
  font-weight: 500;
  margin-bottom: 3px;
}
.b-part-price {
  font-size: 12px;
  color: #4a7a82;
}
.b-part-price em { font-style: normal; color: #5a9aaa; }

.b-blog {
  font-size: 16px;
  color: #2a4a52;
  text-align: center;
  margin: -2px 0;
  line-height: 1;
}

/* ── Total ── */
.b-total {
  border-top: 0.5px solid #1a2a30;
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.b-total-label {
  font-size: 11px;
  color: #3a5a62;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.b-total-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.b-total-upfront {
  font-size: 22px;
  font-weight: 500;
  color: #f0ede6;
}
.b-total-recurring {
  font-size: 14px;
  color: #4a7a82;
}
.b-total-recurring em { font-style: normal; color: #4a9aaa; }
.b-saving {
  font-size: 11px;
  color: #3a8a72;
  background: #0a2a22;
  border: 0.5px solid #1a4a38;
  padding: 3px 9px;
  border-radius: 20px;
  margin-top: 6px;
  display: inline-block;
}

/* ── Incluye ── */
.b-includes-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a5a62;
  margin-bottom: 8px;
}
.b-feature {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: #6a8a92;
  padding: 3px 0;
  line-height: 1.4;
}
.b-feature svg { flex-shrink: 0; margin-top: 2px; }

/* ── CTA ── */
.b-cta {
  display: block;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  padding-top: 1.5rem;
  transition: opacity 0.2s;
}
.starter .b-cta { color: #4a9aaa; border-top: 0.5px solid #1a2e35; }
.premium .b-cta {
  background: #4a9aaa;
  color: #0a1418;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-top: 1.5rem;
}
.b-cta:hover { opacity: 0.82; }

/* ── Nota inferior ── */
.b-footnote {
  margin-top: 1.25rem;
  font-size: 11px;
  color: #2a4a52;
  text-align: center;
  line-height: 1.6;
}