/* Alinear todos los logos a la izquierda */
.logos-header {
display: flex;
justify-content: flex-start; /* todos al inicio */
align-items: center;
flex-wrap: wrap;
gap: 20px;
width: 100%;
padding: 10px 20px;
box-sizing: border-box;
}
/* Ajuste de tamaños */
.logos-header img {
height: 60px;
width: auto;
transition: transform 0.2s ease;
}
.logos-header img:hover {
transform: scale(1.05);
}