/**
 * Estilos para los enlaces de redes sociales
 */

.social-links-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0;
}

.sites360-social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sites360-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.sites360-social-links a:hover {
    background-color: #f43f5e; /* Color dorado */
    color: #fff;
    transform: translateY(-2px);
}

.sites360-social-links svg {
    width: 16px;
    height: 16px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .social-links-container {
        justify-content: center;
        padding: 5px 0;
    }
    
    .sites360-social-links a {
        width: 28px;
        height: 28px;
    }
    
    .sites360-social-links svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .sites360-social-links {
        gap: 10px;
    }
    
    .sites360-social-links a {
        width: 24px;
        height: 24px;
    }
    
    .sites360-social-links svg {
        width: 12px;
        height: 12px;
    }
}
