html {
    background-color: #fff;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: #292b2c;
    margin: auto;
    min-height: 100vh;
    position: relative;
}
.container {
    width: 100%;
    max-width: 1200px; /* Pode ajustar o valor conforme desejar */
    margin: 0 auto; /* Centraliza o conteúdo */
    padding: 0 15px; /* Adiciona espaçamento interno */
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
[class*='col-'] {
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%; /* Tamanho padrão, ocupando 100% */
    max-width: 100%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
@media (max-width: 575px) {
    .col-1 {
        flex: 0 0 8.33%;
        max-width: 8.33%;
    }
    .col-2 {
        flex: 0 0 16.66%;
        max-width: 16.66%;
    }
    .col-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .col-5 {
        flex: 0 0 41.66%;
        max-width: 41.66%;
    }
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-7 {
        flex: 0 0 58.33%;
        max-width: 58.33%;
    }
    .col-8 {
        flex: 0 0 66.66%;
        max-width: 66.66%;
    }
    .col-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-10 {
        flex: 0 0 83.33%;
        max-width: 83.33%;
    }
    .col-11 {
        flex: 0 0 91.66%;
        max-width: 91.66%;
    }
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Colunas para telas pequenas (>= 576px) */
@media (min-width: 576px) {
    .col-sm-1 {
        flex: 0 0 8.33%;
        max-width: 8.33%;
    }
    .col-sm-2 {
        flex: 0 0 16.66%;
        max-width: 16.66%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .col-sm-5 {
        flex: 0 0 41.66%;
        max-width: 41.66%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 58.33%;
        max-width: 58.33%;
    }
    .col-sm-8 {
        flex: 0 0 66.66%;
        max-width: 66.66%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 83.33%;
        max-width: 83.33%;
    }
    .col-sm-11 {
        flex: 0 0 91.66%;
        max-width: 91.66%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Colunas para telas médias (>= 768px) */
@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 8.33%;
        max-width: 8.33%;
    }
    .col-md-2 {
        flex: 0 0 16.66%;
        max-width: 16.66%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .col-md-5 {
        flex: 0 0 41.66%;
        max-width: 41.66%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.33%;
        max-width: 58.33%;
    }
    .col-md-8 {
        flex: 0 0 66.66%;
        max-width: 66.66%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        flex: 0 0 83.33%;
        max-width: 83.33%;
    }
    .col-md-11 {
        flex: 0 0 91.66%;
        max-width: 91.66%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Colunas para telas grandes (>= 992px) */
@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 8.33%;
        max-width: 8.33%;
    }
    .col-lg-2 {
        flex: 0 0 16.66%;
        max-width: 16.66%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .col-lg-5 {
        flex: 0 0 41.66%;
        max-width: 41.66%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.33%;
        max-width: 58.33%;
    }
    .col-lg-8 {
        flex: 0 0 66.66%;
        max-width: 66.66%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.33%;
        max-width: 83.33%;
    }
    .col-lg-11 {
        flex: 0 0 91.66%;
        max-width: 91.66%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Colunas para telas extra grandes (>= 1200px) */
@media (min-width: 1200px) {
    .col-xl-1 {
        flex: 0 0 8.33%;
        max-width: 8.33%;
    }
    .col-xl-2 {
        flex: 0 0 16.66%;
        max-width: 16.66%;
    }
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .col-xl-5 {
        flex: 0 0 41.66%;
        max-width: 41.66%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 58.33%;
        max-width: 58.33%;
    }
    .col-xl-8 {
        flex: 0 0 66.66%;
        max-width: 66.66%;
    }
    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 83.33%;
        max-width: 83.33%;
    }
    .col-xl-11 {
        flex: 0 0 91.66%;
        max-width: 91.66%;
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
h1 {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    /*text-shadow: rgb(0,0,0) 1px 1px 5px;*/
    color:#1F2D35;/*#0066cc;*/
    font-style: italic;
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}
h2 {
    color: #1F2D35;/*#0066cc;*/
    line-height: 1.1;
}
img {
    max-width: 100%;
}
.top {
    padding: 20px 0;
    position: relative;
    z-index: 10;
    background-color: #1F2D35;
}
.logoTopo {
    max-width: 200px;
    margin: auto;
    display: block;
    position: relative;
    z-index: 10;
}

.middle, .servicos,.formbox, .social {
    padding: 15px;
    padding-top: 0;
    /* color: #f7f7f7;*/
    margin: auto;
}
.mt30 {
    margin-top: 30px;
}
/*.top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/assets/img/effect-top-dark.png');
    top: 0;
    left:0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 9;
    background-position: center;
}*/

.cardbox {

    width: 100%;
    text-align: center;
}
.card {
    border: 1px solid #f7f7f7;
    border-radius: 20px;
    padding: 1px 15px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    transition: ease-in-out 0.3s;
}
.card:hover {
    background-color: #f7f7f7;
    color:#191919;
    cursor: pointer;
}
.form-group {
    position: relative;
    margin-bottom: 1rem;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d3e2;
    border-radius: .35rem;
    outline: transparent;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.validate {
    color: red;
    font-size: 13px;
}

.btn {
    display: inline-block;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-weight: 600;
    color: #858796;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    padding: .375rem .75rem;
    font-size: 1.3rem;
    line-height: 1.5;
    border-radius: .35rem;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.btn:hover {
    cursor: pointer;
}
.btn-primary {
    color: #fff;
    background-color: #1F2D35;
    border-color: #1F2D35;
    width: 100%;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 15px;
    box-shadow: rgb(0,0,0) 1px 1px 5px;
}
.btn-primary:hover {
    color: #fff;
    background-color: #3c6278;
    border-color: #3c6278;
}

.btn-primary2 {
    color: #fff;
    background-color: #1F2D35;
    border-color: #1F2D35;

}
.btn-primary2:hover {
    color: #fff;
    background-color: #3c6278;
    border-color: #3c6278;
}
.sociallinks {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}
.sociallinks a {
    background: #f7f7f7;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    text-decoration: none;
    margin-right: 10px;
    transition: ease-in-out 0.3s;
}
.sociallinks.whats a {
    width: auto;
    color: #444;
    padding-left: 5px;
    padding-right: 5px;
}
.sociallinks a i {
    color: #444;
    font-size: 20px;
    margin: 0 2px;
}

.sociallinks a:hover {
    background: #1977cc;
    color: #f7f7f7;

}
.sociallinks a:hover i {
    color: #f7f7f7;
}

footer {
    background-color: #272727;
    color: #f7f7f7;
    padding: 10px;
    text-align: center;
}
.formstep1, .formstep2, .formstep3 {
    position: relative;
}
.formstep1.hide, .formstep2.hide, .formstep3.hide {
    display: none;
}
.steps {

    position: absolute;
    top: 5px;
    right: 0;
    background-color: #ddd;
    border-radius: 10px;
    font-weight: bold;
    padding: 3px 5px;
    line-height: 1;
    font-size: 12px;


}
label {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-weight: 600;
    color: #0066cc;
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}


.form-control::placeholder {
    color: #888;
    opacity: 1;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 16px;
}

.form-control {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0066cc;

}

.form-control:focus {
    border-color: #0066cc;
}

.formbox {
    position: relative;
    width: 100%;
}
.statusForm {
    text-align: center;
    color: #17c964 !important;
    display: block;
}
.statusForm.hide {
    display:none;
}
@media (min-width: 768px) {
    .formbox, .middle {

        width: 50%;
        float: left;
    }

    .container.inner {
        padding: 20px 100px;
        display: flex;
        width: 100%;
    }
}

.img-fluid {
    width: 100%;
}
.text-center {
    text-align: center;
}

.rotating-icon {
    display: inline-block;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.errorFormBox {
    background-color: #dc3545;
    margin-top: 10px;
    padding: 10px;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 16px;
    text-align: center;
    display: none;
}
.logos img {
    height: 30px;
    margin: 5px;
}

.d-block {
    display: block !important;
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


.table-responsive > .table-bordered {
    border: 0;

}
.table-bordered {
    border: 1px solid #dee2e6;

}
.table {
    width: 100%;

    margin-bottom: 1rem;

    color: #212529;
    border-collapse: collapse;
}
.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgba(0,0,0,.05);
}

.table th {
    background-color: #0066cc;
    color: #fff;
    text-transform: uppercase;
    padding: 20px;
}
.table td {
    text-align: center;
    font-size: 16px;
    font-family: "Inter",sans-serif;
    padding: 15px 0;
}


.iconCategoria {
    color: #0066cc;
    font-size: 30px;
}
.logoTable {
    width: 40px;
}
a.btn-success    {
    text-decoration: none;
}


#dlgDetalhes {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    z-index: 1111;
    overflow: auto;
}
.detalhesBox {
    background-color: #fff;
    position: absolute;
    top:20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 28rem;
    width: 100%;
}

.dlgShow {
    overflow: hidden !important;
}

.detalhesHead {
    background-color: #0066cc;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
.detalhesFooter {
    background-color: #eee;

    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
}
.detalhesBody {
    padding: 25px;
    font-size: 16px;
}
#detalhesBody table {
    border-collapse: collapse;
    margin: auto;
    width: 100%;
}
#detalhesBody table th, #detalhesBody table td {
    text-align: left;
    border: 1px solid #eee;
    width:50%;
    padding: 4px 10px;
}
#detalhesBody table tr.notext th, #detalhesBody table tr.notext td {
    height: 30px;
    border: none;
}
#closeDetalhes {
    padding: 1px 8px;
    font-size: 15px;
}
/*
.range-slider {
width: 100%;
  position: relative;
  padding: 0;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: #ddd;
  outline: none;
  border-radius: 5px;
  position: absolute;
  pointer-events: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #007bff;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #0066cc;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
}

.range-values {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
}*/

/*
.slidecontainer {
  width: 100%;
}


.slider {
  -webkit-appearance: none; 
  appearance: none;
  width: 100%; 
  height: 25px;
  background: #d3d3d3;
  outline: none; 
  opacity: 0.7; 
  -webkit-transition: .2s; 
  transition: opacity .2s;
}


.slider:hover {
  opacity: 1; 
}


.slider::-webkit-slider-thumb {
  -webkit-appearance: none; 
  appearance: none;
  width: 25px; 
  height: 25px; 
  background: #04AA6D;
  cursor: pointer; 
}

.slider::-moz-range-thumb {
  width: 25px; 
  height: 25px; 
  background: #04AA6D; 
  cursor: pointer;
}*/

.filterbtn {
    font-size: 12px;
}
.filterbtn .iconCategoria {
    font-size: 18px;
    color: #bbb;
}
.filterbtn.active {
    color: #fff;
    background-color: #0066cc;
    border-color: #0066cc;
}


.contampTables h3 {
    margin: 0;
    border-bottom: 2px solid #0066cc;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}
.contampTables h4 {
    margin: 0;
    font-size: 16px;
}
.p0 {
    padding: 0;
    max-width: 100%;
}


.double_range_slider_box {
    position: relative;
    width: 500px;
    height: 200px;
    width: 100%;
    height: 44px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-top: 15px;
}

.double_range_slider {
    width: 100%;
    height: 6px;
    position: relative;
    background-color: #dddddd;
    border-radius: 20px;
}
.range_track {
    height: 100%;
    position: absolute;
    border-radius: 20px;
    background-color: #0066cc;
}

input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    top: 50%;
    transform: translateY(-50%);
}
input[type="range"]::-webkit-slider-thumb {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 3px solid #b3d9ff;
    background-color: #0066cc;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    margin-bottom: 1px;
}
input[type="range"]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 3px solid #b3d9ff;
    background-color: #0066cc;
    pointer-events: auto;
    -moz-appearance: none;
    cursor: pointer;
    margin-top: 30%;
}

.minvalue {
    position: absolute;
    padding: 2px 8px;
    background: #0066cc;
    border-radius: 1rem;
    color: white;
    bottom: -7px;
    transform: translate(0, -100%);
    left: 0;
    font-size: 12px;
    transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: left, transform;
}
.maxvalue {
    position: absolute;
    padding: 2px 8px;
    background: #0066cc;
    border-radius: 1rem;
    color: white;
    top: -2px;
    transform: translate(0, 100%);
    right: 0;
    font-size: 12px;
    transition: right 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: right, transform;
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.badge-light {
    color:#f8f9fa;
    background-color:  #0066cc;
}

h3 .badge {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 14px;
    transform: translateY(-50%);
}

@media (max-width: 768px) {

    .table th,.table td {
        font-size: 9px;
        padding: 12px 1px;
    }
    .lgDisplay {
        display: none;
    }
    .iconCategoria {
        font-size: 14px;
    }
    .logoTable {
        width: 30px;
    }
    .table .btn {
        font-size: 12px;
        padding: 5px;
    }
    .table .btn.btn-block {
        font-size: 12px;
        padding: 5px;
        display: initial;
        width: auto;
    }
}

#soma {
    position: fixed;
    bottom: 0;
    right: 20px;
    background-color: #0066cc;
    color: #fff;
    padding: 8px;
    text-align: center;
    width: 130px;
    font-size: 12px;
}

.trDisponivel {
    background-color: #66ccff !important;
}
.trSelected {
    background-color: #a8ffa8 !important;
}

#errorSoma{
    position: fixed;
    top: 50px;
    right: -350px;
    width: 280px;
    background-color: #f1f1f1;
    border: 1px solid #777;
    z-index: 111;
    font-size: 13px;
    padding: 12px;
    border-radius: .5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);

    opacity: 0;
    transition: right 1s ease, opacity 0.5s ease;
}
#errorSoma.show{
    opacity: 1;
    right: 50px;
}
.titleErrorSoma {
    color: #dc3545;
    font-weight: bold;
    font-size: 16px;
}

.d-flex {
    display: flex;
}
.justify-content-between {
    justify-content: space-between;
}

.cartasItem {
    background-color: #ddd;
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 5px;
}

.cartasSel {
    display: none;
}
.cartasSel.show {
    display: block;
}

#showCartas {
    position: relative;
    margin-bottom: 0;
}
#showCartas::after {
    font-family: "IcoFont" !important;
    content: "\ea99";
    font-size: 20px;
    margin-left: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#showCartas.open::after {
    font-family: "IcoFont" !important;
    content: "\eaa1";
    font-size: 20px;
    margin-left: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}