/* --- COLORES PERSONALIZADOS --- */
.gold { color: #D4AF37; }
.bg-gold { background-color: #D4AF37; }
.hover\:bg-gold:hover { background-color: #140f00; }

/* --- EFECTO HOVER --- */
.hover-effect:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

/* --- BOTÓN FLOTANTE DE WHATSAPP --- */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  z-index: 50;
}
.floating-button:hover {
  transform: scale(1.1);
}

/* --- ESTILOS DEL MENÚ --- */
#menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Botón del menú en móviles */
#menu-toggle {
  display: none; /* Ocultar en escritorio */
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
}

/* Estilos del menú móvil */
#mobile-menu {
  display: none; /* Oculto por defecto */
  position: absolute;
  top: 50px;
  right: 0;
  background: black;
  width: 100%;
  text-align: center;
  padding: 15px 0;
}

/* Mostrar menú cuando está activo */
#mobile-menu.active {
  display: block;
}

/* Enlaces del menú */
#mobile-menu a {
  color: white;
  font-size: 18px;
  display: block;
  padding: 10px;
  text-decoration: none;
}



/* --- TEXTO SOLO EN EL VIDEO DE COLOR BLANCO --- */
.video-container .text-overlay,
#video-section .text-overlay,
.image-background .text-overlay {
  color: white !important;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Ajustar tamaño del texto en móviles */
@media (max-width: 768px) {
  .video-container .text-overlay,
  #video-section .text-overlay,
  .image-background .text-overlay {
    font-size: 14px;
  }
}

/* --- ESTILOS DEL FORMULARIO --- */
input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  color: black !important;
}

input::placeholder, select::placeholder, textarea::placeholder {
  color: black !important;
}

/* --- AJUSTES PARA MÓVILES --- */
@media (max-width: 768px) {
  #menu {
    display: none; /* Ocultar menú de escritorio */
  }

  #menu-toggle {
    display: block; /* Mostrar el botón de menú en móviles */
  }
}
.floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}
