/* ba-genetics — página de precios (/pricing).
   Paleta del sitio: navy #0B3D5B, turquesa #2EC4B6, texto #2D3748,
   muted #64748B, bg #F7F9FB, borde #E2E8F0. */

.pricing-page {
  max-width: 1080px;
  margin: 0 auto;
}

/* Cabecera */
.pricing-hero {
  text-align: center;
  padding: 16px 16px 8px;
}
.pricing-hero h1 {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #0B3D5B;
  margin: 0 0 12px;
}
.pricing-hero .lead {
  font-size: 17px;
  color: #475569;
  max-width: 620px;
  margin: 0 auto;
}
.pricing-hero .tax-note {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #0B7A6E;
  background: #E6F7F4;
  border: 1px solid #Bde9e3;
  border-radius: 999px;
  padding: 5px 14px;
}

/* Aviso pago no disponible */
.pricing-page .flash {
  max-width: 620px;
  margin: 20px auto 0;
  text-align: center;
}

/* Rejilla de tarjetas */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 36px 0 8px;
  align-items: stretch;
}

/* Tarjeta */
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 26px 22px 22px;
  box-shadow: 0 1px 2px rgba(11, 61, 91, 0.04);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 61, 91, 0.10);
  border-color: #CBE7E3;
}

/* Chip de nivel */
.price-level {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #0B3D5B;
  background: #E8F0FE;
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.price-name {
  font-size: 17px;
  font-weight: 700;
  color: #0B3D5B;
  margin: 0 0 10px;
  line-height: 1.3;
}

/* Precio */
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 2px 0 14px;
}
.price-amount .num {
  font-size: 40px;
  font-weight: 800;
  color: #0B3D5B;
  line-height: 1;
  letter-spacing: -1px;
}
.price-amount .period {
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
}

.price-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
  margin: 0 0 22px;
  flex: 1 1 auto;   /* empuja el botón al fondo: tarjetas alineadas */
}

/* CTA */
.price-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #2EC4B6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s ease;
}
.price-cta:hover { background: #0B3D5B; color: #fff; text-decoration: none; }
.price-card form { margin: 0; }

.price-soon {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #94A3B8;
  font-weight: 600;
  padding: 12px 0 2px;
}

/* Tarjeta destacada */
.price-card.featured {
  border: 2px solid #2EC4B6;
  box-shadow: 0 10px 30px rgba(46, 196, 182, 0.16);
}
.price-card.featured .price-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2EC4B6;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(46, 196, 182, 0.3);
}

/* Pie / notas */
.pricing-foot {
  margin: 28px auto 8px;
  max-width: 720px;
  text-align: center;
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}
.pricing-foot .pay-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #475569;
}
.pricing-foot .lock { color: #0B7A6E; }

@media (max-width: 520px) {
  .pricing-hero h1 { font-size: 30px; }
  .price-amount .num { font-size: 34px; }
}
