:root {
    --color-white: #ffffff;
    --color-dark: #4F4F4F;
    --color-light: #828282;
    --color-red: #C2303D;
}

body {
    font-family: 'Mukta Vaani', sans-serif;
    font-weight: normal;
    transition: 0.2s;
}
/*CSS relacionado ao dark mode */
input[type="checkbox"]{
    display: none;
}
.darkbutton {
    background-color: #263238;
    color: white!important;
}

.iconsDark{
    font-size: 1.6rem;
    cursor: pointer; 
}
#moon {
    display: block;
}

#sun{
    display: none;
}
.darkbutton #sun{
    display: block;
}
.darkbutton #moon{
    display: none;
}

.upfontsize{
    cursor: pointer;
}
/* ----- */


/*
* {
    border: 1px solid red;
}
*/
.card-info-map{
    display: none;
    transition: .6s;
    opacity: 0;
}

.card-info-map.active{
    display: block!important;
    opacity: 1;
    transition: .6s;
}

.regiao{
    transition: .5s;
    cursor: pointer;
}


#regiao-1:hover, .regiao.active{
    fill: #2883b550;
    stroke: #2883b5;
    
}

#regiao-2:hover, .regiao.active{
    fill: #cd106c50;
    stroke:#cd106c;
}

#regiao-3:hover, .regiao.active{
    fill: #b2bb2250;
    stroke:#b2bb22;
}

#regiao-4:hover, .regiao.active{
    fill: #ec950050;
    stroke:#ec9500;  
}

#regiao-5:hover, .regiao.active{
    fill: #e6777882;
    stroke: #ce181a;
    stroke-width: 3.6px;
}

#regiao-6:hover, .regiao.active{
    fill: #e6777882;
    stroke: #ce181a;
    stroke-width: 3.6px;
}

a {
    text-decoration: none!important;
}

button:focus {
    outline: none;
}

section.section-fotos .mobile{
    display: none;
}

section.section-fotos h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #077697;
    text-align: center;
    margin-bottom: 3rem;
}

section.section-fotos h1::after {
    content: '';
    display: block;
    background-image: url(../img/line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

p{
    text-align: justify;
}



.section-fotos .galeryContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.stretch-link{
    height: 60vh;
    width: 100%;
    position: absolute;
}
.section-fotos .galeryContainer .card {
    flex: 1;
    
    transition: all 1s ease-in-out;
    height: 60vh;
    position: relative;
}

.section-fotos .galeryContainer .card .card__head {
    color: white!important;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    transform-origin: 0% 0%;
    transition: all 0.8s ease-in-out;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1em;
    white-space: nowrap;
    text-transform: uppercase;
    }
  
.section-fotos .galeryContainer .card:hover {
    flex-grow: 3;
    }

.section-fotos .galeryContainer .card:hover  img {
          filter: grayscale(0);
        }
.section-fotos .galeryContainer .card:hover .card__head {
          text-align: center;
          width: 100%;
          color: white;
          font-size: 0;
          background: rgba(0, 0, 0, 0);
        }

.section-fotos .galeryContainer .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 1s ease-in-out;
      }
.section-fotos .galeryContainer .card:not(:nth-child(6)) {
        margin-right: 1em;
      }

@media (max-width: 1080px){

    section.section-fotos .mobile{
        display: block;
    }
    section.section-fotos .desktop{
        display: none;
    }
    .section-fotos .galeryContainer {
        flex: auto;
    }
    .section-fotos .galeryContainer .card{
        flex: auto;
        height: 200px;
    }
    .section-fotos .galeryContainer .card .card__head{
        height: 200px;
    }
    .section-fotos .galeryContainer .card:not(:nth-child(6)){
        margin-right: 0;
    }
    .stretch-link{
        height: 200px;
    }

    section.section-fotos .galeryContainer :is(.card, img, .card__head){
    border-radius: 15px!important;
    transition: .3s;
    }
    section.section-fotos .galeryContainer :is(img, .card__head):hover{
    	transform: scale(1.1);
    }

}

@media (max-width: 1080px){
    .section-fotos .galeryContainer > div{
        padding: .2rem;
    }

    .section-fotos .galeryContainer .card{
        height: 180px;
    }
    .section-fotos .galeryContainer .card .card__head{
        height: 180px;
    }
}

.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-link.focus,
.btn-link:focus {
    text-decoration: none;
}

.logo-maxmeio {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 5;
}


/* ini: Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    z-index: 1999;
}

#preloader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}


/* end: Preloader */


/* section menu mobile */

.offcanvas-header {
    display: none;
}


/* Section - Navegador */
.navbar-light .navbar-toggler-icon {
    background-image: url('../img/menu.svg');
}
section.navegador {
    background: transparent;
    background: linear-gradient(180deg, rgb(43 43 43 / 75%) -2.97%, rgba(0, 0, 0, 0) 100%);
    padding-bottom: 20px;
}

section.navegador .navbar-toggler i {
    color: #FFFFFF;
}

@media (max-width: 767px) {
    section.navegador .navbar-brand img {
        width: 10%!important;
        transition: .6s;
    }
    #navegador-topo nav.navbar.navbar-expand-xl.navbar-light {
        padding: .5rem 0;
    }
    .navbar-light .navbar-toggler {
        padding: 0;
    }
}

