﻿html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, bloquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
}

/* Cores padrão */

.bg-black {
    background: #000000;
}

.txt-black {
    color: #000000;
}

.bg-white {
    background: #FFFFFF;
}

.txt-white {
    color: #FFFFFF;
}

/* Animações */

.pulsar {
    animation: pulsar 1s infinite ease-in-out;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes arrow-rolar-pagina {
    0% {
        top: 0;
        opacity: 0;
        font-size: 10px;
    }
    35% {
        opacity: 1;
        font-size: 22px;
    }
    65% {
        opacity: 1;
        font-size: 22px;
    }
    100% {
        top: 22px;
        opacity: 0;
        font-size: 10px;            
    }
}

@keyframes finger-rolar-pagina {
    0% {
        top: 22px;
        opacity: 0;
        font-size: 10px;
    }
    35% {
        opacity: 1;
        font-size: 22px;
    }
    65% {
        opacity: 1;
        font-size: 22px;
    }
    100% {
        top: 0;
        opacity: 0;
        font-size: 10px;            
    }
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 1s linear infinite;
    -moz-animation: rotating 1s linear infinite;
    -ms-animation: rotating 1s linear infinite;
    -o-animation: rotating 1s linear infinite;
    animation: rotating 1s linear infinite;
}

@-webkit-keyframes icons-steps {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes icons-steps {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

/* Imagens lazy src */

.lazy-img {
    display: none !important;
}

/* Popups */
.modal{}

.modal .btn-fechar{
    position:absolute;
    z-index: 10;
    top:0;
    right:0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #ff6414;
    text-align:center;
    border:0;
    outline: none;
    cursor: pointer;
}

.modal .btn-fechar:hover{
}

    .modal .btn-fechar i{
        font-size: 22px;
        color: #ffffff;
    }
    
    .modal .btn-fechar:hover i{
    }

/* Sections/páginas */

.main{
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.main .section{ 
    width: 100%;
}

.main .section .padding {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    padding: 50px 15px;
    margin: 0 auto;
}

.main .section .header-section {
    margin: 0 0 30px 0;
}

.main .section .header-section h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -2px;
    font-weight: bold;
}

.main .section .content-section {
    margin:0;
}

/* Reset Bootstrap */

.btn {
    white-space:inherit;
}

.btn:focus {
    box-shadow: none!important;
}

select.form-control {
    cursor: pointer;
    outline: none;
}

select[readonly] {
    background: #e9ecef;
    pointer-events: none;
    touch-action: none;
}

.custom-control-label {
    padding: 0 0 0 1rem;
    cursor: pointer;
    outline: none;
}

.custom-control-label::before,
.custom-control-label::after {
    box-shadow: none!important;
}

.form-control{
    position: relative;
    z-index: 1;
}

.form-control:focus{
    border-color: rgba(52,58,64,1);
    box-shadow: none;
}

/* Animação - Role a página */
.rolar-pagina{
    display: inline-block;
    position: relative;
    text-align: center;
    padding:10px;
    border-radius: 10px;
    background: #ffffff;
}

.rolar-pagina .text{
    font-size: 16px;
    font-weight: 700;
    margin:0 0 5px 0;
}

.rolar-pagina .content{
    display: inline-block;
    padding:0 15px 0 30px;
}
            
.rolar-pagina .content:after{
    position: relative;
    content: '\f25a'; /* Ícone de touch */
    top: 22px;
    color: #b3b2b7;
    font-family: 'FontAwesome', Arial, sans-serif;
    font-size: 22px;
    line-height: 100%;
    animation-name: finger-rolar-pagina;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.rolar-pagina .animation{
    position: relative;
    display: inline-block;
    width: 24px;
    height:45px;
    border: 2px solid #b3b2b7;
    border-radius: 20px;
}

.rolar-pagina .animation .arrow:before{
    position: relative;
    content: '\f107'; /* Ícone de seta para baixo */
    top: 0;
    font-family: 'FontAwesome', Arial, sans-serif;
    font-size: 22px;
    line-height: 100%;
    animation-name: arrow-rolar-pagina;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

/* Contador */
.countdown{
    display: inline-block;
    margin:0 0 15px 0;
}

.countdown .info {
    width: 100%;
    font-size:16px;
    line-height: 120%;
    font-weight: 700;
    color: #1c1c1c;
    padding:10px;
}   

.countdown .count{
    width: 100%;
}

.countdown .digits{
    display: inline-block;
                
}

.countdown .digits div{
    display: inline-block;
    width: 50px;
    height: 50px;
    margin:0 2px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
}

.countdown .digits span{
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Step Boxes*/

.steps-boxes {
    position: relative;
}

.steps-boxes .step {
    position: relative;
    text-align: center;
    margin: 0 0 25px 0;
}

.steps-boxes .step .number {
    display: inline-block;
    margin: 0 0 15px 0;
    font-size: 30px;
    line-height: 51px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.steps-boxes .step .image {
    margin: 10px 0;
}

.steps-boxes .step .title {
    font-size: 25px;
    line-height: 25px;
    margin: 0 0 10px 0;
    font-family: 'Montserrat-Black', Arial, sans-serif;
}

/* Footer */

.footer{
    width: 100%;
    padding: 20px 0;
    background: #f1f2f4;
    transition: all 0.5s ease;  
}

.footer .padding{
    max-width:1220px;
    padding: 0 15px;
    margin: 0 auto;
}

.footer .links{
    margin-bottom: 10px;
}

.footer .links a{
    text-decoration: none !important;
    margin-bottom: 15px !important;
    margin-left: 15px !important;
}

.footer .links a:hover{
    text-decoration: none;
}

.footer .texto-legal{
    text-align: center;
    margin: 0 0 15px 0;
}

.footer .redes-sociais{
    text-align: center;
}

.footer .redes-sociais a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
}
                
.footer .redes-sociais a i{
    font-size: 20px;
}

/* Recursos */

[data-resource] {
    display: none;
}

/* Formulario */

[data-bs-togglepassword] {
    float: right;
    width: 28px;
    height: 35px;
    line-height: 35px;
}

[data-bs-togglepassword] + input {
    width: calc(100% - 30px);
}

[data-bs-togglepassword] .password-hide {
    display: none;
}

/*[class*="vld-"] + .error {
    font-size: 12px;
    color: red;
    display: block;
}*/

[class*="vld-"] + .error{
    font-size: 12px;
    line-height: 12px;
    color: #fff4fa;
    display: block;
    background: red;
    padding: 8px 15px;
    border-radius: 11px 0px 10px 0px;
}


/* Tabs */

.tab:not(.active) {
    display: none !important;
}

/* Table mobile */

@media (max-width: 768px) {
    /*.table.table-mobile,
    .table.table-mobile thead,
    .table.table-mobile tbody,
    .table.table-mobile thead tr,
    .table.table-mobile tbody tr,
    .table.table-mobile thead th,
    .table.table-mobile tbody td,
    .table.table-mobile thead {
        display: block;
    }*/

    /*.table.table-mobile tbody td::before {
        content: attr(data-thmobile);
        display: block;
        font-weight: bold;
    }*/

    .table.table-mobile tbody td::before {
        content: attr(data-thmobile);
        /*display: block;*/
        font-weight: bold;
        display: none;
    }
}

/* Search */

[data-search-placeholder] {
    display: none;
}

/* Política de Cookies */
/*Apagado*/

/*TOOLTIP GENERIC*/
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #DC2081;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}


/* Buscar dúvidas / No results / Nenhum resultado encontrado */
.buscar-duvidas{
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

    .buscar-duvidas::before{
        position: absolute;
        z-index: 2;
        top: 9px;
        right: 10px;
        content: "\e98e";
        font-family: 'icomoon', Arial, sans-serif;
        font-size: 22px;
        color: #e34f94;
    }

.no-results{
    padding: 20px;
    border-radius: 5px;
    font-style: italic;
    font-size: 16px;
    color: #aaaaaa;
    border:1px solid #dedede;
}

.section#duvidas .panel{
    background: transparent;
    padding: 0;
    border: 0;
}

.section#duvidas .nav-tabs{
    display: block;
    border:0;
    margin:0 0 20px 0;
    text-align: left;
}

.section#duvidas .nav-tabs .nav-item:first-of-type{
    margin-left: 0;
}

.section#duvidas .nav-tabs .nav-item{
    display: inline-block;
    margin:0 10px;
}

.section#duvidas .nav-tabs .nav-item.buscar{
    position: relative;
    float: right;
    width: 250px;
}

@media (max-width: 991px){
    .section#duvidas .nav-tabs .nav-item{
        display: block;
        margin:0 0 10px 0;
    }
    
        .section#duvidas .nav-tabs .nav-item a{
            text-align: center;
        }

    .section#duvidas .nav-tabs .nav-item.buscar{
        float: inherit;
        width: 100%;
        margin:0 0 10px 0;
    }
}

    .section#duvidas .nav-tabs .nav-item a{
        border:0;
        color: #17a2b8;
        text-decoration: none;
        background: transparent;
        border-radius: 5px;
    }

    .section#duvidas .nav-tabs .nav-item a.active{
        color: #ffffff!important;
        background: #17a2b8;
    }

    @media (max-width: 991px){
        .section#duvidas .nav-tabs .nav-item a.active{
            display: block;
        }
    }

    /*Personalizado*/
    .section#duvidas .nav-tabs .nav-item.buscar{
            float: inherit;
            width: 100%;
            text-align: center;
        }

        .section#duvidas .descricao-busca{
            font-family: 'Avenir-Regular', Arial, sans-serif;
            text-transform: none;
            color: #ffffff;
            text-align: center;
            font-size: 13px;
            line-height: 16px;
            margin-top: 10px;
        }

    .buscar-duvidas{
        max-width: 350px;
    }

        .buscar-duvidas::before{
            color: #DC2081;
        }

    .no-results{
        color: #ede432;
        font-family: 'AmsiPro-Ultra', Arial, sans-serif;
        font-style: normal;
        background: transparent;
        border: 1px solid #ffffff;
    }


    /* Carousel / Slick */
    .carousel{
        padding:0 15px;
    }

    .carousel .infos{
        margin:20px 0 0 0;
    }

    .carousel .infos .nome{
        font-size: 24px;
        font-weight: 700;
        color: #17a2b8;
    }

    .carousel .infos .descricao{
        font-size: 18px;
    }

    .slick-prev,
    .slick-next{
        width: auto;
        height: auto;
        margin:0 -5px;
    }

    .slick-prev:before,
    .slick-next:before{
        /*color: #a1c903;*/
        /*font-family: 'icomoon', Arial, sans-serif;*/
        /*font-size: 40px;*/
    }

    .slick-prev:before{
        /*content:"\e9c8";*/
    }

    .slick-next:before{
        /*content:"\e9cb";*/
    }

    .slick-slide img,
    .slick-slide .img-placeholder{
        width: 100%;
        transform: scale(0.7);
        transition: all 0.2s ease-in-out;
    }

    .slick-slide.effect img,
    .slick-slide.effect .img-placeholder{
        transform: scale(1.4);      
    }

    .slick-dots li button:before{
        font-size: 12px;
        opacity: 0.10;
    }

    .slick-dots li.slick-active button:before{
        color: #a1c903;
    }

    .slick-dots li:hover button:before{
        color: #343a40;
    }