
/* **************************************** */
/* Configurações para os cards */
/* **************************************** */
.card-header {
    display: flex;
    justify-content: space-around;
}

.card-header .indice {
    width: 45%;
    border-bottom: 10px solid #c3c3c3;
    text-align: left;
    font-weight: 500;
}

.card-header .indice span{
    font-size: 14px;
}

.card-header .indice:hover,
.indice-selecionado {
    border-bottom: 10px solid var(--color-1) !important;
    font-weight: bold !important;
    cursor: pointer;
}


.row-parcelas {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.row-parcelas .parcela {
    border: 1px solid var(--color-1);
    border-radius: 10px;
    font-weight: 500;
    margin-left: 5px;
    padding: 0;
    font-size: 14px;
    width: 42px;
    height: 30px;
    line-height: inherit;
    align-items: center;
    justify-content: center;
    display: flex;
}

.row-parcelas .parcela:hover,
.parcela-selecionada {
    background: var(--color-1);
    color: #fff;
    cursor: pointer;
}


.row-anos {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.row-anos .ano {
    border: 1px solid var(--color-1);
    border-radius: 10px;
    font-weight: 500;
    margin-left: 10px;
    padding: 15px;
    font-size: 14px;
    width: auto;
    height: 44px;
    line-height: inherit;
    align-items: center;
    justify-content: center;
    display: flex;
}

.row-anos .ano:hover,
.ano-selecionado {
    background: var(--color-1);
    color: #fff;
    cursor: pointer;
    font-weight: 800 !important;
}


.card-footer a {
    padding: 10px 0px 10px 0px;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.text-muted{
    font-size: 12px;
    text-align: center;
    opacity: 0.7;
}

.card-footer .btn-simular-credito-email {
    background-color: var(--color-1);
    color: var(--color-3);
    border: 2px solid var(--color-1);
}

.card-footer .btn-simular-credito-email:hover {
    background-color: var(--color-3);
    border: 2px solid var(--color-1);
    color: var(--color-5);
}

.card-footer .btn-simular-credito-whatsapp {
    background-color: transparent;
    color: var(--color-4);
    border: 1px solid var(--color-whatsapp);
}

.card-footer .btn-simular-credito-whatsapp:hover {
    background-color: var(--color-4);
    border: 1px solid var(--color-whatsapp);
    color: var(--color-3);
}
/* **************************************** */
/* Fim de Configurações para os cards */
/* **************************************** */


/* **************************************** */
/* Card Simulador */
/* **************************************** */
.card-simulador {
    border: 2px solid var(--color-1);
    border-radius: 15px;
    width: 400px;
    height: auto;
    padding: 15px;
    background: var(--color-3);
    color: var(--color-4);
}
@media (max-width: 768px) {
    .card-simulador {
        width: auto;       
    }   
}
.card-simulador .card-row {
    display: block;
    text-align: center;
}
.card-simulador input {
    font-size: 2rem;
    font-weight: 900;
    width: 100%;
    text-align: center;
    border: 0px;
    box-shadow: none;
    background: transparent;
}
.card-simulador input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--color-1);
    /* Cor do thumb */
    border-radius: 50%;
    cursor: pointer;
}
.card-simulador input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--color-1);
    /* Cor do thumb */
    border-radius: 50%;
    cursor: pointer;
}
.card-simulador input[type="range"]::-ms-thumb {
    width: 18px;
    height: 18px;
    background: var(--color-1);
    /* Cor do thumb */
    border-radius: 50%;
    cursor: pointer;
}
/* Ajustando o estilo do range */
.card-simulador input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: transparent;
    outline: none;
    /* opacity: 0.7; */
    /* transition: opacity .2s; */
}
.card-simulador input[type="range"]:hover {
    opacity: 1;
}

/* **************************************** */
/* Fim Card Simulador */
/* **************************************** */


/* **************************************** */
/* Card Dados de Contato */
/* **************************************** */
.card-dados-contato {
    border: 2px solid var(--color-1);
    border-radius: 15px;
    width: 400px;
    height: auto;
    padding: 30px 30px 30px 30px;
    background: var(--color-3);
    color: var(--color-4);
}
@media (max-width: 768px) {
    .card-dados-contato {
        width: 100%;       
    }
}

.card-dados-contato .card-row {
    display: block;
    text-align: left;
}

/* .card-dados-contato input {
    width: 100%;
} */

.card-dados-contato .link-voltar:hover{
    font-weight: bold !important;
    cursor: pointer;
}
/* **************************************** */
/* Fim de Card Dados de Contato */
/* **************************************** */
