:root {
    --primary-light: #f2d157 !important;
    --primary: #fbdb5b !important;
    --primary-dark: #b39747 !important;

    --font: #d3d5dc !important;
}




/* -------------------------------- ELEMENTOS HTML -------------------------------- */

body {
    background-image: url('../../../assets/media/misc/bg_1.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;  /* Garante que a imagem ocupe todo o fundo */
    background-position: center;  /* Centraliza a imagem no fundo */
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    padding: 10rem 0rem;
}

html, body {
    height: 100%;
    width: 100%;
}



main,
header {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}






/* -------------------------------- CLASSES PADRÃO -------------------------------- */
.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-circulo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.625rem;
    background-color: #cdd0d6;
    border-radius: 100%;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    transition: 0.2s all;
}

.item-circulo:hover {
    filter: brightness(0.9);
}

.item-circulo h5 {
    margin: 0;
}

.item-circulo-ativo {
    background-color: #4f5dc7;
    color: #fff;
}

.item-circulo-check {
    background-color: #247c34;
    color: #fff;
}


.div-plano {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.plano {
    margin-top: 1.125rem;
    color: #fff;
}

.plano-head {
    background-color: #325ea9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top-left-radius: 0.313rem;
    border-top-right-radius: 0.313rem;
}

.plano-head-ativo {
    background-color: #c03040;
}

.plano-head .plano-title {
    font-size: 1.75rem;
    font-weight: 600;
}

.plano-body {
    background-color: rgba(50, 94, 169, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.35rem 0;
    border-bottom-left-radius: 0.313rem;
    border-bottom-right-radius: 0.313rem;
}

.plano-body-ativo {
    background-color:rgb(208, 215, 250);
}

.plano-dinheiro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.plano-dinheiro-pagamento {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.125rem;
    border-radius: 5px;
    width: 80%;
}

.plano-valor-tipo {
    font-size: 1.125rem;
    position: relative;
    top: 1.1rem;
    color: #555b64;
    font-weight: 500;
}

.plano-valor-rs {
    font-size: 1.75rem;
    position: relative;
    top: -0.625rem;
    font-weight: 500;
}

.plano-valor {
    font-size: 4.25rem;
    font-weight: 600;
}

.plano-valor-txt {
    font-size: 2.5rem;
    position: relative;
    top: -1.5rem;
    font-weight: 500;
}

.plano-item-lista {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plano-item {
    border-bottom: 2px solid #fff;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.425rem;
}

.plano-item h6 {
    font-weight: 700;
}

.plano-btn-compra {
    background-color: #247c34;
    color: #fff;
    font-weight: 600;
}

.plano-btn-detalhe {
    margin-bottom: 0.125rem;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.1s;
}

.plano-btn-detalhe:hover {
    color: lightblue;
}

.plano-btn-compra:hover {
    background-color: #2b6435;
    color: #fff;
}

.dependente {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 5px;
    padding: 1.405rem;
    text-wrap: nowrap;
    transition: all 0.2s;
    font-size: 1.25rem;
    border: 1px solid #325ea9;
    margin-right: 0.625rem;
    cursor: pointer;
}

.dependente h4 {
    margin-bottom: 0;
    margin-left: 0.625rem;
}

.dependente:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.14), 0 6px 20px 0 rgba(0, 0, 0, 0.08);
}

#data_nascimento_dependente:disabled {
    background-color: #d3d3d3;
}

.div-pagamento {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.div-pagamento:first-of-type {
    border-right: 1px solid #d3d3d3;
}

#div_btn_pagamento,
#div_cartao_credito {
    border-left: 1px solid #d3d3d3;
}

.preco-especifico {
    color: #6a6c75;
}

.btn-pagamento {
    background: transparent;
    border-radius: 5px;
    padding: 1.406rem 4.375rem;
    text-wrap: nowrap;
    margin-right: 10px;
    transition: all 0.2s;
    font-size: 1.25rem;
    border: 1px solid #8b8d94;
    width: 80%;
}

.btn-pagamento:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}

#btn_volta_div_cartao {
    cursor: pointer;
    transition: all 0.2s;
}

#btn_volta_div_cartao:hover {
    filter: brightness(1.3);
}



/* -------------------------------- FONTE -------------------------------- */
.detalhes {
    filter: brightness(1.4);
}

.fa-circle-check {
    color: #7afb5c;
}




/* -------------------------------- BOOTSTRAP -------------------------------- */
.card-header,
.card-footer {
    background-color: #fff !important;
}

.card-body-custom {
    height: 75vh;
    overflow-y: auto;
}

.form-control {
    border-color: #cdd0d6 !important;
}

.form-control:focus {
    border-color: #9aabff !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08), 0 6px 10px 0 rgba(0, 0, 0, 0.05) !important;
}

.is-invalid {
    border-color: #ff0000 !important;
}






/* -------------------------------- RESPONSIVIDADE -------------------------------- */

/* SM */
@media screen and (max-width: 575px) {
    .nav {
        justify-content: space-between;
    }

    .nav-item h5 {
        font-size: 1rem;
    }

    .item-circulo {
        width: 2rem;
        height: 2rem;
    }

    .dependente {
        font-size: 1rem;
        padding: 0.8rem;
        margin-right: 0.5rem;
    }

    .dependente h4 {
        font-size: 1.1rem;
    }

    .card-title {
        font-size: 1.5rem;
    }
}


/* MD */
@media screen and (max-width: 767px) {
    .plano-dinheiro-pagamento {
        width: 100%;
    }

    .plano-valor-tipo {
        font-size: 0.9rem;
    }

    .plano-valor-rs {
        font-size: 1.45rem;
    }

    .plano-valor {
        font-size: 3.65rem;
    }

    .plano-valor-txt {
        font-size: 1.45rem;
    }

    .div-pagamento:first-of-type {
        border-right: none;
        border-bottom: 1px solid #d3d3d3;
    }

    #div_btn_pagamento,
    #div_cartao_credito {
        border-left: none;
        border-top: 1px solid #d3d3d3;
    }
}

/* LG */
@media screen and (min-width: 768px) and (max-width: 1023px) {}

/* XL */
@media screen and (min-width: 1024px) {}
