* {
    font-family: 'Red Hat Display';
    margin: 0;
}


.formulario {
    display: flex;
}

#formPricing, #formEspecialista {
    flex-direction: column;
    gap: 24px;
}

@media(max-width:768px){
    .formulario {
        display: flex;
        flex-direction: column;
    }
}

#formPricing, #formEspecialista {
    background-color: #f1f2f2;
    padding: 48px;
    width: 75%;
    border-radius: 16px 0px 0px 16px;
}

.submitForm {
    width: 25%;
    background-color: #1d2946 !important;
    border-radius: 0px 16px 16px 0px;
}

.box_modulos, .box_solucoes {
    background-color: #fff;
    padding: 24px;
    border-radius: 24px;
}

.headerModulo, .headerSolucoes {
    display: flex;
    justify-content: space-between;
}

.tituloModulo, .tituloSolucoes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

span.nomeModulo {
    background: #6694D5;
    color: #fff;
    padding: 7px 12px;
    border-radius: 50px;
}

.resumoModulo, .resumoSolucoes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resumoModulo h2, .resumoSolucoes h2 {
    font-size: 24px;
    color: #1d2946;
    line-height: 28px;
    margin: 0;
    padding: 0;
}

.nomeSolucoes{
    color: #1d2946;
    font-size: 24px;
    font-weight: 700;
}

.resumoModulo p, .resumoSolucoes p  {
    color: #4A546B;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.box_modulos section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.row label {
    font-size: 14px;
    line-height: 21px;
    color: #4A546B;
    font-weight: 500;
}

.submitForm {
    padding: 48px;
}

/* Aparencia Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #0055b8;
}

input:focus+.slider {
    box-shadow: 0 0 1px #0055b8;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.submitForm{
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.conteudoSubmit {
    color: #fff;
}

.solucoes, .funcionalidadesadicionais {
    color: #fff;
}

.tituloSolucoes {
    color: #B5B7C3;
}

.itemSolucoes, .itemModulos{
    display: flex;
    gap: 5px;
    padding: 5px 0;
}


#botaoSubmit {
    padding: 12px 24px;
    background-color: #0055b8;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
}

.funcionalidadesModulo {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.funcionalidadesAdicionais {
    font-size: 14px;
    line-height: 21px;
    color: #71778B;
    font-weight: 500;
}

.stickyHeader {
    position: sticky;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.formCliente{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.formCliente input, .formCliente select{
    padding: 16px;
    border-radius: 8px;
    border: 0px;
}

.submit{
    background-color: #fce300;
    color: #1d2946;
    border: 0;
    padding: 12px 24px;
    border-radius: 50px;
}

/* Tipografia botao */

.submit{
    font-size: 18px;
    font-weight: 600;
}

.tituloFormulario{
    font-size: 42px;
    font-weight: 600;
    color: #1d2946;
    line-height: 42px;
    margin: 0;
    padding: 0;
}




.subtituloFormulario{
    font-size: 18px;
    color: #4A546B;
    font-weight: 500;
    line-height: 27px;
}