/* INÍCIO SEÇÃO FORNECEDORES */
.forn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 5%;
}
/* FIM SEÇÃO FORNECEDORES */

/* INÍCIO RESPONSIVIDADE FORNECEDORES */
/* Tablet */
@media (max-width: 1024px) {
    .forn {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular */
@media (max-width: 768px) {
    .forn {
        grid-template-columns: 1fr;
    }
}
/* FIM RESPONSIVIDADE FORNECEDORES */

/* INÍCIO GRIDS */
.gird,
.gird1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 5%;
    border-radius: 20px;
}

.gird {
    border: solid 2px rgb(32, 47, 140);
}

.gird1 {
    background-image: linear-gradient(to bottom left, rgb(5, 105, 255) 30%, rgb(36, 38, 125) 70%, rgb(45, 17, 84) 100%);
}
/* FIM GRIDS */

/* INÍCIO SEÇÃO QUALIDADE */
.qualidade,
.qualidade1 {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 5%;
}

.qualidade h3,
.qualidade1 h3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #ffffff;
    background-color: transparent;
}

.qualidade p,
.qualidade1 p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16pt;
    text-align: center;
    color: #ffffff;
    line-height: 1.4;
    background-color: transparent;
}

.qualidade img,
.qualidade1 img {
    background-color: transparent;
    max-width: 100%;
}
/* FIM SEÇÃO QUALIDADE */