:root {
    --layer1: 100;
    --layer2: 200;
    --layer3: 300;
    --layer4: 400;
    --layer5: 500;
    --layer6: 600;
    --layer7: 700;
    --layer8: 800;
    --layer9: 900;
    --layer10: 1000;
    --corPreto: #000;
    --corBranco: #FFF;
    --corCinza: var(--corCinza300);
    --corCinza100: #F1F1F2;
    --corCinza200: #F1F5F9;
    --corCinza300: #F3F3F3;
    --corCinza400: #D7DCE5;
    --corCinza500: #BCC4D2;
    --corCinza600: #666666;
    --corCinza700: #333333;
    --corPrimaria: #36A9CA;
    --corPrimaria70: rgba(60, 32, 136, 0.7);
    --corSecundaria: #00F6FF
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth
}

body {
    position: relative;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
    margin: 0
}

img,
svg {
    display: block
}

.hidden {
    display: none !important
}

.svg {
    display: block
}

.svg svg {
    display: block;
    position: relative
}

.svg--width svg {
    width: 100%
}

.svg--height svg {
    height: 100%
}

.wrapper {
    position: relative;
    width: calc(100% - 80px);
    max-width: 1160px;
    margin: 0 auto;
    box-sizing: border-box
}

@media only screen and (max-width: 1200px) {
    .wrapper {
        padding: 0 20px;
        width: 100%
    }
}

.banner-hero {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden
}

.banner-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.banner-hero__mobile {
    display: none
}

@media screen and (max-width: 992px) {
    .banner-hero {
        height: 200px
    }

    .banner-hero__desktop {
        display: block
    }

    .banner-hero__mobile {
        display: block
    }
}

.section.section-formulario {
    overflow: hidden;
    margin: 0;
    padding: 48px 0;
    box-sizing: border-box
}

.section-formulario__content .section__title {
    color: #192a6b;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 16px 0
}

.section-formulario__content .section__lead,
.section-formulario__content .section__lead p {
    color: #48536c;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8em
}

.formulario__content {
    width: 100%;
    margin: 58px auto 0px auto;
    position: relative
}

.form-inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 15px;
    margin-bottom: 30px
}

.group-input {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    position: relative
}

.group-input--w-full {
    width: 100%
}

.group-input--w-25 {
    width: calc(25% - 10px)
}

.group-input--w-33 {
    width: calc(33% - 10px)
}

.group-input--w-75 {
    width: calc(75% - 10px)
}

.group-input label {
    display: block;
    color: #102d75;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 4px
}

.group-input label span {
    color: #ff2c35
}

.group-input__fields {
    display: grid;
    grid: auto/2fr 1fr;
    grid-gap: 8px
}

.group-input input,
.group-input select,
.group-input textarea {
    display: flex;
    padding: 20px 12px 20px 16px;
    align-items: center;
    height: 64px;
    border-radius: 4px;
    background: #f3f5f6;
    border: 1px solid #f3f5f6;
    color: #9ba2b0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    box-sizing: border-box
}

.group-input input::placeholder,
.group-input select,
.group-input textarea::placeholder {
    color: #9fa1a7
}

.group-input input:focus,
.group-input select:focus,
.group-input textarea:focus {
    outline-color: #25cc9f
}

.group-input input {
    width: 100%
}

input:checked {
    background-color: #000
}

.group-input select {
    background-image: url("../img/ic-arrow-down.svg");
    background-position-y: center;
    background-repeat: no-repeat;
    background-position-x: 98%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 25px;
    width: 100%;
    cursor: pointer
}

.group-input select::-ms-expand {
    display: none
}

.checkLGPD {
    text-align: center;
    position: relative;
    width: 420px;
    margin: 0 auto 10px auto
}

.checkLGPD input[type=checkbox] {
    display: flex;
    width: 16px;
    height: 16px;
    padding: 4px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 2px;
    border: 1px solid #102d75
}

.checkLGPD .txt-termos {
    margin: 0;
    padding-left: 5px;
    line-height: 13px;
    text-align: left;
    color: #102d75;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em
}

