/* ====================================
   BOTÓN ÁREA CLIENTES - VIP DORADO
   ==================================== */
.boton-area {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #111;
  background: linear-gradient(135deg, #b9974a, #e0c46c, #f8e17a);
  border: 1px solid rgba(255,255,255,0.1); /* borde muy suave */
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.2); /* leve brillo dorado */
}

.boton-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #32ff7e, #3ae374);
  transition: all 0.45s ease;
  z-index: 0;
}

.boton-area:hover::before {
  left: 0;
}

.boton-area:hover {
  color: #111;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(50, 255, 126, 0.4); /* leve luz verde al hover */
}

.boton-area span {
  position: relative;
  z-index: 2;
}
