#primary {
    padding-bottom: 130px;
}
.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 .esq {
    width: 30%;
}
.content-top .box-cards {
    width: 100%;
    row-gap: 12px;
    display: flex;
    flex-direction: column;
}
.content-top .box-cards .card {
    background-color: var(--branco);
    border: 1px solid var(--cinza-palido);
    border-radius: 41px;
}
.content-top .box-cards .card .topo {
    display: flex;
    height: 63px;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.content-top .box-cards .card.aberto .topo::before {
    content: '';
    width: 85%;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0 65px;
    height: 1px;
    background-color: var(--cinza-neutro);
    position: absolute;
    bottom: 0;
}
.content-top .box-cards .card .topo .sinal {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 27px;
    margin-right: 24px;
    min-width: 20px;
}
.content-top .box-cards .card .topo .sinal::before {
    content: '';
    background-color: var(--vermelho);
    height: 100%;
    width: 4px;
    transition: 0.2s all ease-in-out;
    position: absolute;
    display: inline-block;
    opacity: 1;
}
.content-top .box-cards .card.aberto .topo .sinal::before {
    opacity: 0;
}
.content-top .box-cards .card .topo svg {
    position: absolute;
    right: 40px;
    transition: 0.4s all ease-in-out;
}
.content-top .box-cards .card.aberto .topo svg {
    transform: rotateX(180deg);
}
.content-top .box-cards .card .topo .sinal::after {
    content: '';
    background-color: var(--vermelho);
    height: 4px;
    width: 100%;
    display: inline-block;
    transition: 0.4s all ease-in-out;
}
.content-top .box-cards .card .topo .titulo {
    color: var(--preto);
    font-weight: 700;
    font-size: 16px;
}
.content-top .box-cards .card {
    width: 100%;
}
.content-top .box-cards .card .bottom {
    display: block;
    padding: 16px 64px;
}
.content-top .box-cards .card .bottom p {
    font-size: 14px;
    line-height: 19.07px;
    color: var(--preto);
    margin-bottom: 24px;

}
.content-top .box-cards .card .bottom p:last-child {
    margin-bottom: 0;
}
.content-top .box-cards .card strong,
.content-top .box-cards .card a {
    color: var(--vinho);
}
.content-top .box-cards .card a {
    text-decoration: underline;
}
.content-top .dir {
    width: 70%;
    text-align: center;
    padding-left: 30px;
}
.content-top .dir .text_contato {
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: var(--preto);
    margin: 25px 0;
}
.content-top .dir .text_contato:first-child {
    margin: 0 0 25px 0;
}
.content-top .containerForm {
    display: none;
}
.content-top .dir .box-form {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 50px;
    column-gap: 9px;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
    color: var(--branco);
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    margin: 25px 0 0;
}
.content-top .dir .box-form.formOpen {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.content-top .dir .box-form.box-orcamento {background-color: var(--vermelho);}
.content-top .dir .box-form.box-contato {background-color: var(--vinho);}
.content-top .dir .box-form.box-ouvidoria {background-color: var(--carvao);}
.content-top .dir .box-form:hover {
    filter: brightness(1.1);
}
.content-top .dir .containerForm {
    background-color: var(--branco-neve);
    border-right: 1px solid var(--cinza-neutro);
    border-left: 1px solid var(--cinza-neutro);
    border-bottom: 1px solid var(--cinza-neutro);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 20px 40px;
    text-align: left;
}
.content-top .dir input,
.content-top .dir select,
.content-top .dir textarea {
    width: 100%;
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--cinza-palido);
    height: 40px;
    padding-left: 37px;
}
.content-top .dir option,
.content-top .dir select {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: var(--preto);
}
.content-top .dir select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-image: url(../../desentupimento/geral/icone-selectbox.svg);
    background-repeat: no-repeat;
    background-position: right 17px center;
}
.content-top .dir textarea {
    resize: none;
    height: 166px;
    padding-top: 15px;
}
.content-top .dir .display-flex-row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.content-top .dir .label-cidade {
    width: 78%;
}
.content-top .dir .label-uf {
    width: 18%;
}
.content-top .dir .label-uf .label-effect{
    left: 18px;
}
.content-top .dir .label-uf input {
    padding-left: 14px;
}
.content-top .dir input:focus,
.content-top .dir select:focus,
.content-top .dir textarea:focus {
    border: 1px solid var(--vermelho);
}
.content-top .dir .input-nome {
    background-image: url(../../desentupimento/home/ico-nome.svg);
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 14px 13px;
}
.content-top .dir .input-telefone {
    background-image: url(../../desentupimento/home/ico-telefone.svg);
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 14px 13px;
}
.content-top .dir .input-email {
    background-image: url(../../desentupimento/geral/icone-email.svg);
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 14px 13px;
}
.content-top .dir .input-cidade {
    background-image: url(../../desentupimento/geral/icone-cidade.svg);
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 14px 13px;
}
.content-top .dir .input-mensagem {
    background-image: url(../../desentupimento/geral/icone-mensagem.svg);
    background-position: 14px top;
    background-repeat: no-repeat;
    background-size: 14px 13px;
    background-position-y: 12px;
}
.content-top .dir select {
    font-weight: 500;
    color: var(--preto);
    padding-left: 15px;
    margin-top: 24px;
}
.content-top .dir select.error {
    color: red;
}
.content-top .dir .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 .dir .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 .dir .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 .dir .form-aceito .check {
    width: 10px;
    margin: 1px 8px 0 0;
    cursor: pointer;
    height: auto;
}
.content-top .dir .form-aceito .aceito {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #5B5B5B;
}
.content-top .dir .g-recaptcha {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    clear: both;
    margin-bottom: 10px
}
.content-top .dir .text-captcha {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--preto);
    margin: 20px 0 10px 0;
    display: block;
}
.content-top .dir .enviar {
    background-color: var(--vermelho);
    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 .dir .enviar.btn-desabilitado{
    background-color: var(--cinza-neutro);
    cursor: default;
}
.content-bottom {
    border-top: 1px solid var(--cinza-neutro);
    padding: 40px 0;
    margin: 50px 0 0 0;
}
.content-bottom .title-bottom {
    color: var(--preto);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 26px;
    margin-bottom: 30px;
}
.content-bottom .box-endereco {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    color: var(--preto);
    margin-bottom: 30px;
}
.content-bottom .box-endereco strong {
    font-weight: 700;
}
.content-bottom iframe {
    height: 483px;
}
.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;
    }
    .content-top .box-cards .card .topo .sinal {
        margin-right: 18px;
    }
    .content-top .dir .box-form {
        font-size: 16px;
    }
    .content-bottom .title-bottom {
        font-size: 26px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width:1024px){
    #primary {
        padding-bottom: 190px;
    }
    .content-top .display-flex-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    .containerForm .display-flex-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .content-top .dir,
    .content-top .esq {
        width: 100%;
        padding: 0;
    }
    .content-top .esq {
        margin-top: 40px;
    }
    .content-top .dir .containerForm {
        padding: 5px 15px 20px;
    }
}
@media only screen and (max-width:600px){
    .content-top .titulo-principal {
        font-size: 26px;
        padding-bottom: 16px;
    }
    .content-top .dir .text_contato {
        font-size: 16px;
    }
    .content-top .box-cards .card .topo .titulo {
        font-size: 15px;
    }
    .content-bottom .title-bottom {
        font-size: 24px;
    }
    .content-bottom iframe {
        height: 250px;
    }
}
@media only screen and (max-width:500px){
    .content-top .dir .box-form {
        padding: 0 5%;
        font-size: 14px;
        line-height: 19px;
    }
    .content-top .box-cards .card .topo svg {
        right: 22px;
    }
}