html, body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.color-dark{ color: #232323; }
.filter-opacity-30{ filter: opacity(30%); }

/*--- Header ---*/
.header-tourism{
    background: #232323;
    height: 722px;
    overflow: hidden;
}

.header-tourism .navbar-brand img:hover { animation: .8s jello; }

/* btn menu */
.hamburger {
    padding: 5px 5px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    z-index: 10;
}
.hamburger:hover { opacity: 0.7; }
.hamburger.is-active:hover { opacity: 0.7; }
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #FFFFFF;
}

.hamburger-box {
    width: 32px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 32px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before { top: -10px; }
.hamburger-inner::after { bottom: -10px; }

/* slider animation */
.hamburger--slider .hamburger-inner { top: 2px; }
.hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after { top: 20px; }

.hamburger--slider.is-active .hamburger-inner { transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after { transform: translate3d(0, -20px, 0) rotate(-90deg); }

.bg-hamburger{
    background: url('/images/tourism/Ellipse-5.svg') no-repeat;
    background-size: contain;
    position: absolute;
    right: -230px;
    top: -230px;
    width: 508px;
    height: 508px;
    z-index: 5;
}

.bg-bottom{
    background: url('/images/tourism/Ellipse-4.svg') no-repeat;
    background-size: contain;
    bottom: -145px;
    left: -125px;
    width: 330px;
    height: 330px;
    z-index: 5;
}

/* nav - menu */
.header-tourism .menu{
    height: 100%;
    width: 100%;
    position: fixed;
    background: #232323f9;
    top: 0;
    z-index: 9;
    transition: 300ms;
}
.header-tourism nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-tourism .nav .nav-item .nav-link{
    color: #fff;
    font-size: 3rem;
    margin: 8px 0;
    font-weight: 600;
}
.header-tourism .nav-item .nav-link:hover{
    color: #FF6600;
}

.header-tourism .menu.hide{
    height: 0px;
    overflow: hidden;
    opacity: 0;
}

.header-tourism .menu.show{
    height: 100%;
    overflow: hidden;
    opacity: 1;
}

/*--- Microrregiões ---*/
.microrregioes{
    min-height: 635px;
}

.microrregioes .bg-degrade{
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.880), #fff);
}

#form-microrregioes{
    width: 100%;
    max-width: 450px;
}

#form-microrregioes .nice-select .current{
    font-size: 1.6rem;
    color: #232323;
}

#form-microrregioes .nice-select{ 
    height: 60px; 
    line-height: 44px;
    background-color: #23232310;
}

#form-microrregioes .nice-select:after {
    border-bottom: 2px solid #232323;
    border-right: 2px solid #232323;
    height: 11px;
    width: 10px;
    right: 29px;
    top: 47%;
}

#form-microrregioes .list{
    max-height: 300px;
    overflow: auto;
}

#form-microrregioes .btn-subimt {
    background-color: #FF6600;
    color: #fff;
}

#form-microrregioes .line{
    width: 100px;
    height: 1px;
    border-top: 1px dashed #23232331;
    /* border-style: dashed; */
}

#svg-map path{
    cursor: pointer;
}

#svg-map path:hover{
    fill: #FF6600 !important;
}

#svg-map path.active{
    fill: #FF6600 !important;
    fill-opacity: 1 !important;
}

/*--- Rotas ---*/
.header-rotas h2{
    transform: translate(30px, 24px);
    color: #232323;
}

.header-rotas h2.shadow-text{
    position: absolute;
    top: -32px;
    left: 43px;
    color: #2323231f;
    font-weight: 900;
    font-size: 7rem;
    z-index: -1;
}

.rotas .rota{
    height: 400px;
    min-width: 288px;
}

.rotas .text-rotas{
    background: #2323232d;
    color: #ffffff;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 43px;
    transition: background 200ms;
}

.rotas .text-rotas:hover{
    background: #232323b9;
}

.rotas .text-rotas h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    margin: 20px 0 0 0;
    transition: margin 200ms;
}
.rotas .text-rotas:hover h3 {
    margin: 0;
}

.rotas .text-rotas p {
    line-height: 1.2;
    font-weight: 100;
    opacity: 0;
    display: none;
    transition: opacity 200ms;
}

.rotas .text-rotas:hover p {
    display: initial;
    opacity: 1;
}

.rotas .text-rotas .line{
    height: 1px;
    width: 100px;
    border-top: 1px dashed #ffffff41;
    margin: 12px 0;
    opacity: 0;
    transition: opacity 200ms;
}

.rotas .text-rotas:hover .line{
    opacity: 1;
}

.swiper-button-disabled{
    display: none;
}

.swiper-button-next,
.swiper-button-prev{
    color: #fff;
}

.header-tourism .menu{
    height: 100%;
    width: 100%;
    position: fixed;
    background: #232323f9;
    top: 0;
    z-index: 9;
    transition: 300ms;
}
.header-tourism nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-tourism .nav .nav-item .nav-link{
    color: #fff;
    font-size: 3rem;
    margin: 8px 0;
    font-weight: 600;
}
.header-tourism .nav-item .nav-link:hover{
    color: #FF6600;
}

