@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    background-color: #F8F8F8;
}

.coluna-imagem {
    background-size: contain;
    background-repeat: no-repeat;
    /* 100% da altura da viewport */
}

.imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que a imagem cobrirá completamente o espaço disponível */
}

.form-container {
    width: 80%;
}

.formulario {
    width: 80%;
    background-color: #F8F8F8;
    /* Cor de fundo para a coluna da direita */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.etapa {
    display: none;
}

.botoes-etapa {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cta {
    width: 100%;
    background-color: #2716BF !important;
    color: #fff;
    border-radius: 8px;
}

.btn-voltar {
    /* margin-left: -437px !important; */
    background-color: #2716BF !important;
    color: #fff;
    width: 100px;
}

.btn.cta:hover {
    color: #fff;
}

.card-title {
    font-weight: 700;
    color: #211B93;
}

.form-check>* {
    cursor: pointer;
    /* Cor de fundo ao passar o mouse */
}

@media screen and (max-width: 767px) {
    .btn-voltar {
        /* margin-left: -279px !important; */
    }

    .form-container {
        width: 100%;
    }

    .coluna-imagem {
        background-size: contain;
        height: 490px;
    }

    .formulario {
        width: 100%;
        margin-top: 0em;
        margin-bottom: 2em;
    }
}

input {
    width: auto !important;
    height: 60px !important;
    border-radius: 15px;
}

select {
    width: auto !important;
    height: 60px !important;
    border-radius: 15px;
}

.showMobile {
    display: none !important;
}

.hideMobile {
    display: block !important;
}

@media only screen and (min-width: 767px) {
    .margin-desktop {
        margin-top: 10rem !important;
    }
}


@media only screen and (max-width: 767px) {
    .showMobile {
        display: block !important;
    }

    .hideMobile {
        display: none !important;
    }

    .showMobile.col-12,
    .hideMobile:not(.col-12) {
        display: none !important;
    }

    .text-start {
        text-align: center !important;
        margin-top: 2;
    }

    .text-start img {
        text-align: center !important;
        margin-top: 2rem;
    }

    .margin-mobile {
        margin-top: 50px;
    }

    .margin-mobile-back {
        margin-top: -400px;
    }
}