@import url('http://fonts.cdnfonts.com/css/gotham');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 0;
}

b {
    font-family: 'Gotham 500', sans-serif;
}

/* Z-INDEX MODAL DE ALERTA */
.swal2-container {
    z-index: 5000;
    font-family: "Gotham", sans-serif;
    font-size: 20px;
}

.swal2-container .swal2-loader {
    border-color: #c42727 transparent #c42727 transparent;
}

#email.active {
    animation: tremer .2s;
    animation-iteration-count: 4;
}

/* keyframe para ajustar até onde treme */
@keyframes tremer {
    0% {
        margin-left: 0;
    }

    25% {
        margin-left: 10px;
    }

    50% {
        margin-left: 0;
    }

    75% {
        margin-left: -10px;
    }

    100% {
        margin-left: 0;
    }
}


/* CSS DA SCROLLBAR */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: rgb(224, 224, 224);
}

body::-webkit-scrollbar-thumb {
    background-color: #c42727;
    /* color of the scroll thumb */
    border-radius: 50px;
}

p::selection {
    background: #c42727;
    color: #FFFFFF;
}

b::selection {
    background: #c42727;
    color: #FFFFFF;
}

header h2 {
    font-family: 'Gotham';
    font-weight: 700;
    font-size: 38px;
    line-height: 48px;
    color: #828282;
    letter-spacing: -1px;
}

.form-banner.disabled {
    pointer-events: none;
    outline: none;
}

.btn-form-disabled {
    display: none;
    height: 66.19px;
    background-color: #a0a0a0;
    color: #FFFFFF;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 40px;
}


.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #383838;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

.banner,
.container-parceiros,
.slide-1,
.container-oferecimentos,
.container-nossos-parceiros,
.container-duvida {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* START CSS NAVABAR */

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 5%;
}

.nav_right img {
    cursor: pointer;
    width: 132px;
}

.nav_right {
    margin-right: auto;
    display: flex;
}

.nav_link {
    list-style: none;
}

.nav_link li {
    display: inline-flex;
}

.title-navbar img {
    width: 162px;
    height: 48px;
}

.contato button {
    width: 248px;
    height: 52px;
    background-color: #C71016;
    color: white;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    font-size: 23px;
    border: 1px solid black;
}

.contato button:hover {
    opacity: 90%;
}

/* END CSS NAVBAR */

button:hover {
    opacity: 90%;
}

/* START CSS BANNER-PRINCIPAL */

.banner {
    padding: 90px 25px;
    height: 570px;
    background-image: url('img/banner.png');
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: cover;
    background-position-y: 42%;
    width: 100%;
}

.text-banner {
    width: 300px;
    height: 270px;
    font-family: "Gotham XLight", sans-serif;
    color: #FFFFFF;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -1px;
}

.text-banner p {
    overflow: hidden;
}


.text-banner p:after {
    content: '';
    display: inline-block;
    background-color: white;
    margin-left: 2px;
    height: 28px;
    width: 3px;
    animation: cursor 0.4s infinite;
}

/* EFEITO DO CURSOR TEXTO BANNER */
@keyframes cursor {
    0% {
        opacity: 1;
    }

    49% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.btn-banner button {
    margin-top: 35px;
    width: 248px;
    height: 52px;
    background-color: #ffffff;
    color: #C71016;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    font-size: 23px;
}

.form-banner {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #ECECEC;
}

.form-title {
    color: #282B2F;
    text-align: center;
}

.form-title h1 {
    font-weight: 700;
    letter-spacing: -2px;
    font-family: 'Gotham 500', sans-serif;
}

.subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 52px;
    font-family: "Gotham 400", sans-serif;
}

.form {
    padding: 20px 20px;
    text-align: center;
}

.form-submit {
    background-color: #FFFFFF;
    height: 100%;
    border-radius: 10px;
    padding: 20px 20px;
    display: inline-grid;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}

