.div-patrocinadores{
    margin-top: 10%;
    margin-bottom: 10%;
}

.lista-patrocinadores {
    display: flex;
    flex-wrap: wrap;
}

.moldura-patrocinadores {
    flex-grow: 1;
    flex-basis: calc(33.33% - 10px);
    margin: 10px 5px 10px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.moldura-patrocinadores:hover {
    transform: scale(1.1);
}

.img-patrocinador {
    height: 100%;
    width: auto;
}

.gray-line {
    border-top: 2px solid #cccccc;
}

.titulo-tipo-patrocinador{
    margin-left: 5px;
    color: #2d7a88;
}

.custom-titulo-patrocinadores {
    font-size: 3em;
    color: #2f2f2f;
    text-align: initial;
}

.height-120 {
    height: 120px;
}

.height-110 {
    height: 110px;
}

.height-100 {
    height: 100px;
}

.height-90 {
    height: 90px;
}

.height-80 {
    height: 80px;
}

@media (min-width: 320px) and (max-width: 499px) {

    .moldura-patrocinadores-mobile {
        height: 120px !important;
        margin: 10px 5px 30px !important;
        flex-grow: 1;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    .moldura-patrocinadores-mobile:hover {
        transform: scale(1.1);
    }
    
    .lista-patrocinadores-mobile {
        display: flex;
        flex-direction: column !important;
    }

    .custom-titulo-patrocinadores {
        font-size: 2em;
        color: #2f2f2f;
        text-align: center;
        font-weight: bold;
        font-family: 'lato', sans-serif;
    }
    
}