
/**** Banner ****/
#banner {
    height: auto;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
    background-size: cover;
}
#banner .container-geral {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 150px 0 0 0;
    justify-content: space-between;
}
#banner .esq {
    width: 664px;
    padding-bottom: 67px;
}

#banner .esq .verde{
    background-color: #00CF4A;
    color: #fff;
    font-family: var(--kanit);
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    width: 449px;
    margin-bottom: 10px;
}

#banner .esq .titulo {
    font-family: var(--kanit);
    font-style: normal;
    font-weight: 800;
    font-size: 50px;
    line-height: 47px;
    letter-spacing: 0.02em;
    color: var(--branco);
    margin-bottom: 19px;
}
#banner .esq .titulo .destaque {
    color: var(--vermelho);
}
#banner .esq .texto {
    width: 547px;
    max-width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: var(--branco);
    margin-bottom: 31px;
}
#banner .esq .texto .destaque {
    font-weight: 700;
    color: var(--vermelho);
}


@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.cidades-marquee {
    width: 45%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    left: -46px;
    padding: 24px 0;
    background: linear-gradient(90deg, rgba(32, 32, 32, 0) 0%, rgba(32, 32, 32, 0.5) 15.74%, #202020 51.17%, rgba(32, 32, 32, 0.5) 83.71%, rgba(32, 32, 32, 0) 100%);
    border-width: 1px 0px;
    border-style: solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, rgba(251, 34, 36, 0) 0%, var(--vermelho) 44.26%, rgba(251, 34, 36, 0.05) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 79%, rgba(0, 0, 0, 0) 109%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 79%, rgba(0, 0, 0, 0) 109%);
}

#banner .box-telefones {
    display: flex;
    column-gap: 10px;
    justify-content: space-between;
}
#banner .box-telefones .box {
    width: 298px;
    max-width: 45%;
    height: 80px;
    border-radius: 5px;
}
#banner .box-telefones .box .vermelho {
    width: 100%;
    height: 29px;
    border-radius: 5px 5px 0 0;
    background-color: var(--vermelho);
    display: flex;
    align-items: center;
    justify-content: center;
}
#banner .box-telefones .box .vermelho p {
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--branco);
}
#banner .box-telefones .box .bottom {
    border: 1px solid #626262;
    border-top: none;
    border-radius: 0 0 5px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    column-gap: 9px;
}
#banner .box-telefones .box .bottom p a {
    font-family: var(--kanit);
    color: var(--branco);
    font-size: 33px;
    font-weight: 800;
}


.cidades-track {
    display: inline-block;
    animation: marquee 50s linear infinite;
}

.cidades-track span {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
    padding: 0;
}

.cidades-track span + span::before {
    content: '•';
    color: var(--vermelho);
    margin: 0px 4px 0px 0px;
    font-weight: bold;
}

#banner .dir {
    background-color: var(--branco-neve);
    border: 5px solid var(--cinza-neutro);
    border-radius: 15px;
    padding: 25px 33px;
    width: 570px;
    position: relative;
}

#banner .dir .zap-icone{
    position: absolute;
    right: -36px;
    top: -30px;
}

#banner .dir .topo {
    text-align: center;
    margin-bottom: 7px;
}
#banner .dir .topo .titulo {
    font-weight: 700;
    font-size: 26px;
    line-height: 16px;
    letter-spacing: -0.015em;
    color: var(--preto);
    margin-bottom: 10px;
}
#banner .dir .topo .low {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.015em;
    color: var(--preto);
}

/* Formulários */

.box-form input,
.box-form textarea {
    width: 100%;
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--cinza-palido);
    height: 40px;
    padding-left: 37px;
    margin-bottom: -10px;
}
.box-form option:first-child{
    color: #434343;
}
.box-form option {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: black;
}
.box-form textarea {
    resize: none;
    height: 166px;
    padding-top: 15px;
    height: 85px;
}
.box-form .display-flex-row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.box-form input:focus,
.box-form textarea:focus {
    border: 1px solid var(--vermelho);
}
.box-form .input-nome {
    background-image: url(../../desentupimento/home/ico-nome.svg);
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 14px 13px;
}
.box-form .input-telefone {
    background-image: url(../../desentupimento/home/ico-telefone.svg);
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 14px 13px;
}
.box-form .input-servico {
    width: 100%;
    margin-top: 20px;
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--cinza-palido);
    height: 40px;
    padding-left: 14px;
    padding-right: 37px;
    margin-bottom: -10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('../../../desentupidora/desentupimento/lp/lp-24-horas/icones/setinha.svg');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    font-weight: 500;
    font-size: 14px;
    color: var(--preto);
}

.box-form .input-servico:invalid {
    color: #5B5B5B;
}

.box-form .input-servico:valid {
    color: #434343;
}
.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%);
}
.box-form .label-effect.subir {
    top: 7px;
    font-size: 12px;
    background: linear-gradient(180deg, rgb(249 249 249) 50%, rgba(255, 255, 255, 1) 50%);
}
.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;
}
.box-form .form-aceito .check {
    width: 10px;
    margin: 1px 8px 0 0;
    cursor: pointer;
    height: auto;
}
.box-form .form-aceito .aceito {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #5B5B5B;
}
.box-form .g-recaptcha {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    clear: both;
    margin-bottom: 10px
}
.box-form .text-captcha {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--preto);
    margin: 20px 0 10px 0;
    display: block;
}
.box-form .enviar {
    background-color: var(--verde);
    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;
    margin-top: 38px;
}
.box-form .enviar:hover {
    opacity: .8;
}
.box-form .obrigatorio,
.box-form .obrigatorio a {
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--preto);
    transition: 0.2s all ease-in-out;
    margin: 13px 0px -2px;
    width: 100%;
}
.box-form .obrigatorio a:hover{
    color: var(--vermelho);
}
.status-erro {
    color: red;
    font-size: 12px;
    margin: 21px 0 -12px 0;
    display: block;
    text-align: center;
}

