/* ================================================
   PRECIOS.CSS — Sección de precios con tabs
   Proyecto: SmartDaga Landing
   Autor: e-DAGA Systems
================================================ */

/* ── Navegación de tabs ── */
.price-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .3rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.pt-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: .875rem;
  font-weight: 600;
  color: #6B7280;
  padding: .55rem 1.35rem;
  border-radius: 100px;
  transition: all .2s;
  white-space: nowrap;
}
.pt-tab:hover { color: var(--dark); }
.pt-tab.active { background: var(--navy); color: #fff; }

/* ── Paneles de tab ── */
.pt-panel { display: none; }
.pt-panel.active { display: block; }

/* ── Etiqueta "Desde" para planes de precio único ── */
.plan-desde { font-size: .75rem; font-weight: 600; color: #9CA3AF; margin-bottom: .15rem; letter-spacing: .02em; }
.plan.featured .plan-desde { color: rgba(255,255,255,.45); }
