/* Estilos para os ícones sociais no rodapé */
.social-icons {
    display: flex;
    margin-top: 20px;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF4081 0%, #FFC107 100%);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icon img {
    width: 24px;
    height: 24px;
}