@media (min-width: 992px) {
    .navegador_fixed-top {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }
}

@media(max-width:1400px) {
    .nav-link {
        font-size: 16px!important;
    }
    .form-group.buscar {
        width: 300px!important;
    }
}

@media (max-width: 1198px) {
    .offcanvas-header {
        display: block;
        padding-bottom: 3rem;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 100%;
        width: 50%;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow-y: auto;
        visibility: hidden;
        background: linear-gradient( 270deg, #ffc107, #ec9500);
        background-size: 400% 400%;
        -webkit-animation: AnimationName 22s ease infinite;
        -moz-animation: AnimationName 22s ease infinite;
        -o-animation: AnimationName 22s ease infinite;
        animation: AnimationName 22s ease infinite;
        transition: visibility .2s ease-in-out, -webkit-transform .2s ease-in-out;
    }
    .navbar-collapse.show {
        visibility: visible;
        transform: translateX(-100%);
        z-index: 9999;
    }
    .nav-item.idi_dropdown {
        margin-left: 0!important;
    }
    .nav-bg1 {       
      
        padding: 10px;
    }
   
    .form-group.buscar {
        width: 100%!important;
    }
    .navbar-nav {
        display: flex;
        align-items: center!important;
    }
    .navbar-light .navbar-nav .nav-link {
        color: rgb(255 255 255);
        font-weight: bolder;
        font-size: 16px;
    }
    .nav-item .dropdown .dropdown-toggle {
        color: #ffffff!important;
    }
    .offcanvas-header button {
        color: var(--color-light);
    }
    .offcanvas-header button:hover {
        color: var(--color-blue);
    }
    .nav-link {
        display: block;
        padding: 0.1rem 1rem;
    }
}

@media(max-width:499px) {
    .navbar-brand {
        display: contents;
    }
    .navbar-collapse {
        width: 70%;
    }
}

.navbar-brand img {
    width: 230px;
    transition: .6s;
}


/* ANIMACAO  */

.zoomIn:hover {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 1;
    }
    45% {
        opacity: 0.5;
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 1;
    }
    45% {
        opacity: 0.5;
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50% {
        opacity: 1;
    }
}

.form-control {
    display: block;
    height: calc(1.5em + .75rem + 2px);
    padding: 0.375rem 1.2rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #BDBDBD;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control::placeholder {
    color: #BDBDBD;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #c1c0c0;
    text-align: center;
    white-space: nowrap;
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(255 255 255 / 25%);
}

.nav-link {
    font-weight: normal;
    font-size: 14px;
    line-height: 27px;
    text-transform: uppercase;
    color: #828282;
}

@media (min-width: 1640px) {
    .navbar-nav .nav-link {
        padding-right: 1rem!important;
        padding-left: 1rem!important;
    }
    .nav-link {
        font-size: 15px;
    }
}

.input-group>.custom-select:not(:last-child),
.input-group>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}


/*section nav2 */

.nav2 {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 15px;
    background: #FE6601;
    background-size: 400% 400%;
    -webkit-animation: AnimationName 22s ease infinite;
    -moz-animation: AnimationName 22s ease infinite;
    -o-animation: AnimationName 22s ease infinite;
    animation: AnimationName 22s ease infinite;
}

.input-group>.input-group-append>.btn,
.input-group>.input-group-append>.input-group-text,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-left: none;
}

.nav2 .nav-pills .nav-link {
    border-radius: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .6s ease;
    padding-left: 5%;
}

.nav2 .nav-pills .nav-link:hover {
    color: #077697;
}

.nav2 .nav-pills .nav-link div {
    width: 2px;
    height: 10px;
    background: #ffffff;
}

@keyframes ldio-cm15wo31x57 {
    0% {
        background: #ffb425
    }
    25% {
        background: #ffb425
    }
    25.25% {
        background: #077697
    }
    100% {
        background: #077697
    }
}

.ldio-cm15wo31x57 div {
    position: absolute;
    width: 42.199999999999996px;
    height: 42.199999999999996px;
    background: #077697;
    animation: ldio-cm15wo31x57 1.5384615384615383s linear infinite;
}

