#container-beneficiamento-banner{
    height: 45vh;
    background-image: url(../../imagens/site/banner-beneficiamento-desktop.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
@media(min-width:1600px){
    #container-beneficiamento-banner{
        background-image: url(../../imagens/site/banner-beneficiamento-desktop.png);
        height: 30vh;
    }
}
@media(max-width:992px){
    #container-beneficiamento-banner{
        background-image: url(../../imagens/site/banner-beneficiamento-mobile.png);
        height: 70vh;
        justify-content: start;
    }

    #container-beneficiamento-banner h3{
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
        font-size: 30px;
    }
    #container-beneficiamento-banner h1{
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
}

#btn-conheca{
    border-radius: 20px;
    padding: 8px 45px;
    font-weight: 600;
    transition: 300ms;
}
#btn-conheca:hover{
    opacity: .8;
    transition: 300ms;
}