<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos comunes para la sección de patrocinadores */
.patrocinadores {
    padding-top: 50px;
    padding-bottom: 50px;
}

.patrocinadores__contenedor {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-top: 40px;
}

/* Estilos para ambos tipos de patrocinadores */
.patrocinador {
    text-align: center;
    text-decoration: none;
    color: inherit; /* Mantener el color del texto predeterminado */
}

.patrocinador__imagen {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
}

.patrocinador__img {
    width: 100%;
    height: auto;
}

.patrocinador__texto {
    font-size: 0.75rem;
    font-family: ToyotaType-Regular;
}

@media(max-width:768px) {
    .patrocinadores__contenedor {
        justify-content: flex-start;
        gap: 30px;
    }

    .patrocinador__imagen {
        max-width: 92px;
    }
}
</pre></body></html>