.form-submit input {
    border-radius: 10px;
    height: 40px;
    border: 0.4px solid #a1a1a1;
    padding: 10px 10px;
    margin-bottom: 26px;
    font-size: 17px;
}

input::placeholder {
    color: rgb(0, 0, 0);
    font-size: 18px;
    line-height: 48px;
    letter-spacing: -1px;
    font-family: "Gotham 400", sans-serif;
}

.checkbox {
    display: flex;
}

.checkbox input[type="checkbox"] {
    margin-right: 2%;
    accent-color: #C71016;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox p {
    font-weight: 700;
    font-size: 10px;
    line-height: 12px;
    text-align: initial;
    font-family: "Gotham 700", sans-serif;
}

.btn-form {
    width: 100%;
    height: 66.19px;
    background-color: #C71016;
    color: #FFFFFF;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 40px;
}

/* END CSS BANNER PRINCIPAL */

/* START CSS PARCERIA PRINCIPAL */

.container-parceiros {
    text-align: -webkit-center;
}

.background-parceiros {
    background-image: url('img/icone-max.svg');
    width: 308px;
    height: 341px;
    background-size: cover;
}

.title-parceiros {
    letter-spacing: -2px;
    font-family: 'Gotham 400', sans-serif;
    font-size: 28px;
    line-height: 52px;
    margin-top: 25px;
    color: #282B2F;
    text-align: center;
    width: 354px;
    height: 52px;
}

.background-parceiros img {
    margin-top: 39%;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    object-fit: cover;
}

.subtitle-parceiros {
    width: 352px;
    height: 248px;
    padding: 20px;
}

.subtitle-parceiros p {
    font-family: "Gotham 400", sans-serif;
    font-size: 20px;
    line-height: 31px;
    letter-spacing: -1px;
    text-align: initial;
    margin-bottom: 10%;
    color: #282B2F;
}

.div-btn {
    margin-top: 31px;
    margin-bottom: 31px;
}

.btn-parceiros {
    font-family: "Gotham 200", sans-serif;
    padding: 13px 50px;
    background-color: #C71016;
    color: #FFFFFF;
    border: none;
    text-decoration: none;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    font-size: 28px;
    letter-spacing: -1px;
    line-height: 40px;
    margin-bottom: 10%;
}

/* END CSS PARCERIA PRINCIPAL */

/* START CSS SUCESSO DE VENDAS */
.container-sucesso-vendas {
    text-align: -webkit-center;
    background-color: #ECECEC;
    position: absolute;
    width: 100%;
}

.title-sucesso-vendas {
    letter-spacing: -2px;
    font-family: 'Gotham 400', sans-serif;
    font-size: 28px;
    line-height: 31px;
    margin-top: 50px;
    color: #282B2F;
    text-align: center;
    height: 62px;
    padding: 10px 10px;
}

.subtitle-sucesso-vendas p {
    font-family: "Gotham 400", sans-serif;
    font-size: 20px;
    line-height: 23.5px;
    letter-spacing: -1px;
    color: #282B2F;
    text-align: center;
    width: 289px;
    height: 71px;
    margin: 22px auto;
}

.slide-1 {
    background-color: #FFFFFF;
    border-radius: 10px;
    max-width: 20%;
}

.title-slide {
    font-family: "Gotham", sans-serif;
    font-size: 28px;
    line-height: 52px;
    color: #282B2F;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    padding: 4px;
}

.subtitle-slide {
    width: 188px;
}

.subtitle-slide p {
    font-family: "Gotham 400", sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -1px;
    margin-top: 18px;
    text-align: center;
    margin-bottom: 26px;
}

/* END CSS SUCESSO DE VENDAS */

/* START CSS RETORNO GARANTIDO */
.container-retorno-garantido {
    text-align: -webkit-center;
    background-color: #C70F16;
    position: absolute;
    width: 100%;
    height: 579px;
}