/* Informações */
#infos {
    padding-bottom: 40px;
    padding-top: 8px;
    background-color: #F9F9F9;
    position: relative;
}

#slider-infos {
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
}

#slider-infos .swiper-slide{
    width: 280px !important;
}

#slider-infos .swiper-wrapper {
    display: flex;
    width: max-content;
    gap: 15px;
    animation: marquee 36s linear infinite;
}

.info-box {
    user-select: none;
    display: flex;
    gap: 35px;
    width: 100%;
    height: 70px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
}


.info-box p {
    font-size: 14px;
    color: #000;
    line-height: 18px;
    margin: 0;
    text-align: left;
    padding: 0 14px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-1700px);
    }
}


/**** Clientes ****/
#bloco_clientes {
    background-color: #F9F9F9;
    overflow: hidden;
    padding: 17px 0 30px;
}
#bloco_clientes .container-geral .sub {
    text-align: center;
    color: var(--vermelho);
    font-size: 14px;
    position: relative;
    z-index: 1;
}
#bloco_clientes .container-geral .titulo {
    color: var(--preto);
    font-family: var(--kanit);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}
#bloco_clientes .swiper {
    margin-left: -2%;
    width: 105%;
}
#bloco_clientes .container-geral {
    margin-bottom: 119px;
}
#bloco_clientes .swiper img {
    filter: grayscale(1);
    opacity: 0.5;
    transition: 0.2s all ease-in-out;
    max-width: 100%;
}
#bloco_clientes .swiper img:hover {
    filter: unset;
    opacity: 1;
    transition: 0.2s all ease-in-out;
}
#bloco_clientes .swiper .swiper-wrapper {
    align-items: center;
    padding-bottom: 37px;
}
#bloco_clientes .swiper .swiper-slide {
    text-align: center;
}
#bloco_clientes .container-geral .box-setas {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    z-index: 2;
}
#bloco_clientes .container-geral .box-setas .clientes-proximo,
#bloco_clientes .container-geral .box-setas .clientes-anterior {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vermelho);
    cursor: pointer;
}
#bloco_clientes .container-geral:before {
    content: 'Clientes';
    font-size: 100px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -58px;
    text-align: center;
    font-family: var(--kanit);
    font-weight: 600;
    color: var(--branco-neve);
    -webkit-text-stroke: 1px var(--cinza-neutro);
    opacity: 0.6;
}

/**** Serviços ****/
#bloco_servicos {
    background-color: var(--branco);
    order: initial;
    padding-top: 89px;
    overflow: initial;
    margin-bottom: 149px;
}
#bloco_servicos .topo {
    margin-bottom: 41px;
}
#bloco_servicos .topo::before {
    top: -80px;
    left: 22px;
}
#bloco_servicos .titulo {
    font-size: 28px;
}
#bloco_servicos .topo .texto {
    z-index: 2;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    letter-spacing: 0.02em;
    color: var(--preto);
    padding: 0 5%;
    margin-top: 25px;
    position: relative;
}
#bloco_servicos .topo .texto .destaque {
    color: var(--vermelho);
    font-weight: 700;
}

#bloco_servicos .box-cards {
    margin-bottom: 69px;
}

#bloco_servicos .box-cards .card:hover{
    box-shadow: 0px 4px 6.1px 0px #00000040;
}


/* MAIS SERVIÇOS */
#container-mais-servicos {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 57px;
    background-color: white;
}
#container-mais-servicos .container-geral {
    z-index: 1;
}

#container-mais-servicos .container-geral .texto{
    font-size: 18px;
    font-weight: 400;
    color: var(--preto-absoluto);
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 52px;
}

#container-mais-servicos .container-geral .texto span{
    font-weight: 700;
    color: var(--vermelho);
}

#container-mais-servicos .container-geral .topo-linha {
    position: relative;
    margin-top: -92px;
    margin-bottom: 67px;
}
#container-mais-servicos .container-geral .topo-linha::before {
    content: 'Mais serviços';
    font-size: 160px;
    position: absolute;
    left: 0;
    right: 0;
    top: -95px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--kanit);
    font-weight: 600;
    color: var(--branco-neve);
    -webkit-text-stroke: 1px var(--cinza-neutro);
}
#container-mais-servicos .container-geral .topo-linha .sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--preto-absoluto);
    text-align: center;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
    padding: 0 15%;
}

