/* Contenedor principal para alinear ambos botones */
.floating-buttons-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999; /* Asegura que permanezca por encima del contenido */
}

/* Estilo para el botón SER LEÓN */
.btn-ser-leon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #F1BF00; /* Fondo amarillo */
  color: #0B318F;            /* Texto azul */
  border: 1.5px solid #0B318F; /* Borde azul */
  border-radius: 12px;
  padding: 10px 22px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ser-leon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  background-color: #e5b400;
}