.apoio {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5rem 0rem;
}

.apoiadores {
   
    width: 70%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 3rem; 
    margin-top: 1rem;
}

.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo_apoio {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--cor-primary-branca);
    box-shadow: 8px 8px 10px 0px rgba(0, 0, 0, 0.40) inset, 10px 10px 6px 0px rgba(6, 5, 5, 0.44);
}

.legenda {
    width: 70%;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    margin-top: 1rem;
}

@media screen and (max-width: 990px) {
    .apoio {
        width: 100%;
        padding: 2rem 0rem;
    }

    .apoiadores {
        width: 100%;
        justify-content: space-evenly;
        margin-top: 2rem;
    }

    .logo_apoio {
        width: 90px;
        height: 90px;
    }

    .legenda {
        width: 100%;
        font-size: 10px;
    }
}