
@media (max-width: 767px) {
    .table-recursos h3 {
        font-size: 16px;
    }
    .table-responsive table {
        font-size: 13px;
        min-width: 400px;
    }
}

/* remover o botão do radio */
input[type="radio"] {
    position: absolute;
    opacity: 0;
}
input[type=range] {
    -webkit-appearance: none; /* Para remover o estilo padrão do Chrome/Safari */
    width: 100%;
    height: 8px;
    background: #ddd;
    outline: none;
    opacity: 0.9;
    transition: opacity .2s;
}


/* Estilo para o track (trilha) do range */
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    animate: 0.2s;
    background: #ddd;
    border-radius: 4px;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    animate: 0.2s;
    background: #ddd;
    border-radius: 4px;
}

        /* Estilo para a bolinha (thumb) no Chrome/Safari */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Para remover o estilo padrão */
    appearance: none;
    width: 19px;
    height: 19px;
    background: #004993; /* Cor da bolinha */
    cursor: pointer;
    border-radius: 50%;
    margin-top: -5.5px; /* Ajuste para alinhar com a barra */
}

/* Estilo para a bolinha (thumb) no Firefox */
input[type=range]::-moz-range-thumb {
    width: 19px;
    height: 19px;
    background: #004993; /* Cor da bolinha */
    cursor: pointer;
    border-radius: 50%;
    margin-top: -5.5px; /* Ajuste para alinhar com a barra */
}

/* Estilo para a bolinha (thumb) no Internet Explorer */
input[type=range]::-ms-thumb {
    width: 19px;
    height: 19px;
    background: #004993; /* Cor da bolinha */
    cursor: pointer;
    border-radius: 50%;
    margin-top: 0; /* Ajuste para alinhar com a barra */
}
.sombra{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    margin-top: -16px;
    cursor: default;
}
.sombra li{
    background-color: #ddd;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.sombra1{
    margin-left: -3px;
}
.sombra3{
    margin-right: -3px;
}
.check-css {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 17px;
    height: 17px;
    border: 2px solid #004993;
    border-radius: 100px;
    background-color: #004993;
    margin-bottom: 0px;
}
.check-css::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 1.9px;
    top: -2px;
    width: 5px;
    height: 8px;
    border-color: white;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(45deg)
}

:root {
    --primary-color: #004993;

    --text-color: #333;
    --text-color-checked: #004993;

    --radio-icon-field: 48px;
    --radio-icon-size: 16px;
    --gap: 0px;
}
.option{
    display:inline;
    padding: var(--gap);
}
/* Custom Radio Buttons */
.option input[type="radio"] ~ label {
    --radio-icon-border: 2px;
    --radio-icon-inner: calc(var(--radio-icon-size) - 4 * var(--radio-icon-border));
    --radio-target-field: calc((var(--radio-icon-field) - var(--radio-icon-size)) / 2);

    cursor: pointer;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.4;
}

.option input[type="radio"] ~ label::before,
.option input[type="radio"] ~ label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.option input[type="radio"] ~ label::before {
    left: 0;
    width: var(--radio-icon-size);
    height: var(--radio-icon-size);
    border: var(--radio-icon-border) solid var(--primary-color);
}

.option input[type="radio"] ~ label:hover::before{
    box-shadow: 0px 0px 0px var(--radio-target-field) rgba(0, 0, 0, 0.1);
}

.option input[type="radio"] ~ label::after {
    left: calc(var(--radio-icon-border) * 2);
    width: var(--radio-icon-inner);
    height: var(--radio-icon-inner);
    opacity: 0;
    transform: translateY(-50%) scale(0);
    background-color: var(--primary-color);
}

.option input[type="radio"]:checked + label::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.option input[type="radio"]:checked ~ label {
    color: var(--text-color-checked);
}

td{
    border: 1px solid #ddd;
    border-collapse: collapse;
}

tbody tr td{
    padding: 15px;
}

thead tr td{
    padding: 15px;
}

table{
    margin-top: 50px ;
}