#container-mais-servicos .container-geral .topo-linha .sub span{
    color: var(--vermelho);
    font-weight: 700;
}
#container-mais-servicos .container-geral .topo-linha .titulo {
    font-family: var(--kanit);
    color: var(--preto);
    font-size: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 600;
}
#container-mais-servicos .container-geral .topo-linha .avaliacoes {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
#container-mais-servicos .container-geral .topo-linha .avaliacoes p {
    font-size: 12px;
    color: var(--preto-absoluto);
    font-weight: 500;
}
#container-mais-servicos .container-geral .box-lista .card p {
    font-weight: 700;
    color: #000;
    text-align: center;
}
#container-mais-servicos .container-geral .topo-linha .avaliacoes p {
    font-size: 12px;
    color: var(--preto-absoluto);
    font-weight: 500;
}
#container-mais-servicos .container-geral .box-lista {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 18px;
    position: relative;
    justify-content: center;
}
#container-mais-servicos .container-geral .box-lista .card {
    width: 260px;
    height: 203px;
    border: 1px solid var(--cinza-neutro);
    border-radius: 5px;
    transition: 0.2s all ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF80;
    backdrop-filter: blur(3px);
    position: relative;
}
#container-mais-servicos .container-geral .box-lista .card:hover {
    box-shadow: 0px 0px 4px 0px #00000040;
}
#container-mais-servicos .container-geral .box-lista .card svg.seta {
    transition: 0.2s all ease-in-out;
    position: absolute;
    top: 10px;
    right: 10px;
}
#container-mais-servicos .container-geral .box-lista .card svg.seta {
    transition: 0.2s all ease-in-out;
    position: absolute;
    top: 10px;
    right: 10px;
}
#container-mais-servicos .container-geral .box-lista .card svg:not(.seta) {
    height: 128px;
    margin-top: -19px;
    fill: var(--cinza-palido);
    transition: 0.2s all ease-in-out;
}
#container-mais-servicos .container-geral .box-lista .card svg.caixa {
    fill: none;
    color: var(--cinza-neutro);
}
#container-mais-servicos .container-geral .box-lista .card:hover svg:not(.seta) {
    fill: var(--vermelho);
}
#container-mais-servicos .container-geral .box-lista .card:hover svg.caixa {
    fill: none;
    color: var(--vermelho);
}

#container-mais-servicos .container-geral .box-lista .profissionais {
    width: 107px;
    height: 67px;
    border-radius: 10px;
    box-shadow: 0px 1px 4px 0px #00000040;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: -26px;
    top: -98px;
}
#container-mais-servicos .container-geral .box-lista .profissionais .top {
    background-color: var(--branco);
    text-align: center;
    color: var(--preto);
    font-size: 10px;
    line-height: 13px;
    border-radius: 10px 10px 0 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
}
#container-mais-servicos .container-geral .box-lista .profissionais .bottom {
    height: 23px;
    min-height: 23px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    background-color: #009635;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#container-mais-servicos .btn-mobile {
    display: none;
    z-index: 3;
}
#container-mais-servicos .btn-linha-completa {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--vermelho);
    height: 50px;
    border: none;
    border-radius: 50px;
    transition: 0.2s all ease-in-out;
    color: var(--branco);
    text-align: center;
    position: absolute;
    font-size: 16px;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    cursor: pointer;
    max-width: 311px;
    width: 90%;
}

#bloco_servicos .titulo {
    font-size: 28px !important;
}

/**** Vantagens ****/
#vantagens {
    padding: 100px 0;
}
#vantagens .top {
    margin-bottom: 37px;
    position: relative;
}
#vantagens .top .titulo {
    font-family: var(--kanit);
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    letter-spacing: 0.02em;
    color: var(--preto);
    z-index: 2;
    position: relative;
    margin-bottom: 7px;
}
#vantagens .top .texto{
    font-size: 14px;
    font-weight: 400;
    color: var(--preto-absoluto);
    text-align: center;
    position: relative;
    z-index: 1;
}
#vantagens .top .texto span{
    font-weight: 700;
    color: var(--vermelho);
}
#vantagens .top::before {
    content: 'Vantagens';
    font-size: 103px;
    position: absolute;
    left: 0;
    right: 0;
    top: -62px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--kanit);
    font-weight: 600;
    color: var(--branco);
    -webkit-text-stroke: 1px var(--cinza-neutro);
    z-index: -1;
}

#vantagens .bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#vantagens .bottom .esq .box-info {
    width: 48.6%;
    height: 172px;
    overflow: hidden;
    display: flex;
    position: relative;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 9%;
}
#vantagens .bottom .esq .box-info.vermelho {
    background-color: var(--vinho);
}
#vantagens .bottom .esq .box-info.preto {
    background-color: var(--preto);
}
#vantagens .bottom .esq .box-info .icone {
    position: absolute;
    left: 0;
}
#vantagens .bottom .box-info .texto {
    font-weight: 400;
    font-size: 20px;
    line-height: 21px;
    text-align: center;
    color: var(--branco);
    position: relative;
    z-index: 2;
}
#vantagens .bottom .esq {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 68.8%;
    gap: 20px;
    margin-right: 42px;
}
#vantagens .bottom .dir {
    width: 28%;
    height: 368px;
}
#vantagens .bottom .dir .box-info {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 9%;
}
#vantagens .bottom .dir .regiao{
    padding: 0 12%;
}

#vantagens .bottom .dir .regiao .texto{
    font-size: 25px;
    line-height: 32px;
}


#vantagens .bottom .dir .box-info.vermelho {
    background-color: var(--vinho);
}
#vantagens .bottom .dir .box-info .icone {
    position: absolute;
}
#vantagens .bottom .dir .box-info::before {
    content: '';
    background-image: url(../../desentupimento/home/mascote-formulario-flip.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 160px;
    height: 218px;
    left: -44px;
    bottom: -43px;
    z-index: 2;
}

/* SERVIÇO 24H */
#bloco_atendimento_24h {
    padding-top: 89px;
    padding-bottom: 89px;
}
#bloco_atendimento_24h .container-geral {
    display: flex;
    column-gap: 56px;
    flex-wrap: nowrap;
    flex-direction: column;
}
#bloco_atendimento_24h .container-geral .top {
    width: 100%;
    display: flex;
    column-gap: 56px;
    flex-direction: row-reverse;
}
#bloco_atendimento_24h .container-geral .esq {
    min-width: 511px;
    width: 511px;
    height: 719px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}
