#primary {
    padding-bottom: 130px;
}
#primary .display-flex-row {
    justify-content: space-between;
}
#sidebar-page {
    margin: 0 0 0 50px;
}
.content-top .titulo-principal {
    color: var(--preto);
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    font-family: "Open Sans", sans-serif;
    position: relative;
    border-bottom: 2px solid #e9e9e9;
    padding-bottom: 27px;
    margin-bottom: 28px;
}
.content-top .titulo-principal::after {
    content: '';
    background-color: #FB2224;
    width: 80px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    right: 0;
}
.content-top .box-form .titulo-form {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: var(--preto);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.content-top .box-form .titulo-form svg {
    margin-right: 15px;
}
.content-top .box-form #formLigamos {
    background-color: var(--branco-neve);
    border: 1px solid var(--cinza-neutro);
    border-radius: 15px;
    padding: 20px 40px;
}
.content-top .box-form input {
    width: 100%;
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--cinza-palido);
    height: 40px;
    padding-left: 37px;
}
.content-top .box-form input:focus {
    border: 1px solid var(--vermelho);
}
.content-top .box-form .input-nome {
    background-image: url(../../desentupimento/home/ico-nome.svg);
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 14px 13px;
}
.content-top .box-form .input-telefone {
    background-image: url(../../desentupimento/home/ico-telefone.svg);
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 14px 13px;
}
.content-top .box-form .input-email {
    background-image: url(../../desentupimento/geral/icone-email.svg);
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 14px 13px;
}
.content-top .box-form select {
    font-weight: 500;
    color: var(--preto);
    padding-left: 15px;
    margin-top: 24px;
}
.content-top .box-form .label-effect {
    position: relative;
    top: 29px;
    left: 38px;
    z-index: 1;
    font-size: 14px;
    color: var(--preto);
    transition: 0.2s all ease-in-out;
    height: 19px;
    font-weight: 500;
    background: linear-gradient(180deg, rgba(243, 243, 243, 1) 0%, rgba(255, 255, 255, 0) 0%);
}
.content-top .box-form .label-effect.subir {
    top: 12px;
    font-size: 12px;
    background: linear-gradient(180deg, rgb(249 249 249) 50%, rgba(255, 255, 255, 1) 50%);
}
.content-top .box-form .form-aceito {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 30px 0;
}
.content-top .box-form .form-aceito .check {
    width: 10px;
    margin: 1px 8px 0 0;
    cursor: pointer;
    height: auto;
}
.content-top .box-form .form-aceito .aceito {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #5B5B5B;
}
.content-top .box-form .g-recaptcha {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    clear: both;
    margin-bottom: 10px
}
.content-top .box-form .text-captcha {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--preto);
    margin: 20px 0 10px 0;
    display: block;
}
.content-top .box-form .enviar {
    background-color: var(--vinho);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 100%;
    height: 48px;
    border: none;
    font-weight: 700;
    color: var(--branco);
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}
.content-top .box-form .enviar.btn-desabilitado{
    background-color: var(--cinza-neutro);
    cursor: default;
}
.content-top .box-form .enviar:hover {
    background-color: var(--vermelho);
}
.content-top .box-form .obrigatorio,
.content-top .box-form .obrigatorio a {
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--preto);
    transition: 0.2s all ease-in-out;
    margin: 25px 0 7px;
    width: 100%;
}
.content-top .box-form .obrigatorio a:hover, .content-top .box-form .obrigatorio a:hover {
    color: var(--vermelho);
}
.status-erro {
    color: red;
    font-size: 12px;
    margin: 20px 0;
    display: block;
    text-align: center;
}
/**** RESPONSIVO ****/
@media only screen and (max-width:1500px){
    .content-top .titulo-principal {
        font-size: 30px;
        padding-bottom: 20px;
    }
}
@media only screen and (max-width:1024px){
    #primary {
        padding-bottom: 190px;
    }
    #primary .display-flex-row {
        flex-direction: column;
    }
    .content-top .box-form #formLigamos {
        padding: 5px 15px 20px;
    }
    .content-top .box-form .titulo-form {
        font-size: 21px;
    }
    .content-top .box-form .titulo-form svg {
        width: 28px;
    }
    #sidebar-page {
        margin: 40px 0 0 0;
    }
}
@media only screen and (max-width:600px){
    .content-top .titulo-principal {
        font-size: 26px;
        padding-bottom: 16px;
    }
}
@media only screen and (max-width:370px){
    .content-top .box-form .titulo-form {
        font-size: 19px;
        margin: 14px 0 0;
        flex-direction: column;
    }
}