/* Estilos dinâmicos para ícones de redes sociais */
.social-icon-dynamic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 5px;
    position: relative;
    overflow: hidden;
}

.social-icon-dynamic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.social-icon-dynamic i {
    font-size: 24px;
    color: white;
    z-index: 2;
    position: relative;
}

/* WhatsApp específico */
.social-icon-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-icon-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.social-icon-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-icon-whatsapp:hover::before {
    left: 100%;
}

/* Instagram específico */
.social-icon-instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.social-icon-instagram:hover {
    background: linear-gradient(135deg, #833AB4, #C13584, #E4405F);
}

.social-icon-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-icon-instagram:hover::before {
    left: 100%;
}

/* Container para os ícones */
.social-icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

/* Responsividade */
@media (max-width: 768px) {
    .social-icon-dynamic {
        width: 45px;
        height: 45px;
    }
    
    .social-icon-dynamic i {
        font-size: 20px;
    }
}

/* Animação de pulso para chamar atenção */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.social-icon-whatsapp:hover {
    animation: pulse 2s infinite;
}

@keyframes pulse-instagram {
    0% {
        box-shadow: 0 0 0 0 rgba(228, 64, 95, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(228, 64, 95, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(228, 64, 95, 0);
    }
}

.social-icon-instagram:hover {
    animation: pulse-instagram 2s infinite;
}