#bloco_atendimento_24h .container-geral .esq::before {
    content: '';
    height: 95%;
    width: 24px;
    position: absolute;
    bottom: 0;
    left: -12px;
    background-color: var(--vermelho);
    border-radius: 15px;
}
#bloco_atendimento_24h .container-geral .esq::after {
    content: '';
    height: 24px;
    width: 100%;
    position: absolute;
    bottom: -12px;
    left: -12px;
    background-color: var(--vermelho);
    border-radius: 0 0 15px 15px;
}
#bloco_atendimento_24h .container-geral .esq img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}
#bloco_atendimento_24h .container-geral .dir {
    width: 58%;
    position: relative;
}
#bloco_atendimento_24h .container-geral .dir:before {
    content: 'Desentupidora';
    font-size: 100px;
    position: absolute;
    left: -9px;
    top: -39px;
    text-align: center;
    font-family: var(--kanit);
    font-weight: 600;
    color: var(--branco-neve);
    -webkit-text-stroke: 1px var(--cinza-neutro);
    opacity: 0.6;
    z-index: -1;
}
#bloco_atendimento_24h .container-geral .dir .pequeno {
    color: var(--vermelho);
    font-size: 14px;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
    bottom: -65px;
}
#bloco_atendimento_24h .container-geral .dir .titulo {
    font-weight: 600;
    color: var(--preto);
    font-family: var(--kanit);
    font-size: 28px;
    margin-bottom: 13px;
    position: relative;
    z-index: 1;
    margin-top: 65px;
}
#bloco_atendimento_24h .container-geral .dir .texto {
    font-size: 14px;
    color: var(--preto);
    line-height: 21.14px;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
#bloco_atendimento_24h .container-geral .dir .texto span {
    text-decoration: underline;
}
#bloco_atendimento_24h .container-geral .dir .texto .vermelho{
    text-decoration: none !important;
    color: var(--vermelho);
    font-weight: 700;
}
#bloco_atendimento_24h .container-geral .dir .texto a {
    color: var(--vermelho);
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(-360deg);
    }
    to {
        -webkit-transform: rotate(0);
    }
}
@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(-360deg);
    }
    to {
        -moz-transform: rotate(0);
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(-360deg);
    }
    to {
        -ms-transform: rotate(0);
    }
}
@-o-keyframes rotate {
    from {
        -o-transform: rotate(-360deg);
    }
    to {
        -o-transform: rotate(0);
    }
}
@keyframes rotate {
    from {
        transform: rotate(-360deg);
    }
    to {
        transform: rotate(0);
    }
}
#rotativo-24 {
    margin: 0%;
    position: absolute;
    left: -130px;
    bottom: -138px;
    z-index: 2;
}
#circulo-24 {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#circulo-24::before {
    content: '';
    background-image: url(../../desentupimento/home/rotacao-cartao.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 83px;
    height: 84px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 1;
}
#circulo-24::after {
    content: '';
    background: #FFFFFF61;
    width: 163px;
    height: 163px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-radius: 50%;
}
#circulo-24 text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    word-spacing: 2px;
    letter-spacing: 2px;
}
#circulo-24 svg {
    width: auto;
    height: 270px;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 15s;
    -moz-animation-duration: 15s;
    -ms-animation-duration: 15s;
    -o-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    z-index: 1;
}
#bloco_atendimento_24h .container-geral .bottom {
    width: 100%;
    display: flex;
    justify-content: end;
    z-index: 1;
    column-gap: 10px;
    margin-top: -228px;
}
#bloco_atendimento_24h .container-geral .bottom .card {
    width: 462px;
    border-radius: 15px;
    background-color: var(--branco);
    padding: 48px 50px;
    transition: 0.2s all ease-in-out;
    box-shadow: 0px 4px 6.1px 0px #00000040;
    border: 1px solid white;
    transition: .3s ease-in-out;
}
#bloco_atendimento_24h .container-geral .bottom .card:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}
#bloco_atendimento_24h .container-geral .bottom .card:hover {
    border: 1px solid #FF0000
}
#bloco_atendimento_24h .container-geral .bottom .card .titulo {
    font-weight: 600;
    color: var(--preto);
    font-size: 28px;
    line-height: 38px;
    font-family: var(--kanit);
    margin-bottom: 20px;
}

#bloco_atendimento_24h .container-geral .bottom .card .titulo-card{
    font-weight: 600;
    color: var(--preto);
    font-size: 28px;
    line-height: 38px;
    font-family: var(--kanit);
    margin-bottom: 20px;
    text-align: center;
}
#bloco_atendimento_24h .container-geral .bottom .card a:not(.conheca) {
    color: var(--vermelho);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

#bloco_atendimento_24h .container-geral .bottom .card a:not(.conheca) b{
    color: var(--preto) !important;
}
#bloco_atendimento_24h .container-geral .bottom .card a.conheca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    color: var(--vermelho);
    font-size: 14px;
    margin-top: 17px;
}