.title-retorno-garantido {
    letter-spacing: -2px;
    font-family: 'Gotham 400', sans-serif;
    font-size: 28px;
    line-height: 31px;
    margin-top: 50px;
    color: #ffffff;
    text-align: center;
    height: 62px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.subtitle-retorno-garantido {
    font-family: "Gotham XLight 500", sans-serif;
    font-size: 20px;
    line-height: 23.5px;
    letter-spacing: -1px;
    color: #ffffff;
    text-align: center;
    width: 289px;
    height: 71px;
    margin: 22px auto;
}

.slide-2 {
    background-color: #FFFFFF;
    border-radius: 10px;
    max-width: 30%;
    padding: 45px 0px;
}

.ellipse {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #333333;
    position: absolute;
    bottom: 60%;
}

.ellipse p {
    font-family: "Gotham", sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 48px;
    letter-spacing: -2px;
    text-align: center;
}

.hr {
    height: 1px;
    background: #ECECEC;
    flex: none;
    order: 3;
    align-self: stretch;
    flex-grow: 0;
    margin-bottom: 16px;
}

.hr-bottom {
    height: 1px;
    background: #ECECEC;
    flex: none;
    order: 3;
    align-self: stretch;
    flex-grow: 0;
    margin-top: 16px;
}

.subtitle-slide-retorno-garantido {
    width: 225px;
}

.subtitle-slide-retorno-garantido p {
    font-family: "Gotham", sans-serif;
    font-size: 18px;
    line-height: 24px;
    align-items: center;
    font-weight: 700;
}

/* END CSS RETORNO GARANTIDO */

/* START CSS ATENDIMENTOS */
.container-atendimentos {
    height: 650px;
    background: #FFFFFF;
    background-image: url('img/background-atendimento.svg');
    background-position-x: unset;
    background-size: cover;
    width: 100%;
    background-position-y: 42%;
}


.title-atendimentos {
    width: 251px;
    padding: 20px 0px;
    margin-left: auto;
    margin-right: auto;
}

.title-atendimentos p {
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 31px;
    letter-spacing: -2px;
    margin-top: 15%;
}

/* END CSS ATENDIMENTOS */

/* START OFERECIMENTOS */

.container-oferecimentos {
    text-align: -webkit-center;
    background-color: #ECECEC;
    padding: 20px 20px;
}

.title-oferecimentos {
    width: 338px;
    height: 62px;
    margin-bottom: 63px;
}

.title-oferecimentos P {
    font-family: 'Gotham';
    font-weight: 400;
    font-size: 28px;
    line-height: 31px;
    letter-spacing: -2px;
    color: #282B2F;
}

.oferecimentos {
    width: 330px;
    text-align: initial;
}

.text-oferecimentos {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5%;
}

.text-oferecimentos p {
    margin-left: 8px;
    font-family: 'Gotham';
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.5px;
}

/* END CSS OFERECIMENTOS */


/* START CSS NOSSOS PARCEIROS */
.container-atendimentos-pc {
    display: none;
}

.container-nossos-parceiros {
    text-align: -webkit-center;
    padding: 20px 20px;
    background-image: url('img/backgroundArrowRed.svg');
    background-repeat: no-repeat;
    background-position-x: unset;
    background-size: cover;
    background-position-y: 42%;
}

.title-nossos-parceiros {
    margin-top: 22px;
    font-family: 'Gotham';
    font-weight: 400;
    font-size: 28px;
    line-height: 52px;
    color: #FFFFFF;
    letter-spacing: -2px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 49px;
}

.text-nosssos-parceiros {
    display: flex;
    align-items: center;
    margin-top: 49px;
    width: 292px;
}

.text-nosssos-parceiros p {
    font-family: 'Gotham';
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    letter-spacing: -2px;
    color: #FFFFFF;
    margin-left: 22px;
    text-align: initial;
}

/* END CSS NOSSOS PARCEIROS */

/* START CSS DUVIDA */

.container-duvida {
    text-align: -webkit-center;
    padding: 20px 20px;
}

.title-duvida {
    width: 262px;
    font-family: 'Gotham';
    font-weight: 400;
    font-size: 28px;
    line-height: 52px;
    letter-spacing: -2px;
    margin-bottom: 40.5px;
    color: #282B2F;
}

.box-duvida {
    margin-bottom: 1%;
}

.pergunta-duvida {
    padding: 16px 40px;
    border: 1px solid #ECECEC;
    display: inline-flex;
    align-items: flex-start;
    cursor: pointer;
    width: 300px;
}

.pergunta-duvida p {
    font-family: 'Gotham';
    text-align: initial;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: #282B2F;
}

.resposta-class {
    padding: 16px 40px;
    background: #F7F7F7;
    align-items: flex-start;
    font-family: 'Gotham';
    font-size: 20px;
    line-height: 26px;
    text-align: initial;
    letter-spacing: -0.5px;
    font-weight: 400;
    width: 300px;
}


.reposta-duvida {
    display: none;
}

.reposta-duvida.active {
    display: block;
}

.reposta-duvida-active {
    display: block;
}

.reposta-duvida-active.desactive {
    display: none;
}

.seta-duvida {
    transform: rotate(180deg);
    transition-duration: 0.3s;
}

.seta-duvida.active {
    transform: rotate(0deg);
    transition-duration: 0.3s;
}

.seta-duvida-active {
    transform: rotate(0deg);
    transition-duration: 0.3s;
}

.seta-duvida-active.desactive {
    transform: rotate(180deg);
    transition-duration: 0.3s;
}

/* END CSS DUVIDA */


/* START CSS AGENDAR ATENDIMENTO */

.container-agendar-atendimento {
    background-color: #ECECEC;
    text-align: -webkit-center;
    margin-top: 4%;
    display: flex;
    justify-content: center;
}

.img-agendar-atendimento img {
    width: 298px;
    height: 198px;
    margin-bottom: 5%;
}

.title-agenda-atendimento {
    width: 329px;
}

.title-agenda-atendimento p {
    font-family: 'Gotham';
    font-weight: 400;
    color: #282B2F;
    font-size: 28px;
    line-height: 31px;
    letter-spacing: -2px;
    text-align: center;
}

.subtitle-agendar-atendimento {
    width: 321px;
}

.subtitle-agendar-atendimento p {
    margin-top: 20px;
    text-align: center;
    font-family: 'Gotham';
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    color: #282B2F;
}

.btn-agendar-atendimento img {
    width: 343px;
    height: 66px;
}

/* END CSS AGENDAR ATENDIMENTO */


/* START CSS FOTTER */

.container-footer {
    background-color: #C71016;
    ;
    padding: 30px 30px;
}

.box-fotter {
    text-align: initial;
    margin: auto;
}

.links {
    display: grid;
}

.links p {
    margin-top: 22px;
    font-family: 'Gotham';
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #ECECEC;
}

.links a {
    text-decoration: none;
    font-family: 'Gotham';
    font-size: 16px;
    margin-top: 8px;
    line-height: 24px;
    color: #ECECEC;
}

.grid2-fotter {
    margin-top: 10%;
}

.title-fotter {
    font-family: 'Gotham';
    font-weight: 700;
    font-size: 20px;
    margin-top: 16px;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: #ECECEC;
}

.phone {
    margin-top: 16px;
    font-family: 'Gotham';
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    color: #ECECEC;
}

.email {
    font-family: 'Gotham';
    font-weight: 400;
    font-size: 16px;
    margin-top: 16px;
    line-height: 24px;
    color: #ECECEC;
}

.img-rede-social {
    margin-top: 7%;
}

.img-rede-social img {
    margin-right: 5px;
}


/* END CSS FOTTER */


/* LAPTOP DE 1024px ATÉ 1338px  */
@media only screen and (min-width: 1190px) and (max-width: 1337px) {

    /* START CSS NAVABAR */

    .nav_right img {
        cursor: pointer;
        width: 183px;
    }

    .contato {
        display: none;
    }

    .title-navbar img {
        width: 224px;
    }

    /* END CSS NAVABAR */

    /* START CSS BANNER-PRINCIPAL */
    .banner {
        padding: 211px 80px;
        align-items: flex-start;
    }

    .text-banner {
        width: 578px;
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -1px;
    }

    .btn-banner button {
        display: none;
    }

    .form-title h1 {
        display: none;
    }

    .subtitle {
        display: none;
    }

    .form {
        bottom: 400%;
        right: 100px;
        position: absolute;
    }

    .loading {
        position: absolute;
        height: 91.3%;
        width: 91.3%;
        left: 20px;
        top: 20px;
    }

    .form-banner {
        background-color: transparent;
        height: 0px;
    }

    .form-submit {
        width: 426px;
    }

    .btn-form {
        width: 286px;
        margin: 0 auto;
    }

    .btn-form-disabled {
        width: 286px;
        margin: 0 auto;
    }

    .checkbox p {
        font-weight: 700;
        font-size: 12px;
    }

    /* START CSS BANNER-PRINCIPAL */


    /* START CSS PARCERIA PRINCIPAL */
    .container-parceiros {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .background-parceiros {
        width: 372px;
        height: 418px;
    }

    .title-parceiros {
        text-align: center;
        width: 100%;
        position: absolute;
        margin-top: 20px;
        align-self: flex-start;
    }

    .subtitle-parceiros {
        margin-top: 20%;
    }

    /* END CSS PARCERIA PRINCIPAL */

    /* START CSS RETORNO GARANTIDO */

    .title-retorno-garantido {
        margin-top: 64px;
        text-align: center;
        width: 100%;
        font-size: 48px;
    }

    .subtitle-retorno-garantido {
        width: 1087px;
        line-height: 52px;
        font-size: 28px;
    }

    .subtitle-slide-retorno-garantido {
        width: 288px;
    }

    /* END CSS RETORNO GARANTIDO */

    /* START CSS ATENDIMENTOS */

    .container-atendimentos {
        display: none;
    }

    .container-atendimentos-pc {
        display: block;
        height: 650px;
        background: #FFFFFF;
        background-image: url('img/background-atendimento.svg');
        background-position-x: unset;
        background-size: cover;
        background-position-y: 42%;
        padding: 45px 10px;
    }

    .title {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .title-atendimentos {
        margin-right: 90px;
    }

    /* END CSS ATENDIMENTO */

    /* START CSS NOSSOS PARCEIROS */
    .container-nossos-parceiros {
        background-position-x: center;
        height: 493px;
    }

    /* START CSS SUCESSO DE VENDAS */

    .title-sucesso-vendas {
        margin-top: 64px;
        text-align: center;
        width: 100%;
        font-size: 48px;
    }

    .subtitle-sucesso-vendas p {
        width: 970px;
        line-height: 52px;
        font-size: 28px;
    }

    /* END CSS SUCESSO DE VENDAS */


    /* START CSS NOSSOS PARCEIROS */

    .title-nossos-parceiros {
        margin-top: 98px;
        font-family: 'Gotham';
        font-weight: 400;
        font-size: 48px;
        line-height: 52px;
        color: #FFFFFF;
        letter-spacing: -2px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .text-nosssos-parceiros {
        display: flex;
        align-items: center;
        width: 878px;
        margin: 23px;
    }

    .text-nosssos-parceiros p {
        font-family: 'Gotham';
        font-weight: 400;
        font-size: 22px;
        line-height: 52px;
        letter-spacing: -2px;
        color: #FFFFFF;
        margin-left: 22px;
        text-align: initial;
    }

    /* END CSS NOSSOS PARCEIROS */

    /* START OFERECIMENTOS */

    .title-oferecimentos {
        width: fit-content;
    }

    .title-oferecimentos p {
        font-size: 48px;
        line-height: 52px;
        letter-spacing: -2px;
    }

    .oferecimentos {
        width: 73%;
        display: inline-flex;
        justify-content: space-evenly
    }


    .text-oferecimentos {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    /* END OFERECIMENTOS */

    /* START CSS DUVIDAS */

    .pergunta-duvida {
        width: 1171px;
        height: 58px;
    }

    .resposta-class {
        width: 1171px;
    }

    /* END CSS AGENDAR DUVIDAS */

    /* START CSS AGENDAR ATENDIMENTO */

    .box-agendar-atendimento {
        width: 73%;
        display: flex;
        justify-content: space-between;
    }

    .img-agendar-atendimento img {
        width: 504px;
        height: 334px;
    }

    .title-agenda-atendimento {
        width: 402px;
    }

    .title-agenda-atendimento p {
        text-align: initial;
        font-size: 30px;
        line-height: 40px;
        letter-spacing: -2px;
    }

    .grid1 {
        margin-top: 3%;
    }

    .grid2 {
        text-align: initial;
        margin-top: 5%;
    }

    .subtitle-agendar-atendimento {
        width: 498px;
    }

    .subtitle-agendar-atendimento p {
        font-size: 25px;
        text-align: initial;
        line-height: 40px;
    }

    .btn-agendar-atendimento img {
        width: 391px;
        margin-top: 4%;
        margin-left: -5%;
    }

    /* END CSS AGENDAR ATENDIMENTO */

    /* START CSS FOTTER */

    .box-fotter {
        width: 73%;
        display: flex;
        justify-content: space-between;
    }

    .grid2-fotter {
        margin: 0;
    }

    /* END CSS FOTTER */

}

/* MONITOR/TELEVISÃO DE NO MINIMO 1338px */
@media only screen and (min-width: 1338px) {

    /* START CSS NAVABAR */
    .nav_right img {
        cursor: pointer;
        width: 183px;
    }

    .contato {
        display: none;
    }

    .title-navbar img {
        width: 224px;
    }

    /* END CSS NAVABAR */

    /* START CSS BANNER-PRINCIPAL */
    .banner {
        padding: 211px 80px;
        height: 675px;
        align-items: flex-start;
    }

    .text-banner {
        width: 578px;
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -1px;
    }

    .btn-banner button {
        display: none;
    }

    .form-title h1 {
        display: none;
    }

    .subtitle {
        display: none;
    }

    .loading {
        position: absolute;
        height: 91.3%;
        width: 91.3%;
        left: 20px;
        top: 20px;
    }

    .form {
        bottom: 400%;
        right: 100px;
        margin-bottom: 5%;
        margin-right: 3%;
        position: absolute;
    }

    .form-banner {
        background-color: transparent;
        height: 0px;
    }

    .form-submit {
        width: 426px;
    }

    .btn-form {
        width: 286px;
        margin: 0 auto;
    }

    .btn-form-disabled {
        width: 286px;
        margin: 0 auto;
    }

    .checkbox p {
        font-weight: 700;
        font-size: 12px;
    }

    /* END CSS BANNER-PRINCIPAL */


    /* START CSS PARCERIA PRINCIPAL */
    .container-parceiros {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .background-parceiros {
        width: 691px;
        height: 764px;
    }

    .background-parceiros img {
        width: 401px;
        height: 401px;
        margin-top: 34%;
        margin-left: 25%;
    }


    .title-parceiros {
        align-self: flex-start;
        text-align: center;
        width: 100%;
        position: absolute;
        font-size: 48px;
    }

    .subtitle-parceiros {
        width: 601px;
        margin-top: 33%;
        line-height: 40px;
    }

    .subtitle-parceiros p {
        font-size: 32px;
        letter-spacing: 0px;
    }

    .btn-parceiros {
        margin-right: 14%;
        padding: 13px 125px;
    }

    .div-btn {
        margin-top: 75px;
    }


    /* END CSS PARCERIA PRINCIPAL */

    /* START CSS RETORNO GARANTIDO */

    .title-retorno-garantido {
        margin-top: 64px;
        text-align: center;
        width: 100%;
        font-size: 48px;
    }

    .subtitle-retorno-garantido {
        width: 1087px;
        line-height: 52px;
        font-size: 28px;
    }

    .subtitle-slide-retorno-garantido {
        width: 288px;
    }

    /* END CSS RETORNO GARANTIDO */

    /* START CSS ATENDIMENTOS */

    .container-atendimentos {
        display: none;
    }

    .container-atendimentos-pc {
        display: block;
        height: 650px;
        background: #FFFFFF;
        background-image: url('img/background-atendimento.svg');
        background-position-x: unset;
        background-size: cover;
        background-position-y: 42%;
        padding: 45px 0px;
    }

    .title {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .title-atendimentos {
        margin-right: 90px;
    }

    /* END CSS ATENDIMENTO */

    /* START CSS NOSSOS PARCEIROS */
    .container-nossos-parceiros {
        background-position-x: center;
        height: 493px;
    }

    .title-nossos-parceiros {
        margin-top: 98px;
        font-family: 'Gotham';
        font-weight: 400;
        font-size: 48px;
        line-height: 52px;
        color: #FFFFFF;
        letter-spacing: -2px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .text-nosssos-parceiros {
        display: flex;
        align-items: center;
        width: 878px;
        margin: 23px;
    }

    .text-nosssos-parceiros p {
        font-family: 'Gotham';
        font-weight: 400;
        font-size: 22px;
        letter-spacing: -1px;
        color: #FFFFFF;
        margin-left: 22px;
        text-align: initial;
    }

    /* END CSS NOSSOS PARCEIROS */

    /* START CSS SUCESSO DE VENDAS */

    .title-sucesso-vendas {
        margin-top: 64px;
        text-align: center;
        width: 100%;
        font-size: 48px;
    }

    .subtitle-sucesso-vendas p {
        width: 970px;
        line-height: 52px;
        font-size: 28px;
    }

    /* END CSS SUCESSO DE VENDAS */

    /* START OFERECIMENTOS */

    .title-oferecimentos {
        width: fit-content;
    }

    .title-oferecimentos p {
        font-size: 48px;
        line-height: 52px;
        letter-spacing: -2px;
    }

    .oferecimentos {
        width: 73%;
        display: inline-flex;
        justify-content: space-evenly
    }


    .text-oferecimentos {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    /* END OFERECIMENTOS */

    /* START CSS DUVIDAS */

    .title-duvida {
        width: 475px;
    }

    .title-duvida p {
        font-size: 48px;
        line-height: 52px;
        letter-spacing: -2px;
    }

    .pergunta-duvida {
        width: 1171px;
        height: 58px;
    }

    .resposta-class {
        width: 1171px;
    }

    /* END CSS AGENDAR DUVIDAS */

    /* START CSS AGENDAR ATENDIMENTO */

    .box-agendar-atendimento {
        width: 73%;
        display: flex;
        justify-content: space-between;
    }

    .img-agendar-atendimento img {
        width: 504px;
        height: 334px;
    }

    .title-agenda-atendimento {
        width: 402px;
    }

    .title-agenda-atendimento p {
        text-align: initial;
        font-size: 30px;
        line-height: 40px;
        letter-spacing: -2px;
    }

    .grid1 {
        margin-top: 3%;
    }

    .grid2 {
        text-align: initial;
        margin-top: 5%;
    }

    .subtitle-agendar-atendimento {
        width: 498px;
    }

    .subtitle-agendar-atendimento p {
        font-size: 25px;
        text-align: initial;
        line-height: 40px;
    }

    .btn-agendar-atendimento img {
        width: 391px;
        margin-top: 4%;
        margin-left: -5%;
    }

    /* END CSS AGENDAR ATENDIMENTO */

    /* START CSS FOTTER */

    .box-fotter {
        width: 73%;
        display: flex;
        justify-content: space-between;
    }

    .grid2-fotter {
        margin: 0;
    }

    /* END CSS FOTTER */
}