.box-pricing-index{
    padding: 20px 15px; 
    text-align:center
}

.box-pricing-index p {
    font-size:14px; 
    margin-bottom: 0px;
}

.envio{
    font-size: 17px !important; 
    margin: 25px 0px !important; 
    margin-top:30px !important;
}

.envio strong{
    color:#004993 !important;
}

.box-pricing-index .cobrado{
    display: block;
    font-size:12px;
}

.bg-pricing{
    border: solid 1px #ddd; 
    border-radius: 5px; 
    padding:40px 25px; 
    background: white;
}

.most-popular{
    width:100%; 
    background-color: #F4B545; 
    color: white; 
    font-weight:500; 
    text-align: center; 
    padding: 10px; 
    font-size: 20px;
    text-shadow: none;
    border-radius: 5px 5px 0px 0px;
}

.box-pricing-index .titulo-plan{
    margin-bottom: 40px;
}

.box-pricing-index .valor{
    display: inline-block;
    font-weight:700; 
    margin:0px; 
    font-size:45px;
    color: #004993;
}
.box-pricing-index a{
    margin-top: 10px;
    display:inline-block;
    font-size:14px;
}

.highlight{
    border-radius: 0px 0px 5px 5px; 
    border: solid 6px #f4b545; 
    border-top: none; 
    padding:60px 25px;
}

.asterisco{
    font-size: 20px;
    vertical-align: top;
}

.mass-emailer{
    padding: 0px 15px;
    margin-bottom: 50px;
}

.mass-emailer li{
    margin-bottom: 10px;
}

.mass-emailer ul{
    padding: 0px;
    list-style: none;
}

.mass-emailer h4{
    margin-bottom: 10px;
    font-size: 15px;
    color: #00bfff;
}

.mass-emailer h3{
    margin-bottom: 25px;
    color: #004993;
}

.button-mass-emailer{
    margin-top: 10px;
    padding-left: 50px;
}

.button-mass-emailer button{
    background-color:#F4B545 !important;
    border-color: #F4B545 !important;
}

.choose-plan{
    padding: 15px;
}


.choose-plan .valor{
    display: inline-block; 
    margin:0px;
    font-size: 25px;
    color: #004993;
}

.choose-plan .span-valor{
    display: block;
    margin-top:30px; 
    margin-bottom:25px;
}

.table-recursos{
    padding-left: 15px; 
    padding-right:15px;
}

.table-recursos table tbody tr td i{
    float:none; font-size:23px; color:#00bfff; margin-bottom:0px;
}

.table-recursos .lateral-menu{
    text-align: left;
    font-weight: 600;
    color: #333;
}

.choose-plan .titulo{
    margin-bottom: 30px;
}

.plan-feature {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #004993;
    margin-bottom: 8px;
    gap: 8px;
}
.plan-feature i {
    color: #F4B545;
    font-size: 18px;
}

.btn-margin-top {
    margin-top: 3rem !important;
}

/* Estilos para a tabela responsiva */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}
.table-responsive table {
    min-width: 600px; 
}

/* Tooltip container */
.tooltip2 {
    display: inline-block;

    /* If you want dots under the hoverable text */
    cursor: pointer;
}

.tooltip2:hover{
    color:#999;
}

/* Tooltip text */
.tooltip2 .tooltiptext2 {
    visibility: hidden;
    width: 220px;
    background-color: #004993;
    color: #fff;
    text-align: center;
    padding: 7px 10px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 12px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    margin:-30px 0px 0px 0px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2:hover .tooltiptext2 {
    visibility: visible;
    text-shadow: none;
}

.tooltip2 i{
    color: #aaa !important; 
    font-size: 16px !important; 
    cursor: pointer !important;
}

/*  estilo do titulo para a page index */
.highlight-title {
    background-color: #F4B545;
    padding: 7px 10px;
    color: #FFF;
    text-shadow: none;
    display: inline-block;
    border-radius: 4px;
    font-weight: bold;
    word-break: break-word;
    max-width: 100%;
}