section.title__page {
    display: flex;
    min-width:100%; 
    background: url(../img/bg-headers.jpg) center center no-repeat;
    background-repeat: no-repeat; 
    background-color: var(--azul);
    background-size: cover;
    padding-top: 170px;
} 

section.title__page .row {
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

section.title__page .left {
    position: relative;
    padding-left: 50px;
}

section.title__page .left::before {
    content:'';
    width: 7px;
    height: 140%;
    display: block;
    border-radius: 10px;
    background: var(--azul);
    position: absolute;
    top:50%;
    left:0;
    transform: translateY(-50%);
}

section.title__page h1 {
    color:#fff;
    font-size: 48px;
    font-weight: bold;
    line-height: 100%;
    margin-bottom: 10px;
}

section.title__page p {
    color:#a2daff;
    font-size: 18px;
}

section.title__page .header__cta {
    display: table;
    float: right;
    color:#a2daff;
    font-size: 18px;
    line-height: 18px;
    padding: 10px 35px;
    padding-left: 140px;
    border:1px var(--azul) solid;
    border-radius: 50px;
    position: relative;
    transition: all .5s;
}

section.title__page .header__cta::after {
    content:'';
    width:95px;
    height: 95px;
    display: block;
    position: absolute;
    left:30px;
    top:50%;
    transform: translateY(-50%);
    background: url(../img/icone-orcamento.png) center center no-repeat;
    background-size: contain;
}

section.title__page .header__cta:hover {
    background: #002e4d;
}

section.title__page .header__cta strong {
    font-size: 24px;
    font-weight: bold;
    display: block;
    color:#fff;
    line-height: 30px;
}