﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #baaed1; /* fondo oscuro como el ejemplo */
    color: #fff;
}

.colaboradores-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 10%;
    gap: 40px;
    flex-wrap: wrap;
}

.colaboradores-texto {
    flex: 1 1 400px;
}

    .colaboradores-texto h2 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .colaboradores-texto p {
        font-size: 1rem;
        line-height: 1.6;
    }

.colaboradores-logos {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 30px;
    align-items: center;
}

    .colaboradores-logos img {
        max-width: 100%;
        height: auto;
        filter: brightness(0) invert(1); /* hace logos blancos sobre fondo oscuro */
        transition: transform 0.3s ease;
    }

        .colaboradores-logos img:hover {
            transform: scale(1.1);
        }

@media (max-width: 768px) {
    .colaboradores-section {
        flex-direction: column;
        text-align: center;
    }

    .colaboradores-texto {
        margin-bottom: 40px;
    }
}