.loadingio-spinner-blocks-2opn1neaau8 {
    width: 211px;
    height: 211px;
    display: inline-block;
    overflow: hidden;
    background: none;
}

.ldio-cm15wo31x57 {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
    /* see note above */
}

.ldio-cm15wo31x57 div {
    box-sizing: content-box;
}

.nav-item .dropdown .dropdown-toggle {
    font-weight: normal;
    font-size: 15px;
    line-height: 27px;
    text-transform: uppercase;
    color: #828282;
}

.nav-item:hover .dropdown .dropdown-toggle {
    color: rgba(0, 0, 0, .9)!important;
}

.dropdown-menu {
    min-width: 4rem;
}

.nav-item.idi_dropdown {
    margin-left: 2rem;
}

.nav-item:hover .dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    color: rgba(0, 0, 0, .9);
}

.dropdown-item {
    font-weight: 500;
    color: #7f7f7f;
}

.nav-item .dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    color: transparent;
}

.dropdown-menu {
    color: #ffffff;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
}


/* banner */

section.banner .owl-nav {
    display: none;
}

section.banner .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}

section.banner .owl-dots .owl-dot span {
    width: 21px;
    height: 21px;
    margin: 5px 7px;
    background: transparent;
    border: 1px solid #ffffff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 0;
}

section.banner .owl-dots .owl-dot.active span,
section.banner .owl-dots .owl-dot:hover span {
    background: #FFFFFF;
}

section.banner .banner-slide::after{
    content: "";
    width: 100%;
    height: 800px;
    background-color: black;
    opacity: .4;
    position: absolute;
    left: 0;
    top: 0;
}

section.banner .banner-slide img.img-banner{
    height: 800px;
    width: 100%;
    object-fit: cover;
}

/*section.banner .banner-slide img.tripadvisor{
    position: absolute;
    right: 23%;
    margin-right: 700px;
    width: 150px;
    z-index: 2;
    top: 30%;
}*/

section.banner .banner-slide img.tripadvisor{
    position: absolute;
    right: 23%;
    margin-top: 45px;
    margin-right: 717px;
    width: 186px;
    z-index: 2;
    top: 21%;
}

section.banner .banner-slide img.tripadvisorselo{
    position: absolute;
    right: 23%;
     margin-top: 295px;
    margin-right: 717px;
    width: 186px;
    z-index: 2;
    top: 21%;
}

section.banner .banner-slide img.verde{
    position: absolute;
    right: 23%;
    margin-right: 700px;
    width: 150px;
    z-index: 2;
    top: 51%;
}

section.banner h1.title-banner{
    color: white;
    position: absolute;
    font-size: 65px;
    right: 23%;
    top: 22%;
    border-left: solid 4px white;
    padding-left: 35px;
    z-index: 10;
    font-weight: lighter;
}

section.banner h1.title-banner b{
    font-weight: bold;
}

section.banner .banner-slide img.decolar{
    margin-right: 674px !important;
    top: 14%;
}

section.banner .banner-slide img.tripadv01{
    /*margin-right: 620px !important;*/
    margin-top: 8px !important;
}

/*section.banner .banner-slide img.tripadv02{
    margin-right: 620px !important;
}*/

