/* Estilos para los iconos flotantes de redes sociales */
.social-float-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    color: #fff;
    opacity: 0.9;
}

.whatsapp-icon { background-color: #25d366; }
.facebook-icon { background-color: #1877f2; }
.instagram-icon { background-color: #e4405f; }
.linkedin-icon { background-color: #0a66c2; }

/* Ajuste para móviles */
@media (max-width: 768px) {
    .social-float-container {
        right: 20px;
        bottom: 20px;
    }
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

.tiktok-icon { background-color: #000000; }
.youtube-icon { background-color: #FF0000; }
