section {
    margin: 3rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.partners-grid img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.partners-grid img:hover {
    transform: scale(1.05);
}

.sobre {
    p {
        font-size: 16px;
        line-height: 26px;
        color: #585757;
    }
}

.mvv {
    background: linear-gradient(90deg, rgba(225, 240, 250, 1) 41%, rgba(255, 255, 255, 1) 100%);

    .outer-card {
        box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.08);
        border-radius: 5px;
    }

    .text-container {
        background-color: #FFFFFF;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .grid-valores {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        /* padding: 2rem; */
        align-items: stretch;
    }

    .grid-valores>* {
        flex: 1 1 320px;
        /* largura mínima de 250px, cresce conforme espaço */
        display: flex;
        flex-direction: column;
    }

    .fundo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        background-color: #004069
    }

    i {
        color: #FFFFFF;
        font-size: 24px;
    }

    .fundo.fundo-1 {
        background-color: #004069;
    }

    .fundo.fundo-2 {
        background-color: #3189BF;
    }

    .fundo.fundo-3 {
        background-color: #F58220;
        flex-basis: 100%;
    }

    h3 {
        color: #FFFFFF;
        font-size: 36px;
        font-weight: 700;
    }
}

.certificacoes {
    .card {
        max-height: 220px;
        height: 100%;
        background-color: rgba(207, 228, 242, 0.5);
        border-radius: 30px;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    }

    .card img {
        max-width: 200px;
        height: auto;
        max-height: 100px;
        object-fit: contain;
    }
}

.parceiros {
    background: linear-gradient(-90deg, rgba(225, 240, 250, 1) 41%, rgba(255, 255, 255, 1) 100%);
}