/* SEGMENTOS */
#bloco-segmentos {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 209px;
}
#bloco-segmentos .container-geral {
    z-index: 1;
}
#bloco-segmentos .container-geral .topo-linha {
    position: relative;
    margin-bottom: 49px;
    margin-top: -8px;
}
#bloco-segmentos .container-geral .topo-linha::before {
    content: 'Segmentos';
    font-size: 160px;
    position: absolute;
    left: 0;
    right: 0;
    top: -102px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--kanit);
    font-weight: 600;
    color: var(--branco-neve);
    -webkit-text-stroke: 1px var(--cinza-neutro);
}
#bloco-segmentos .container-geral .topo-linha .sub {
    font-size: 18px;
    color: var(--preto-absoluto);
    text-align: center;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
}
#bloco-segmentos .container-geral .topo-linha .titulo {
    font-family: var(--kanit);
    color: var(--preto);
    font-size: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 600;
}
#bloco-segmentos .btn-call {
    width: 573px;
    padding: 17px 5px;
    color: var(--branco);
    font-weight: 400;
    text-decoration: none;
    background-color: var(--vermelho);
    border-radius: 50px;
    transition: 0.2s all ease-in-out;
    margin: 60px auto 40px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 16px;
    display: block;
    text-align: center;
    letter-spacing: -0.015em;
}
#bloco-segmentos .box-segmento {
    border-radius: 10px;
    width: 160px;
    height: 160px;
    background-color: var(--cinza-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    position: relative;
    transition: 0.2s all ease-in-out;
}
#bloco-segmentos .box-segmento svg{
    color: #afafaf;
    transition: 0.2s all ease-in-out;
}
#bloco-segmentos .box-segmento:hover svg{
    color: var(--vermelho);
}
#bloco-segmentos .box-segmento:hover{
    background-color: var(--cinza-neutro);
}
#bloco-segmentos .box-segmento .texto {
    font-weight: 700;
    font-size: 12px;
    color: var(--preto);
}
#bloco-segmentos .box-segmento .effect {
    width: 109px;
    height: 5px;
    background-color: var(--vermelho);
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -2px;
    border-radius: 10px;
}
#bloco-segmentos .container-lista {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    gap: 11px;
    justify-content: center;
}

/* FORMULÁRIO */

#bloco_formulario {
    display: flex;
    justify-content: end;
    padding-bottom: 239px;
    order: 5;
}
#bloco_formulario .container {
    background-color: #272727;
    height: 325px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 85%;
}
#bloco_formulario .container .box {
    width: 1363px;
    max-width: 100%;
    padding-left: 94px;
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 106px;
}
#bloco_formulario .container .box .esq {
    width: 42.55%;
    position: relative;
    padding: 0 11.5% 0 0;
}
#bloco_formulario .container .box .esq .sub {
    color: var(--vermelho);
    font-size: 14px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;

}
#bloco_formulario .container .box .esq .texto {
    position: relative;
    top: -19px;
    font-family: var(--kanit);
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 41px;
    text-align: right;
    letter-spacing: 0.02em;
    color: var(--branco);
    z-index: 2;
}
#bloco_formulario .container .box .esq .texto .destaque {
    font-weight: 700;
    color: var(--verde);
    font-size: 46px;
    margin-bottom: 10px;
}
#bloco_formulario .container .box .esq .texto .orcamento{
    font-size: 28px;
}
#bloco_formulario .container .box .esq .confira {
    width: 271px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    background-color: var(--vermelho);
    border-radius: 50px;
    transition: 0.2s all ease-in-out;
    margin-top: 34px;
    position: relative;
    z-index: 1;
}
#bloco_formulario .container .box .esq .confira:hover {
    background: #9D252E;

}
#bloco_formulario .dir {
    background-color: var(--branco-neve);
    border: 5px solid var(--cinza-neutro);
    border-radius: 15px;
    padding: 25px 33px;
    width: 570px;
    height: 382px;
    position: relative;
    box-shadow: 0px 4px 6.1px 0px #00000040;
}

#bloco_formulario .dir .zap-icone{
    position: absolute;
    right: -36px;
    top: -23px;
}

#bloco_formulario .dir .topo {
    text-align: center;
    margin-bottom: 7px;
}
#bloco_formulario .dir .topo .titulo {
    font-weight: 700;
    font-size: 26px;
    line-height: 16px;
    letter-spacing: -0.015em;
    color: var(--preto);
    margin-bottom: 10px;
}
#bloco_formulario .dir .topo .low {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.015em;
    color: var(--preto);
}
#bloco_formulario .container .box .esq:before {
    content: 'orçamento';
    font-size: 130px;
    letter-spacing: 0.02em;
    position: absolute;
    left: 50%;
    top: 35%;
    text-align: center;
    font-family: var(--kanit);
    font-weight: 600;
    color: #272727;
    transform: translate(-50%, -50%);
    -webkit-text-stroke: 0.5px var(--cinza-claro-neutro);
    opacity: 0.1;
    z-index: 1;
}
#bloco_servicos .box-cards {
    margin-bottom: 90px;
}

/* Responsivo */
@media screen and (max-width: 1800px) {
    #container-mais-servicos .container-geral .box-lista .profissionais {
        right: 4%;
    }
}

@media only screen and (max-width:1660px) {
    #bloco_formulario .container {
        padding-right: 5%;
    }
    #bloco_formulario .container .box .esq {
        padding: 0 5% 0 0;
    }
    #bloco_formulario .container .box .esq:before {
        font-size: 100px;
    }
}

@media screen and (max-width: 1600px) {
    #container-mais-servicos .container-geral .box-lista .profissionais {
        right: 8%;
    }

    #container-mais-servicos:after {
        width: 466px;
    }

    #container-mais-servicos .container-geral .topo-linha::before {
        font-size: 134px;
    }
    #bloco-segmentos .container-geral .topo-linha::before {
        font-size: 134px;
        top: -89px;
    }

    #banner .box-telefones .box .bottom p a {
        font-size: 22px;
    }
}

