html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Sección contenedora */
.pricing-section {
  background: #0f172a; /* Fondo oscuro continuo */
  color: #f8fafc;
  border-radius: 24px;
  margin: 20px 0;
}

.section-title {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: #cbd5e1;
}

/* Tarjeta estándar (Glassmorphism) */
.pricing-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

/* Tarjeta Destacada (Pyme) */
.featured-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
  border: 2px solid #6366f1;
  position: relative;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.featured-card:hover {
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.25);
  border-color: #a855f7;
}

/* Elementos internos */
.plan-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}

.price-box {
  display: flex;
  align-items: baseline;
}

.currency {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-right: 4px;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}

.period {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-left: 4px;
}

.divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lista de características */
.features-list li {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #cbd5e1;
  line-height: 1.4;
}

.features-list i {
  margin-right: 8px;
  color: #10b981; /* Iconos de verificación verdes */
}

.text-indigo {
  color: #818cf8 !important;
}

/* Insignia Recomendado */
.badge-recommended {
  background: #6366f1;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.05em;
}

/* Botones específicos de planes */
.btn-outline-nexo {
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-nexo:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: #ffffff;
}

.btn-nexo-primary {
  background: #6366f1;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-nexo-primary:hover {
  background: #4f46e5;
  color: #ffffff;
}
