/* =================================== */
/* PLANES Y PRECIOS - ESTILOS ESTANDARIZADOS
/* =================================== */

/* Encabezado de plan */
.plan-card .card-header {
  padding: 1rem;
  border-bottom: none;
}

/* Botones de plan */
.btn-plan {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
}

.btn-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Badge "Más elegido" */
.badge-eterno {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: var(--color-gold) !important;
  color: var(--color-dark);
  border: 1px solid var(--color-gold-dark);
}

/* Tabla comparativa */
.table th {
  font-weight: 600;
  color: var(--color-olive-dark);
}

.table td,
.table th {
  vertical-align: middle;
  text-align: center;
}

.table-hover tbody tr:hover {
  background-color: rgba(107, 142, 35, 0.05);
}

/* Garantía */
.guarantee-card {
  border: 1px solid rgba(107, 142, 35, 0.2);
  border-radius: 12px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--color-gold);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
  width: 50px;
  border: 2px solid white;
  border-radius: 50%;
}
.border-olive {
  border: 2px solid var(--color-olive) !important;
}

.border-gold {
  border: 2px solid var(--color-gold) !important;
}

.border-premium {
  border: 2px solid var(--color-gold) !important;
}