@media only screen and (max-width:1550px) {
    #bloco_formulario .container .box .esq {
        padding: 0;
    }
}

@media only screen and (max-width:1500px) {
    #banner .esq .texto {
        font-size: 16px;
        line-height: 30px;
    }
    #banner .esq .titulo {
        font-size: 40px;
        margin-bottom: 10px;
    }
    #banner .esq {
        width: 564px;
    }
    #vantagens .bottom .dir .box-info .icone svg{
        width: 300px;
    }
    #bloco_formulario .container .box .dir {
        width: 506px;
        max-width: 100%;
    }
}

@media only screen and (max-width:1440px) {

    #container-mais-servicos .container-geral .topo-linha::before {
        top: -55px;
        font-size: 120px;
    }


    #bloco_atendimento_24h .container-geral .bottom {
        margin-top: -150px;
    }

    #bloco-segmentos .container-geral .topo-linha::before{
        font-size: 120px;
        top: -77px;
    }

    #bloco-segmentos .container-geral .topo-linha {
        margin-bottom: 47px;
    }
}

@media screen and (max-width: 1366px) {
    #bloco_atendimento_24h .container-geral .bottom .card {
        width: 387px;
        padding: 32px 30px;
    }
}

@media only screen and (max-width:1330px) {
    #bloco_formulario .container .box .esq .texto .destaque {
        font-size: 40px;
    }
    #bloco_formulario .container .box .esq .texto {
        font-size: 20px;
        line-height: 33px;
    }
    #bloco_formulario .container .box .esq:before {
        font-size: 77px;
    }
}


@media only screen and (max-width:1280px) {
    #banner .dir {
        width: 533px;
    }
    #banner .esq {
        width: 503px;
        margin-right: 30px;
    }
    #banner .esq .verde {
        font-size: 14px;
        width: 432px;
    }
    #banner .esq .titulo {
        font-size: 36px;
    }
    #banner .esq .texto {
        width: 90%;
    }
    #bloco-segmentos .btn-call {
        width: 528px;
        font-size: 14px;
    }

    #bloco_atendimento_24h .container-geral .dir:before {
        font-size: 84px;
        top: -27px;
    }

    #bloco_atendimento_24h .container-geral .dir .titulo {
        line-height: 34px;
    }

    #bloco_atendimento_24h .container-geral .bottom {
        margin-top: -113px;
    }

    #bloco_formulario .container .box {
        column-gap: 45px;
        padding-left: 59px;
    }
    #bloco_formulario .container .box .esq .texto .orcamento {
        font-size: 26px;
    }
}

@media screen and (max-width: 1200px) {
    #container-mais-servicos .container-geral .topo-linha::before {
        top: -43px;
        font-size: 100px;
    }

    #container-mais-servicos .container-geral .box-lista .card p {
        font-size: 14px;
    }

    #vantagens .bottom .box-info .texto {
        font-size: 18px;
        line-height: 23px;
    }

    #bloco_atendimento_24h .container-geral .dir .pequeno {
        bottom: -28px;
    }

    #bloco_atendimento_24h .container-geral .dir .titulo {
        font-size: 24px;
        margin-bottom: 8px;
        margin-top: 26px;
    }
    #bloco_atendimento_24h .container-geral .dir .texto {
        margin-bottom: 11px;
    }
    #bloco_atendimento_24h .container-geral .dir:before {
        font-size: 80px;
    }
    #bloco_atendimento_24h .container-geral .dir .sub {
        margin-top: 35px;
    }
    #bloco_atendimento_24h .container-geral .esq {
        min-width: 450px;
        width: 450px;
        height: 644px;
    }
}

@media only screen and (max-width:1180px) {
    #vantagens .bottom .esq .box-info {
        width: 46.6%;
    }
    #vantagens .bottom .dir .box-info::before {
        left: -68px;
    }
}

@media only screen and (max-width:1129px) {
    #container-mais-servicos .container-geral .topo-linha .titulo {
        line-height: 31px;
        margin-bottom: 10px;
    }

    #bloco_atendimento_24h .container-geral .bottom {
        margin-top: 0px;
    }

    #bloco_formulario .container .box .esq .texto .destaque {
        font-size: 37px;
    }

    #bloco_formulario .container .box .esq .texto .orcamento {
        font-size: 25px;
    }

}

@media screen and (max-width: 1080px) {
    #banner .esq {
        width: 467px;
    }

    #banner .esq .titulo {
        font-size: 33px;
        line-height: 40px;
        margin-bottom: 7px;
    }

    #banner .dir {
        width: 566px;
    }


    #bloco_atendimento_24h .container-geral .bottom .card .titulo {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    #bloco_formulario .container .box .esq .texto .destaque {
        font-size: 34px;
    }
}

