/* ======================== BOTONES REDES SOCIALES ======================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 1000;

    /* Animación de entrada */
    opacity: 0;
    animation: floatIn 1s ease-out forwards;
    animation-delay: 2.5s; /* Espera al preloader */
}

.float-btn {
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #F4F2A5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid rgba(244, 242, 165, 0.5);
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Brillo permanente */
    animation: golden-glow 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Colores específicos por red */
.whatsapp {
    color: #25D366;
}
.facebook {
    color: #4267B2;
}
.instagram {
    color: #C13584;
}

/* ===== Animación de entrada flotante ===== */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== Brillo dorado constante ===== */
@keyframes golden-glow {
  0% {
    box-shadow: 0 0 10px rgba(244, 242, 165, 0.5),
                0 0 20px rgba(244, 242, 165, 0.4),
                0 0 30px rgba(244, 242, 165, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 242, 165, 0.7),
                0 0 40px rgba(244, 242, 165, 0.6),
                0 0 60px rgba(244, 242, 165, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(244, 242, 165, 0.5),
                0 0 20px rgba(244, 242, 165, 0.4),
                0 0 30px rgba(244, 242, 165, 0.3);
  }
}

/* ===== Ajustes landscape móvil ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    left: 76%;
    transform: none;
    flex-direction: row;
    gap: 10px;
  }
}

