@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
.onest-font{
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

/* RESET */
button, a {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

/* BASE */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* 🔵 PRIMARY (PRO LEVEL) */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 8px 25px rgba(59,130,246,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59,130,246,0.6);
}

/* efecto glow */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: 0.4s;
}

.btn-primary:hover::after {
  opacity: 1;
}

/* ⚪ SECONDARY */
.btn-secondary {
  border: 1px solid #334155;
  color: #cbd5f5;
  background: transparent;
}

.btn-secondary:hover {
  background: #1e293b;
  border-color: #475569;
  transform: translateY(-2px);
}

/* 🔷 OUTLINE */
.btn-outline {
  border: 1px solid #3b82f6;
  color: #3b82f6;
  background: transparent;
}

.btn-outline:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

/* 💳 BOTONES DE PLANES */
.price-card button {
  width: 100%;
  margin-top: 20px;
  padding: 13px;
  border-radius: 8px;
  font-weight: 500;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 6px 20px rgba(59,130,246,0.3);
}

.price-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59,130,246,0.6);
}

/* 🌟 PLAN DESTACADO */
.featured button {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  box-shadow: 0 8px 25px rgba(99,102,241,0.4);
}

/* CTA GRANDE */
.cta .btn-primary {
  font-size: 1.1rem;
  padding: 16px 34px;
  border-radius: 12px;
}

/* CLICK EFFECT */
button:active,
a:active {
  transform: scale(0.96);
}

/* FOCUS (accesibilidad PRO) */
button:focus-visible,
a:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}