@media only screen and (max-width:1024px) {
    #banner {
        height: auto;
        background-color: #1f1f1f;
    }
    #banner .box-telefones {
        justify-content: center;
        flex-direction: column;
        row-gap: 25px;
        align-items: center;
    }
    #banner .box-telefones .box {
    max-width: 100%;
    }
    #banner .container-geral {
        flex-direction: column;
        align-items: center;
        padding: 75px 0 50px 0;
    }
    #banner .esq {
        margin-bottom: 40px;
        width: 90%;
    }

    #banner .esq .verde {
        font-size: 16px;
        width: 472px;
        max-width: 100%;
    }

    #banner .esq .titulo {
        font-size: 38px;
        line-height: 42px;
    }
    .cidades-marquee {
        width: 100%;
        left: unset;
    }
    #banner .dir {
        width: 654px;
        max-width: 100%;
    }
    #bloco_clientes .swiper svg {
        max-height: 80%;
    }
    #bloco_clientes .swiper {
        margin: 0;
        width: 100%;
        height: 118px;
    }
    #bloco_clientes .container-geral {
        margin-bottom: 20px;
    }
    #bloco_clientes .container-geral .titulo {
        padding: 0 10%;
    }

    #bloco_clientes .container-geral .box-setas {
        bottom: 0;
    }
    #bloco_clientes .swiper .swiper-slide {
        text-align: center;
        display: flex;
        align-items: center;
        height: 55px;
        justify-content: center;
    }
    #bloco_servicos .box-cards .card{
        box-shadow: 0px 4px 6.1px 0px #00000040;
    }
    #container-mais-servicos .container-geral .box-lista .card {
        width: 23.2%;
    }
    #container-mais-servicos:after {
        width: 292px;
        height: 404px;
        background-position: left 135px;
        background-size: cover;
        right: -74px;
        background-repeat: no-repeat;
    }
    #container-mais-servicos .btn-mobile {
        display: block;
    }

    #container-mais-servicos .container-geral .topo-linha .sub {
        padding: 0 3%;
    }
    #vantagens .bottom {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    #vantagens .bottom .esq {
        width: 90%;
        justify-content: center;
        margin-right: 0;
    }
    #vantagens .bottom .esq .box-info {
        width: 100%;
    }
    #vantagens .bottom .dir {
        width: 90%;
        height: 300px;
    }
    #vantagens .top::before {
        font-size: 75px;
        top: -40px;
    }
    #vantagens {
        padding: 60px 0;
    }

    #bloco_atendimento_24h .container-geral .esq {
        display: none;
    }
    #bloco_atendimento_24h .container-geral .dir {
        width: 100%;
    }
    #bloco_atendimento_24h .container-geral .bottom {
        margin-top: 0;
        justify-content: flex-start;
        padding: 0 5%;
    }
    #rotativo-24 {
        display: none;
    }
    #bloco_atendimento_24h .container-geral {
        row-gap: 20px;
        max-width: 100%;
    }
    #bloco_atendimento_24h .container-geral .top {
        padding: 0 5%;
    }

    #bloco-segmentos {
        padding-bottom: 130px;
    }
    #bloco_formulario .container .box {
        width: 100%;
        flex-direction: column;
        padding: 37px 0;
    }
    #bloco_formulario .container .box .esq .texto {
        line-height: 29px;
        text-align: center;
    }
    #bloco_formulario .container .box .esq {
        width: 90%;
        padding: 0px 0px 12px 0;
    }
    #bloco_formulario {
        padding-bottom: 277px;
    }

    #bloco_formulario .container .box .esq .texto .destaque {
        font-size: 40px;
    }

    #bloco_formulario .container {
        height: auto;
        border-top-left-radius: unset;
        border-bottom-left-radius: unset;
        width: 100%;
        padding-right: 0;
    }

    #bloco_formulario .container .box .dir {
        width: 600px;
        max-width: 90%;
    }

    #bloco_formulario .container .box .esq:before {
        font-size: 100px;
        top: 18%;
    }

    #bloco_formulario .dir .zap-icone {
        height: 65px;
        right: -16px;
    }

    #bloco_servicos .topo::before {
        top: -80px;
        left: 0;
    }



}

@media only screen and (max-width: 904px) {
    #bloco-segmentos .container-geral .topo-linha .titulo {
        font-size: 28px;
        line-height: 31px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    #banner .dir .zap-icone {
        right: -18px;
    }

    #container-mais-servicos .container-geral .box-lista .card {
        width: 31.7%;
        height: 170px;
    }
    #container-mais-servicos .container-geral .box-lista .card svg:not(.seta) {
        height: 90px;
        max-width: 47px;
    }
    #container-mais-servicos .container-geral .topo-linha::before {
        top: -43px;
        font-size: 76px;
        text-wrap: nowrap;
        text-align: center;
        width: 110%;
        margin-left: -5%;
    }
    #container-mais-servicos .container-geral .topo-linha .titulo {
        font-size: 29px;
    }
    #container-mais-servicos .container-geral .topo-linha .sub {
        font-size: 16px;
    }
    #bloco_atendimento_24h .container-geral .bottom {
        flex-direction: column;
        row-gap: 6px;
        padding: 0 5%;
    }
    #bloco_atendimento_24h .container-geral .bottom .card {
        width: 100%;
    }
    #bloco_atendimento_24h .container-geral .bottom .card:first-child {
        box-shadow: 0px 0px 6.3px 3px #00000017;
        margin-bottom: 35px;
    }
    #bloco_atendimento_24h .container-geral .bottom .card a:not(.conheca) {
        font-size: 15px;
        margin-bottom: 15px;
    }
    #bloco_atendimento_24h .container-geral .bottom .card .titulo {
        margin-bottom: 35px;
    }
    #bloco_atendimento_24h .container-geral .bottom .card a.conheca {
        margin-top: 35px;
    }
    #bloco-segmentos .container-geral .topo-linha::before{
        font-size: 76px;
        text-wrap: nowrap;
        text-align: center;
        top: -43px;
    }
}

