

.cards_beneficios{
    min-height: 380px;
    width: 350px;
    background-color: white;
    border-radius: 10px;
}

header{
    z-index: 10;
}

.div_descricao{
    padding: 1rem;
    padding-top: 0.5rem;
}

.beneficios_section{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    padding: 1rem;
}

.titulo_beneficio{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.descricao_beneficio{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.foto_beneficios{
    width: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    height: 210px;
    object-fit: cover;
}

.confianca_section{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    gap: 1rem;
    min-height: 300px;
    padding: 1rem;
}

.produtos_section{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    gap: 1rem;
    padding: 1rem;
    min-height: 300px;
    border-top: 2px solid rgba(128, 128, 128, 0.2);
}

.titulo_confianca{
    font-size: 40px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.descricao_confianca{
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.subtitulo_produtos{
    font-size: 22px;
    font-weight: 600;
    color: #5baad6;
    margin: 0;
    text-align: center;
}

.btn_confianca{
    font-weight: 600;
    color: white;
    font-family: 'Poppins', sans-serif;
    background-color: #161d25;
    font-size: 18px;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.cards_produtos{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    padding: 0.8rem 1rem;
}

.icone_produto{
    color: rgba(0, 0, 0, 0.5);
}

.texto_produtos{
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    font-weight: 500;
}

.hero_section{
    position: relative;
}

.img_maquineta{
    width: 20%;
    position: absolute;
    left: 0;
    min-width: 150px;
    top: 50%;
    transform: translateY(-50%);
}

.div_produtos{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

@media (max-width: 750px){
    .div_nav_header{
        display: none !important;
    }

    .beneficios_section{
        justify-content: center;
    }

    .cards_beneficios{
        width: 100%;
    }

    .img_maquineta{
        display: none;
    }
}