
.ocultar{
    display: none;
}

@media (min-width: 768px) {

    .ocultar{
        display: block;
    }
    .barra {
        display: block;
        background: #019DF4;
    }
    .content-barra {
        display: flex;
        height: 168px;
        align-items: center;
        width: 90%;
        margin: auto;
        max-width: 1130px;
        gap: 60px;
        font-size: 20px;
        color: #019DF4;
        font-weight: bold;
    }
    .content-barra > h2 {
        color: #fff;
        font-weight: 400;
        font-size: 32px;
        line-height: 1.1em;
    }
    .btn-barra {
        min-width: 248px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 40px;
    }
    
    

}