@media only screen and (max-width:737px){
    #vantagens .top .titulo {
        font-size: 28px;
        line-height: 31px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:720px) {
    #banner .esq {
        margin-right: 0;
        width: 100%;
    }
    #banner .esq .visita {
        font-size: 16px;
        width: 218px;
        padding: 2px 5px;
    }
    #banner .esq .visita svg {
        width: 24px;
    }
    #banner .esq .titulo .destaque svg {
        width: 37px;
    }
    #banner .esq .titulo .quebra-linha {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    #banner .esq .texto {
        font-size: 16px;
        line-height: 27px;
    }

}

@media only screen and (max-width:680px) {
    #vantagens .bottom .dir, #vantagens .bottom .esq {
        width: 100%;
    }
}

@media only screen and (max-width:600px) {
    #container-mais-servicos .container-geral .box-lista .card {
        width: 100%;
        height: 150px;
        max-width: 100%;
    }
    #container-mais-servicos .container-geral .box-lista {
        justify-content: center;
        column-gap: 5%;
    }
    #container-mais-servicos .container-geral .box-lista .profissionais {
        right: 0;
        left: 0;
        margin: 0 auto;
        top: unset;
        bottom: -100px;
        width: 145px;
        height: 70px;
    }
    #bloco_atendimento_24h .container-geral .dir:before {
        font-size: 55px;
        top: -16px;
    }

    #bloco_formulario .container {
        padding-right: 0;
        width: 100%;
    }
}

@media screen and (max-width: 580px) {
    #bloco-segmentos .btn-call {
        width: 100%;
        padding: 17px 28px;
    }

    #bloco_formulario .container .box .box-form {
        width: 100%;
    }
    #bloco_formulario .container .box .dir {
        width: 100%;
        padding: 20px 15px;
        height: 400px;
    }
    #bloco_formulario .container .box .dir .titulo {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 13px;
    }
    #bloco_formulario .container .box .esq .texto .destaque {
        font-size: 30px;
    }
    #bloco_formulario .container .box .esq:before {
        font-size: 47px;
    }
}

@media only screen and (max-width:560px) {
    .box-form .obrigatorio {
        padding: 0px 13px;
    }
    #banner .dir {
        padding: 20px 15px;
    }
    #banner .dir .topo .titulo {
        line-height: 23px;
    }
}

@media only screen and (max-width:530px) {
    #banner .esq .titulo {
        font-size: 31px;
        line-height: 39px;
    }

    #banner .esq .texto{
        margin-bottom: 11px;
    }
}
@media only screen and (max-width:500px) {
    #container-mais-servicos .container-geral .topo-linha::before {
        font-size: 14vw;
        width: 100%;
        margin-left: 0;
        top: -3vw;
    }
    #container-mais-servicos .container-geral .topo-linha .titulo {
        line-height: 30px;
        margin: 12px 0;
    }
    #vantagens .bottom .dir .box-info::before {
        left: -40px;
        width: 110px;
    }
    #vantagens .bottom .dir .box-info .icone svg {
        width: 60vw;
    }
    #vantagens .bottom .esq .box-info .icone svg {
        width: 100px;
    }
}

@media screen and (max-width: 490px) {
    #banner .esq .verde {
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
    }

    #banner .esq .titulo {
        font-size: 28px;
        line-height: 39px;
    }

    #banner .dir .zap-icone {
        right: -16px;
        height: 79px;
        top: -25px;
    }

    #bloco_servicos .topo-linha::before {
        top: -32px;
        font-size: 57px;
    }
    #container-mais-servicoss .container-geral .topo-linha::before {
        top: -32px;
        font-size: 57px;
    }

    #container-mais-servicos .container-geral .topo-linha .titulo {
        font-size: 27px;
    }

    #container-mais-servicos .container-geral .topo-linha .sub {
        font-size: 14px;
    }

    #bloco-segmentos .container-geral .topo-linha .titulo {
        font-size: 26px;
    }
}

@media screen and (max-width: 460px) {
    #container-mais-servicos .container-geral .topo-linha {
        margin-top: -176px;
    }

    .box-form .enviar {
        font-size: 14px;
    }
}


@media screen and (max-width: 430px) {
    #bloco-segmentos .container-geral .topo-linha::before {
        font-size: 55px;
        top: -38px;
    }
}



@media only screen and (max-width:440px) {
    #vantagens .top .titulo {
        font-size: 24px;
        line-height: 32px;
    }
    #vantagens .top::before {
        font-size: 57px;
        top: -25px;
    }

    #banner .esq .titulo {
        font-size: 26px;
        line-height: 39px;
    }
}

@media only screen and (max-width:400px) {
    #bloco_atendimento_24h .container-geral .dir:before {
        font-size: 13vw;
        top: -2vw;
    }

    #banner .dir .zap-icone {
        height: 59px;
        top: -43px;
    }
}



@media only screen and (max-width:390px) {
    #bloco_clientes .container-geral {
        padding-bottom: 54px;
    }
    #bloco-segmentos .container-geral .topo-linha .sub {
        margin-bottom: 5px;
    }
    #bloco-segmentos .container-geral .topo-linha .titulo {
        line-height: 28px;
    }
    #bloco_clientes .container-geral {
        padding-bottom: 54px;
    }
}


@media only screen and (max-width:330px) {
    #vantagens .top::before {
        font-size: 44px;
        top: -14px;
    }

    #banner .esq .verde {
        font-size: 13px;
    }
}

@media only screen and (max-width:320px) {
    #vantagens .bottom .dir .box-info::before{
        width: 85px;
    }
}

@media screen and (max-width: 300px) {
    #bloco-segmentos .container-geral .topo-linha::before {
        font-size: 44px;
        top: -31px;
    }
}