@media (max-width: 1080px){

    section.banner .banner-slide img.img-banner{
        height: 250px;  
    }   
    /*section.banner .banner-slide img.tripadvisor{
        top: 5%;
        margin-right: 0;
        margin-left: 40px;
        width: 70px;
    }*/

    section.banner .banner-slide img.tripadvisor{
        top: 5%;
        margin-right: 0;
        margin-left: 40px;
        width: 70px;
        margin-top: -2px;
    }

    section.banner .banner-slide img.tripadv01{
        margin-top: -2px;
    }
    section.banner .banner-slide img.tripadvisorselo{
        top: 5%;
        margin-right: 0;
        margin-left: 40px;
        width: 70px;
        margin-top: 89px;
    }
    section.banner .banner-slide img.verde{
        top: 40%;
        margin-right: 0;
        margin-left: 40px;
        width: 70px;
    }

    section.banner h1.title-banner{
        font-size: 18px;
        top: 15px;
        right: auto;
        left: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 768px){
    section.banner h1.title-banner {
        font-size: 18px;
        top: 15px;
        right: auto;
        left: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 991px){
    .linha-topo1{
    width: 618px !important;
    
}

.map-title{
    color: #696969;
    font-weight:bold;
    font-size: 30px;
    text-align: center;
    margin-top: 10px;

}



}

@media (max-width: 500px){

        .img-region{
            width: 100% !important;
        }

        .mob{
            display: flex;
            flex-direction: column;
        }
}
/* Dicas de viagem */

.hoteis-table{
    box-shadow:0 0 2rem 7px rgb(0 0 0 / 6%);
    border-radius:5px;
    padding: 20px;
    border-spacing: 1;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.hoteis-table thead tr{
    height: 60px;
    background: #f96603;
    
}

.hoteis-table tbody tr{
    height: 50px;
}

.hoteis-table tbody tr > td , table thead tr > th {
    padding: 0 20px;
}

.hoteis-table tbody tr > td{
    text-transform: lowercase; 
}

.hoteis-table tbody tr > td::first-letter{
    text-transform: uppercase;
}

.hoteis-table thead tr th {
    font-family: OpenSans-Regular;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.2;
    font-weight: unset;
    padding-left: 30px;

}

.hoteis-table thead tr th:nth-child(2){
    width: 40%;
}

.hoteis-table thead tr th:nth-child(1){
    width: 60%;
}

.hoteis-table tbody tr {
    font-family: OpenSans-Regular;
    font-size: .9rem;
    color: gray;
    line-height: 1.2;
    font-weight: unset;
    transition: .8s;
    
}

.hoteis-table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.hoteis-table tbody tr:hover{
    height: 60px;
    font-size: 1rem!Important;
    font-weight: bold;
    color: #f96603;
}

/* noticias */

section.noticias {
    margin: 5rem auto;
}

section.noticias h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #077697;
    text-align: center;
    margin-bottom: 3rem;
}

section.noticias a{
    text-decoration: none;
    color: #077697;
    transition: .3s;
}
section.noticias a:hover{
    color: #FE6601;
}
section.noticias h1::after {
    content: '';
    display: block;
    background-image: url(../img/line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

section.noticias .card {
    border: none;
}

section.noticias .card .card-body {
    padding: 1.25rem 0;
}

section.noticias .card .card-body .text-muted {
    font-weight: normal;
    font-size: 14px;
    line-height: 154.1%;
    color: #828282;
}

section.noticias .card .card-body .card-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 33px;
    color: #077697;
}

section.noticias .card .card-body .card-text {
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #828282;
}


/* section.noticias img {
    width: 400px;
    height: 266px;
} */

section.noticias .ver_todas_noticias {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: #077697;
    border: 1px solid #077697;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 15px 30px;
    transition: all .6s;
}

section.noticias .ver_todas_noticias:hover {
    background-color: #077697;
    color: #ffffff;
    border: 1px solid #077697;
}

section.noticias .card img {
    background: linear-gradient(#FE6601, #FE6601)bottom left/ 45% 7px, linear-gradient(#FE6601, #FE6601) bottom left/ 7px 40% #ccc0;
    background-repeat: no-repeat;
    padding: 7px;
}




/* fotos */

section.fotos {
    margin: 5rem auto;
}

section.fotos h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #077697;
    text-align: center;
    margin-bottom: 3rem;
}

section.fotos h1::after {
    content: '';
    display: block;
    background-image: url(../img/line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

section.fotos .card {
    border: none;
}

section.fotos .card .card-body {
    padding: 1.25rem 0;
}

section.fotos .card .card-body .text-muted {
    font-weight: normal;
    font-size: 14px;
    line-height: 154.1%;
    color: #828282;
}

section.fotos .card .card-body .card-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 33px;
    color: #077697;
}

section.fotos .card .card-body .card-text {
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #828282;
}

section.fotos .ver_todas_noticias {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: #077697;
    border: 1px solid #077697;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 15px 30px;
    transition: all .6s;
}

section.fotos .ver_todas_noticias:hover {
    background-color: #077697;
    color: #ffffff;
    border: 1px solid #077697;
}

section.fotos .card img {
    background: linear-gradient(#FE6601, #FE6601)bottom left/ 45% 7px, linear-gradient(#FE6601, #FE6601) bottom left/ 7px 40% #ccc0;
    background-repeat: no-repeat;
    padding: 7px;
}


/* agenda */



section.agenda {
    margin: 0 auto 5rem ;
    padding: 3rem 0;
    background: #ce181a;
    background-size: 400% 400%;
    -webkit-animation: AnimationName 22s ease infinite;
    -moz-animation: AnimationName 22s ease infinite;
    -o-animation: AnimationName 22s ease infinite;
    animation: AnimationName 22s ease infinite;
}
section.agenda .img_agenda{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*
    height: 425px;
    */
    height: 100%;
}
section.agenda .img_agenda2{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*height: 141.66px;*/
    height: 251.66px;
}
@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-o-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

section.agenda h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 3rem;
}

section.agenda h1::after {
    content: '';
    display: block;
    background-image: url(../img/line2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

section.agenda .ver_todas_noticias {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 15px 30px;
    transition: all .6s;
}

section.agenda .ver_todas_noticias:hover {
    background-color: #FFFFFF;
    color: #FE6601;
    border: 1px solid #FFFFFF;
}

section.agenda .card {
    background: transparent;
    border: none;
    border-radius: 0;
}

section.agenda .card .card-body {
    position: absolute;
    bottom: 0;
    color: #FFFFFF;
    background: linear-gradient(360deg, #000000b5 0%, rgba(51, 51, 51, 0) 100%);
    width: 100%;
}

section.agenda .card-title {
    margin-bottom: .75rem;
    padding-left: 10px;
    font-weight: bold;
    font-size: 22px;
    line-height: 24px;
    color: #FFFFFF;
}

section.agenda p {
    display: table;
    border: 1px solid #fff;
    padding: 10px 10px;
    font-weight: bold;
    font-size: 50px;
    line-height: 103.6%;
    color: #FFFFFF;
}

section.agenda span {
    font-weight: bold;
    font-size: 29px;
    line-height: 45.6%;
    color: #FFFFFF;
}

section.agenda-interna{
    background: unset!important;
}

section.agenda-interna h1{
    color: #077697!important;
}

section.agenda-interna h1:after{
    background-image: url(../img/line.png)!important;
}

section.agenda-interna .ver_todas_noticias {
    color: #077697!important;
    border: 1px solid #077697!important;
}

section.agenda-interna .ver_todas_noticias:hover {
    color: #ce181a!important;
    border: 1px solid #FE6601!important;
}

/* fale conosco */

section.fale_conosco .informacoes{
    padding: 0px 30px;
    border-left: 1px solid #FE6601;
}

section.fale_conosco form{
    padding: 0px 30px;
}

section.fale_conosco form #message{
    min-height: 150px;
}

section.fale_conosco form button{
    background-color: #077697;
    border: #077697 1px solid;
    padding: 10px 30px;
    color: white;
    border: 0;
    font-size: 18px;
    border-radius: 10px;
    transition: .6s;
}

section.fale_conosco form button:hover{
    background-color: unset;
    border: #FE6601 1px solid;
    color:#FE6601;
}

@media (max-width: 991px){
    .contato_formulario{
        flex-direction: column;
    }
    section.fale_conosco .informacoes{
        border-left: 0px;
        margin-left: 10px;
    }
    .fale_conosco_tam{
        max-width: 100%;
    }
}

/* videos */
@media (max-width: 768px){
    #videos{
        height: 300px!important;
    }
}


section.videos {
    margin: 5rem auto;
    padding: 3rem 0;
    background: #b2bb22;
    background-size: 400% 400%;
    -webkit-animation: AnimationName 22s ease infinite;
    -moz-animation: AnimationName 22s ease infinite;
    -o-animation: AnimationName 22s ease infinite;
    animation: AnimationName 22s ease infinite;
}

section.videos h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 3rem;
}

section.videos h1::after {
    content: '';
    display: block;
    background-image: url(../img/line2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

section.videos .video video {
    background: linear-gradient(#ffffff, #ffffff)bottom left/ 45% 10px, linear-gradient(#ffffff, #ffffff) bottom left/ 10px 40% #ccc0;
    background-repeat: no-repeat;
    padding: 10px;
}

section.videos .video .play {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s;
}

section.videos .video:hover .play {
    display: none;
    transition: .6s;
}

section.videos .ver_todas_noticias {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 15px 30px;
    transition: all .6s;
}

section.videos .ver_todas_noticias:hover {
    background-color: #FFFFFF;
    color: #b2bb22;
    border: 1px solid #FFFFFF;
}

section#fotos .ver_pesquisa {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid #ffffff;
    background-color: #077697;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 15px 30px;
    transition: all .6s;
}

section#fotos .ver_pesquisa:hover {
    color: #077697;
    border: 1px solid #077697;
    background-color: transparent;
    background: #ffffff;
}

/*section#fotos .ver_pesquisa {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: #077697;
    border: 1px solid #077697;
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 15px 30px;
    transition: all .6s;
}

section#fotos .ver_pesquisa:hover {
    color: #FFFFFF;
    border: 1px solid #077697;
    background: #077697;
}*/


/* guia */

section.guia h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #077697;
    text-align: center;
    margin-bottom: 3rem;
}

section.guia h1::after {
    content: '';
    display: block;
    background-image: url(../img/line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

section.guia .nav-pills .nav-link {
    border-radius: 0;
    padding: 15px;
}

section.guia .nav-pills .nav-link.active,
section.guia .nav-pills .show>.nav-link {
    color: #fff;
    background: #FE6601;
}

section.guia .nav-link {
    font-weight: normal;
    font-size: 17px;
    line-height: 27px;
    text-transform: uppercase;
    color: #FE6601;
}

section.guia .nav-pills .nav-link {
    border-radius: 0;
    padding: 15px;
    border: 1px solid #FE6601;
}

section.guia .nav-pills .nav-link.active::after,
section.guia .nav-pills .show>.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #FE6601;
    position: absolute;
    bottom: -24px;
    margin-left: 9.8%;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

section.guia_interna li{
    font-size: 16px;
    /*color: #58585d;*/

}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

footer .nav2 .nav-pills .nav-link:hover{
    color: #fff;
}

footer {
    background: #FE6601;
    background-size: 400% 400%;
    -webkit-animation: AnimationName 22s ease infinite;
    -moz-animation: AnimationName 22s ease infinite;
    -o-animation: AnimationName 22s ease infinite;
    animation: AnimationName 22s ease infinite;
}

footer h5 {
    font-weight: 800;
    font-size: 17px;
    line-height: 242.8%;
    text-transform: uppercase;
    color: #FFFFFF;
}

footer a {
    font-weight: 300;
    font-size: 15px;
    line-height: 242.8%;
    text-align: left;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: all .6s;
    border-bottom: 1px solid transparent;
}

footer a:hover {
    color: #FFFFFF;
}


/* pages internas */


/* servicos */

section.servicos .owl-theme .owl-dots .owl-dot.active span,section.servicos .owl-theme .owl-dots .owl-dot:hover span{
    background: white;
}

section.servicos {
    margin: 0;
    padding: 5rem 0;
   /* background: #f8f8f8; */
}

section.servicos h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #077697; 
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

section.servicos h1::after {
    content: '';
    display: block;
    background-image: url(../img/line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

section.servicos .media {
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 15px;
    border-radius: 5px;
}

section.servicos h5 {
    color: #2583b5;
}

section.servicos.uteis h5 {
    color: #ffffff;
}

section.servicos .media {
    margin-bottom: 2rem;
    background: #fff;*
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    height: 200px;
    transition: .6s;
}
section.servicos.uteis .media {
    margin-bottom: 2rem;
    background: #00556f;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    height: 200px;
    transition: .6s;
}

section.servicos .media:hover {
    transition: .6s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
    border-radius: 25px;
}

.modal-dialog{
    max-width: 800px!important;
}

section.servicos .modal-body a {
    color: #FFAB1D;
}

section.servicos .modal-body {
    color: #7f7f7f;
}

section.servicos p {
    color: #7f7f7f;
    font-size: 16px;
    text-align: center!important;
}

section.servicos ul li{
    color: #7f7f7f;
    font-size: 16px;
}

section.servicos h5{
    color: #a5a5a5 !important;
}
section.uteis h5{
    color: #ffffff !important;
}
section.servicos .modal {
    padding-right: 0 !important;
}

section.servicos .media:hover img {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

section.section-servicos {
    background-color: white;
    padding: 4rem 0;
    background: #2883b5;
}

section.section-servicos h5{
     width: auto!important;
     margin: 0 auto;
     text-align: center
}
section.section-servicos img{
    width: auto!important;
     margin: 0 auto;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}


/* conheca_natal */

section.conheca_natal {
    margin: 0;
    padding: 5rem 0;
    /*background: #f8f8f8;*/
}

section.conheca_natal h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #077697;
    text-align: center;
    margin-bottom: 3rem;
}

section.conheca_natal h1::after {
    content: '';
    display: block;
    background-image: url(../img/line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

section.conheca_natal .media-orange{
    background:#ff802a!important;
}
section.conheca_natal .media-orange h5{
    color: #FFFFFF;
}

section.conheca_natal .media {
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 15px;
    border-radius: 5px;
}



section.conheca_natal h5 {
    color: #fff;
}

section.conheca_natal .media {
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    height: auto;
    transition: .6s;
}

section.conheca_natal .media:hover {
    transition: .6s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
    border-radius: 25px;
}

section.conheca_natal .modal-body a {
    color: #FFAB1D;
}

section.conheca_natal .modal-body {
    color: #7f7f7f;
}

section.conheca_natal p {
    color: #7f7f7f;
    font-size: 16px;
}

section.conheca_natal .modal {
    padding-right: 0 !important;
}

section.conheca_natal .media:hover img {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

section.conheca_natal .video {
    border: 5px solid #FFAB1D;
    border-radius: 5px;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}


/* Guia interna */

section.guia_interna .nav-tabs {
    border-bottom: none;
}

section.guia_interna .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ff990d;
    background-color: #fff;
    border: 2px solid #ffaf21a1;
    border-radius: 5px;
}

section.guia_interna a:hover {
    color: #ff990d;
    text-decoration: underline;
    transition: .6s;
}

section.guia_interna .nav-tabs .nav-link:hover {
    border-color: transparent;
}

section.guia_interna .tab-pane {
    margin-bottom: 3rem;
}

section.guia_interna {
    min-height: 75vh;
    margin: 0;
    padding: 5rem 0;
   /* background: #f8f8f8;*/
}

section.guia_interna h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #077697;
    text-align: center;
    margin-bottom: 3rem;
}

section.guia_interna h1::after {
    content: '';
    display: block;
    background-image: url(../img/line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

section.guia_interna .tab-content h5, .tab-pane h5{
    color: #545454!important;
}

section.guia_interna h5 {
    color: #2583b5;
    transition: .6s;
}

section.dicas_viagem .media:hover{
    background: #f96603;
}
section.dicas_viagem .media:hover h5{
    color: white!important;
}

section.guia_interna .media {
    margin-bottom: 2rem;
    background: #fe6600;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    height: auto;
    transition: .6s;
}

section.guia_interna .nav-pills :is(a:nth-child(2),a:nth-child(7)) .media{
    background: #CE191B;
}

section.guia_interna .nav-pills :is(a:nth-child(3),a:nth-child(8)) .media{
    background: #b2bb23;
}

section.guia_interna .nav-pills :is(a:nth-child(4),a:nth-child(9)) .media{
    background: #cd066c;
}

section.guia_interna .nav-pills a:nth-child(5) .media{
    background: #2583b5;
}

section.guia_interna .media:hover {
    transition: .6s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
    border-radius: 25px;
}

section.guia_interna .modal-body a {
    color: #FFAB1D;
}

section.guia_interna .modal-body {
    color: #7f7f7f;
}

section.guia_interna p {
    color: #7f7f7f;
    font-size: 16px;
}

section.fazer-natal .media img{
    width: 90px;
    height: 90px;
}

section.fazer-natal .item:nth-child(1) h5, section.fazer-natal .item:nth-child(6) h5{
    color: #ffab34;
}

section.fazer-natal :is(.item:nth-child(2),.item:nth-child(7)) h5{
    color: #CE191B;
}

section.fazer-natal :is(.item:nth-child(3),.item:nth-child(8)) h5{
    color: #b2bb23;
}

section.fazer-natal :is(.item:nth-child(4),.item:nth-child(9)) h5{
    color: #cd066c;
}

section.fazer-natal a{
    color: #828282;
}

section.fazer-em-natal-content p{
    text-align: left!important;
}

/* galeria */


/* section galeria */

section.galeria_fotos {
    margin: 0;
    padding: 5rem 0;
    /*background: #f8f8f8;*/
}

section.galeria_fotos h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 58px;
    text-transform: uppercase;
    color: #077697;
    text-align: center;
    margin-bottom: 3rem;
}

section.galeria_fotos h1::after {
    content: '';
    display: block;
    background-image: url(../img/line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 3px;
}

section.galeria_fotos img {
    margin-bottom: 1rem;
}

section.galeria_fotos .page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #ff9708;
    background-color: #f8f8f8;
    border: 1px solid #f8f8f8;
}

section.galeria_fotos .page-link:hover {
    z-index: 2;
    color: #f8f8f8;
    text-decoration: none;
    background-color: #ff9c0f;
    border-color: #ffac1f;
}


/* noticias */

section.noticias .card-link {
    color: #ff9b0d;
    transition: .6s;
}

section.noticias .card-link:hover {
    color: #077697;
    transition: .6s;
}

section.noticias .card {
    margin-top: 1rem;
}

section.noticias .page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #ff9708;
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

section.noticias .page-link:hover {
    z-index: 2;
    color: #ffffff;
    text-decoration: none;
    background-color: #ff9c0f;
    border-color: #ffac1f;
}


.linha-topo{
    width: 100%;
    height: 7px;
    content:'';
    background-color:#CE181A;
    position: relative;
    top: 10px;
    margin-top:20px;
    margin-left: 51rem;
}

.linha-topo-2{
    width: 100%;
    height: 7px;
    content:'';
    background-color:#f96603;
    margin-left: 54rem;
    margin-bottom: 2rem;
}


/* media */
@media(max-width: 1024px){
    .linha-topo{
    width: 62%;
    height: 7px;
    content:'';
    background-color:#CE181A;
    position: relative;
    top: 10px;
    margin-top:20px;
    margin-left: 38%;
}

.linha-topo-2{
    width: 53%;
    height: 7px;
    content:'';
    background-color:#f96603;
    margin-left: 52%;
    margin-bottom: 2rem;
}
}

@media(max-width:767px) {
    .section-fotos .galeryContainer .card .card__head {
        font-size: 0.9em;
    }
    section.banner .owl-dots {
        bottom: 10px;
    }
    section.banner .owl-dots .owl-dot span {
        width: 16px;
        height: 16px;
        margin: 0 7px;
    }
    section.agenda .card-title {
        margin-bottom: .75rem;
        padding-left: 10px;
        font-weight: bold;
        font-size: 16px;
        line-height: 27px;
        color: #FFFFFF;
    }
    section.agenda span {
        font-weight: bold;
        font-size: 15px;
        line-height: 77.6%;
        color: #FFFFFF;
    }
    section.agenda p {
        display: table;
        border: 1px solid #fff;
        padding: 5px 5px;
        font-weight: bold;
        font-size: 27px;
        line-height: 107.6%;
        color: #FFFFFF;
    }
    section.guia .nav {
        flex-direction: column;
    }
    .navbar-light .navbar-nav .nav-link {
        color: rgb(255 255 255);
    }
    .nav-item .dropdown .dropdown-toggle {
        font-weight: normal;
        font-size: 15px;
        line-height: 27px;
        text-transform: uppercase;
        color: #ffffff;
    }
    ul li{
   color: #2883b5;
   line-height: 24px;
   padding: 12px;
}
ul li:nth-child(2n+1){
   color: #d12729;
}

ul li span{
     color: #4D4D4D;
     font-size: 16px !important;
}

.title-map{
    font-size: 18px !important;
    color: #4D4D4D;
    font-weight: 500;
}
.title-disc{
    font-size: 20px !important;
    line-height: 26px;
}

.title-map-leste{
    font-size: 20px !important;
    font-weight: 500;
    margin-bottom: 5px;
}

.region{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: -40px;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.region h1 {
    color: #d12729;
    font-family: 'roboto';
    font-style: italic;
    font-weight: bold;
    font-size: 30px !important;
    text-align: center;
}

.region img{
    width: 35px;
    position: relative;
    right: 10px;
    bottom: 3px;

}

.img-region{
    border-radius: 0px 20px !important;    
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}
.natal{
   margin: 2rem auto 1rem;
   display: block;
   width:80%;
   max-width: 600px;
}

.natal-title{
    color: #696969;
    font-weight:bold;
    font-size: 30px;
}
.linha-topo{
    width: 700px;
    height: 7px;
    content:'';
    background-color:#CE181A;
    float: right; 
    position: relative;
    top: 10px;
    left: -150px; 
    margin-top:20px;
}

.linha-topo-2{
    width: 700px;
    height: 7px;
    content:'';
    background-color:#f96603;
    float: right;
}

.map-title{
    color: #696969;
    font-weight:bold;
    font-size: 30px;
    text-align: center;
    margin-top: 10px;

}
.map-title-dic{
    display: flex;
    flex-direction: column;

}

.linha-topo1{
    width: 54% !important;
    
}
.linha-topo2{
    width: 65% !important;
   
}
section.noticias a{
    font-size: 23px;
}

		}


section.mapa-interativo ul li{
   color: #2883b5;
   line-height: 24px;
}
section.mapa-interativo ul li:nth-child(2n+1){
   color: #d12729;
}

section.mapa-interativo ul li span{
     color: #4D4D4D;
     font-size: 18px;
}

.title-map{
    font-size: 24px !important;
    color: #4D4D4D;
    font-weight: 500;
}
.title-disc{
    font-size: 20px !important;
    line-height: 26px;
}

.title-map-leste{
    font-size: 20px !important;
    font-weight: 500;
    margin-bottom: 5px;
}

.region{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: -40px;
    justify-content: center;
    margin-bottom: 2rem;
}

.region h1 {
    color: #d12729;
    font-family: 'roboto';
    font-style: italic;
    font-weight: bold;
    font-size: 46px;
    text-align: center;
}

.region img{
    width: 35px;
    position: relative;
    right: 10px;
    bottom: 3px;

}

.img-region{
    width: 60%;
    border-radius: 0px 40px;    
}

.natal{
    margin: 2rem auto 1rem;
    width: 80%;
    max-width: 600px;
}

.natal-title{
    color: #696969;
    font-weight: bold;
}

.linha-topo1{
    width: 700px;
    height: 7px;
    content:'';
    background-color:#CE181A;
    float: left; 
    position: relative;
    top: 10px;right: -150px; 
    margin-top:-7px;
}
.linha-topo2{
    width: 700px;
    height: 7px;
    content:'';
    background-color:#f96603;
    float: left;
}
.mapa-interativo .card-info-map {
    scroll-behavior: smooth;
}

@media(max-width:1999px){
    .dropdown-item {
        font-weight: 500;
        color: #7f7f7f;
        font-size: 16px;
        text-align: center;
    }
}
@media(max-width: 1198px){
    .input-group {
    margin-top: 10px;
    }
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
	color: #ffffff;
}
.card-img-top{
    object-fit: cover;
    width: 100%;
    height: 200px;
}

@media(max-width: 1199px){
    .texto_branco{
        color: #ffffff;
    }

}