.representadas {
    margin-top: 100px;
    padding: 60px 0;
    background-color: var(--cinza-fundo);
}
.representadas .row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: auto;
}
.representadas .row h2{
    margin-bottom: 60px;
    padding: 0;
    font-size: 2.5em;
    color: var(--cinza-escuro);
    position: relative;
}
.representadas .row h2::before{
    content: '';
    position: absolute;
    bottom: -30px;
    left: 33%;
    width: 33%;
    height: 3px;
    border-radius: 30px;
    background-color: var(--amarelo);
}
.representadas .row .logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 10%;
}
.representadas .row .logos .col-md-2{
    margin-top: 30px;
}
.representadas .row .logos .col-md-2 img{
    width: 100%;
}

@media (max-width: 720px) {
    .representadas {
        margin-top: 100px;
        padding: 60px 0;
    }
    .representadas .row h2{
        font-size: 2em;
    }
    .representadas .row h2::before{
        content: '';
        position: absolute;
        bottom: -30px;
        left: 33%;
        width: 33%;
        height: 3px;
        border-radius: 30px;
        background-color: var(--amarelo);
    }
}