.header-tourism .navbar-nav {
    z-index: 1000;
}

.header-tourism .navbar-nav .nav-item{
    margin-right: 16px;
}

.header-tourism .navbar-nav .nav-item .nav-link{
    color: #fff;
    margin: 8px 0;
    font-weight: 600;
}
.header-tourism .navbar-nav .nav-item .nav-link:hover{
    color: #FF6600;
}

.header-tourism .menu.hide{
    height: 0px;
    overflow: hidden;
    opacity: 0;
}

.header-tourism .menu.show{
    height: 100%;
    overflow: hidden;
    opacity: 1;
}

/*--- Conheça mais ---*/
.contant-conheca-mais{
    height: 110px;
    max-width: 916px;
    border: 3px solid #FF6600;
    display: flex;
    align-items: center;
    border-radius: 14px;
    position: relative;
}

.contant-conheca-mais .turistas{
    transform: translate(-10px, -37px);
}

.contant-conheca-mais .text{
    font-size: 1.4rem;
    font-weight: 600;
    color: #232323;
}
.contant-conheca-mais .text span{
    color: #7316EA;
}

.contant-conheca-mais .arrow{
    height: 15px;
    width: 15px;
    border-top: 3px solid #FF6600;
    border-right: 3px solid #FF6600;
    transform: rotate(135deg) translateX(-50%);
    position: absolute;
    bottom: -15px;
    left: 50%;
    background: #fff;
}

@media (max-width: 1199px) {
    .contant-conheca-mais .turistas{
        transform: translate(-10px, -36px)
    }
}

@media (max-width: 991px) {
    .contant-conheca-mais{
        max-width: 616px;
    }

    .contant-conheca-mais .imgs{
        display: flex;
    }
}

@media (max-width: 576px) {
    .contant-conheca-mais .imgs .icon{
        display: none;
    }
    .contant-conheca-mais .text{
        font-size: 1rem;
        font-weight: 600;
        color: #232323;
        line-height: 1;
    }
}


/*--- Eventos ---*/
.container-tabs{
    display: flex;
    justify-content: center;
}

.tabs{
    display: flex;
    justify-content: center;
    background: #23232323;
    border-radius: 6px;
}

.tab{
    display: flex;
    align-items: center;
    padding: 50px 60px;
    cursor: pointer;
    transition: 100ms;
    height: 100%
}

.tab svg{
    margin-top: 6px;
    margin-right: 15px
}

.tab span{
    text-transform: uppercase;
    font-size: 3.5rem;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    color: #777777;
}

/* .tab:not(.active){
    border-right: 1px dashed #23232331;
} */

/* .tab:nth-child(3){
    border: none;
} */

.tab.active{
    background: #fff !important;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}
.tab.active span{color: #FF006C;}
.tab.active path{ fill: #FF006C; }

.tab:hover span{
    color: #FF006C;
}
.tab:hover path{
    fill: #FF006C;
}

.tab-content .title{
    font-weight: 500;
    color: #232323;
    font-size: 1.8rem;
}
.tab-content .title span{
    font-weight: 600;
    color: #FF006C;
    text-transform: uppercase;
}

.box-eventos{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.box-eventos .card{
    width: 330px;
    height: 230px;
    background: #23232323;
    border: none;
}

.box-eventos .text{
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.box-eventos .text h6{
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}
.box-eventos .text span{
    color: #FF006C;
    font-size: .9rem;
    font-weight: 400;
}
.box-eventos a{
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
    border-radius: 8px;
}

.box-eventos .card{
    border-radius: 8px;
}

.play{
    display: block;
    width: 100%;
    height: 500px;
    border: none;
    padding: 0 !important;
    
}

.ibox-content > .sk-spinner {
    display: none;
}
.ibox-content.sk-loading {
    position: relative;
}

.sk-spinner-wave.sk-spinner {
    margin: 0 auto;
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px;
}
.sk-spinner-wave div {
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
    animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}
.sk-spinner-wave .sk-rect1 {
    background-color: #FF056C;
}
.sk-spinner-wave .sk-rect2 {
    background-color: #FF6726;
}
.sk-spinner-wave .sk-rect3 {
    background-color: #18C94E;
}
.sk-spinner-wave .sk-rect4 {
    background-color: #730BE3;
}
.sk-spinner-wave .sk-rect5 {
    background-color: #0073F8;
}
.sk-spinner-wave .sk-rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-spinner-wave .sk-rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-spinner-wave .sk-rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-spinner-wave .sk-rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
@-webkit-keyframes sk-waveStretchDelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes sk-waveStretchDelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

.ibox-content.sk-loading:after {
    content: '';
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}
.ibox-content.sk-loading > .sk-spinner {
    display: block;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    z-index: 2000;
}
