.ezxmltext h2.dark-title {
  color: #000;
  color: var(--text-color);
}

.ezxmltext h2.dark-title b {
  color: var(--text-color-accent);
}

main.MainContent>article.ViewFull.ClassSection:first-child {
  margin-bottom: 40px;
}

.carrito {
  display: none;
}

/* Pestañas de productos */
.producto-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.producto-tab {
  padding: 1rem 2rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
  font-family: bebas-neue-pro, sans-serif;
  font-size: 24px;
}

.producto-tab:hover {
  color: #0066cc;
  color: #0062a9;
}

.producto-tab.active {
  color: #0066cc;
  color: #0062a9;
  border-bottom-color: #0066cc;
  border-bottom-color: #0062a9;
}

/* Toggle de frecuencia */
.frecuencia-selector {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.frecuencia-btn {
  padding: 0.75rem 2rem;
  border: 2px solid #0066cc;
  border: 1px solid #004476;
  background: white;
  color: #0066cc;
  color: #0062a9;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 700;
}

.frecuencia-btn.active {
  background: #0066cc;
  background: #004476;
  color: white;
}

.frecuencia-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.6rem;
  background: #ffa500;
  color: white;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Grid de planes */
.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.plan-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  border-color: #0066cc;
  border-color: #0062a9;
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
  transform: translateY(-5px);
}

.plan-card.destacado {
  border-color: #0066cc;
  border-color: #0062a9;
  border-width: 2px;
}

.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ffa500;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

.plan-nivel {
  color: #333;
  margin-bottom: 0.5rem;
  font-family: bebas-neue-pro, sans-serif;
  font-size: 32px;
  font-size: 36px;
  font-weight: 700;
}

.plan-descripcion {
  color: #666;
  margin-bottom: 1.5rem;
  /*min-height: 60px;*/
  min-height: 10px;
  font-size: 15.12px;
}

.plan-precios {
  margin-bottom: 1.5rem;
  text-align: center;
}

.precio-original {
  font-family: bebas-neue-pro, sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-decoration: line-through;
  color: #848283;
  display: block;
  margin-bottom: 0.3rem;
}

.precio-actual {
  color: #0062a9;
  font-family: bebas-neue-pro, sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.precio-periodo {
  color: #0062a9;
  margin-left: 0.3rem;
  font-size: 26px;
}

.precio-total {
  margin-top: 0.8rem;
  color: #666;
  font-family: bebas-neue-pro, sans-serif;
  font-size: 38px;
  font-weight: 700;
}

.precio-total span {
  font-size: 27px;
}

.descuento-badge {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 12.6px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 0.5rem;
}

.plan-caracteristicas {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  font-size: 16px;
}

.plan-caracteristicas li {
  padding: 0.5rem 0;
  color: #555;
  display: flex;
  align-items: flex-start;
}

.plan-caracteristicas li:before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.plan-caracteristicas li.sin-check:before {
  content: "";
}

.plan-btn {
  font-family: bebas-neue-pro, sans-serif;
  width: 100%;
  padding: 1rem;
  background: #0062a9;
  color: white;
  border: none;
  border-radius: 8.1px;
  font-size: 27px;
  font-weight: 400;
  cursor: pointer;
  text-transform: uppercase;
}

.plan-btn:hover {
  background: #004476;
}

.plan-tipo-pago {
  text-align: center;
  margin-top: 1rem;
  font-size: 15.12px;
  color: #666;
  font-style: italic;
}

/* Ocultar contenido inactivo */
.producto-content {
  display: none;
}

.producto-content.active {
  display: block;
}