.checkLGPD .txt-termos span.openTerm {
    display: inline-block;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font
}

.checkLGPD .txt-termos .color-red {
    color: #ff2c37
}

.checkLGPD {
    display: flex;
    align-items: center;
    padding: 20px 10px 0;
    justify-content: center;
    overflow: hidden
}

.txt-termos span {
    cursor: pointer
}

.textLGPD {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all ease .4s;
    pointer-events: none
}

.textLGPD>p {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    font-size: 15px;
    color: #fff;
    background: rgba(60, 73, 90, .95);
    width: 100%;
    height: auto;
    padding: 50px 30px 30px;
    z-index: -1;
    transition: all ease .4s;
    box-sizing: border-box
}

.textLGPD.termoAberto {
    pointer-events: auto !important;
    width: 100%
}

.textLGPD.termoAberto p {
    opacity: 1;
    z-index: 2
}

.textLGPD>p a {
    color: #fff
}

.fechar-termo {
    display: block;
    position: absolute;
    color: #fff;
    right: 20px;
    top: 20px;
    cursor: pointer
}

#msgLgpd {
    max-width: 400px;
    margin: 0 auto
}

.notify-error {
    font-size: 12px;
    padding: 4px 8px;
    font-style: italic;
    background: #fff1f0;
    border-radius: 0 0 8px 8px;
    margin-top: -2px;
    color: #712017
}

.formulario__content .formulario-content__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
    width: 100%
}

.button-submit-form {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    border-radius: 4px;
    background: #1d804c;
    width: 220px;
    height: 52px;
    padding: 0 24px;
    transition: .3s ease all;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em
}

.button-submit-form:hover {
    background-color: #25cc9f
}

.inform-campos {
    color: #102d75;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.2em;
    text-align: center;
    margin-top: 20px
}

.inform-campos .color-red {
    color: #ff2c37
}

@media only screen and (max-width: 768px) {
    .section-formulario__content {
        padding: 0
    }

    .section-formulario__content .section__title {
        font-size: 25px;
        line-height: 30px
    }

    .group-input {
        width: 100%
    }

    .checkLGPD {
        padding: 0;
        width: 100%
    }

    .formulario-footer-box__text {
        padding: 20px
    }

    .formulario-footer-box__text p {
        font-size: 22px;
        line-height: 26px
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    z-index: -99;
    opacity: 0;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center
}

.modal.modal-open {
    animation: slideIn .6s ease-in-out forwards;
    z-index: 9999
}

.modal.modal-open .modal-formulario-sucesso__icone-sucesso svg {
    animation: slideIn .6s ease-in-out forwards;
    animation-delay: 1s
}

.modal.modal-open .modal-formulario-sucesso__title {
    animation: slideIn .2s ease-in-out forwards;
    animation-delay: .4s
}

.modal-formulario-sucesso__wrapper {
    width: 560px;
    height: 500px;
    max-height: calc(100vh - 200px);
    max-width: calc(100vh - 30px);
    position: relative
}

.modal-formulario-sucesso__action {
    position: absolute;
    top: -40px;
    right: 0px;
    cursor: pointer;
    z-index: 100
}

.modal-formulario-sucesso__close {
    cursor: pointer;
    background: rgba(0, 0, 0, 0);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.modal-formulario-sucesso__container {
    position: relative;
    width: 100%;
    height: 100%
}

.modal-formulario-successo__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center
}

.modal-formulario-sucesso__content {
    position: relative;
    z-index: 2;
    padding-top: 200px;
    max-width: 320px;
    margin: 0 auto
}

.modal-formulario-sucesso__title {
    opacity: 0
}

.modal-formulario-sucesso__title h1 {
    text-align: center;
    margin: 0;
    color: #1d804c;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2em
}

.modal-formulario-sucesso__icone-sucesso {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 104px;
    height: 104px;
    margin: 52px auto 0 auto;
    border: 2px solid #1d804c;
    border-radius: 50%
}

.modal-formulario-sucesso__icone-sucesso svg {
    display: block;
    width: 49px;
    height: 38px;
    opacity: 0
}

@keyframes slideIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}