.itens_mobile {
    display: block !important;
}

.itens_main {
    display: none !important;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* - - - - - GERAL - - - - - */
.container {
    padding: 0 5%;
}

.section-title {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
}

.btn {
    min-width: 100px;
    padding: 0 10px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    font-weight: 600;
}

.page-hero {
    height: 30vh;
    min-height: 160px;
    padding-bottom: 30px;
}

.page-hero__breadcrumb {
    font-size: 16px;
    letter-spacing: 1px;
}

.page-hero.alt {
    padding-bottom: 30px;
}

/*menu_aberto*/
#nav.menu_aberto {
    height: 100%;
    padding: 90px 5% 60px;
    overflow: auto;
}

#sub1.menu_aberto {
    height: 180px;
    padding: 15px 0 45px;
}

#sub2.menu_aberto {
    height: 25%;
    padding: 0 5% 45px;
}

#sub3.menu_aberto {
    height: 25%;
    padding: 0 5% 45px;
}

#sub4.menu_aberto {
    height: 25%;
    padding: 0 5% 45px;
}

/*menu_aberto*/

/*menu_fechado*/
#nav.menu_fechado {
    height: 0;
    padding: 0;
    overflow: hidden;
}

#sub1.menu_fechado {
    height: 0;
    padding: 0;
}

#sub2.menu_fechado {
    height: 0;
    padding: 0;
}

#sub3.menu_fechado {
    height: 0;
    padding: 0;
}

#sub4.menu_fechado {
    height: 0;
    padding: 0;
}

/*menu_fechado*/

/* - - - barra_mobile - - - */
#barra_mobile {
    width: 100%;
    height: 50px;
    position: fixed;
    display: flex !important;
    bottom: 0;
    text-align: center;
    z-index: 5;

    /* 🔥 FUNDO PRETO */
    background-color: #111;
}

#barra_mobile>* {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    width: calc(100% / 5);
    height: 50px;
}

/* 🔥 BOTÃO MENU DESTACADO */
#barra_mobile #menu_mobile {
    background-color: var(--color-gold);
}

/* ÍCONE MENU */
#barra_mobile #menu_mobile span {
    top: 50%;
    left: 50%;
    width: 22px;
    position: absolute;
    transform: translate(-50%, -50%);
}

/* LINHAS */
#barra_mobile #menu_mobile span,
#barra_mobile #menu_mobile span:before,
#barra_mobile #menu_mobile span:after {
    background-color: #111;
    height: 3px;
    border-radius: 10px;
}

#barra_mobile #menu_mobile span:before,
#barra_mobile #menu_mobile span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
}

/* MENU FECHADO */
#barra_mobile #menu_mobile.closed span:before {
    top: -8px;
}

#barra_mobile #menu_mobile.closed span:after {
    bottom: -8px;
}

/* MENU ABERTO (X) */
#barra_mobile #menu_mobile.open span {
    background: transparent;
}

#barra_mobile #menu_mobile.open span:before {
    transform: rotate(45deg);
    top: 0;
}

#barra_mobile #menu_mobile.open span:after {
    transform: rotate(-45deg);
    top: 0;
}

/* 🔥 DIVISÓRIA */
#barra_mobile>*:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;

    /* dourado suave */
    background-color: rgba(255, 215, 0, 0.3);
}

#barra_mobile>*:nth-last-child(-n+2):after {
    content: none;
}

/* ÍCONES */
#barra_mobile>* img {
    height: 24px;
    margin: 13px auto;

    /* 🔥 branco elegante */
    filter: brightness(0) invert(1);
}

/* - - - unidade - - - */
.unidades {
    width: 20%;
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
    z-index: 2;
    transition: 0.3s;

    /* 🔥 fundo preto */
    background-color: #111;
    padding: 10px 0;
}

/* BOTÕES REDES */
.unidades a {
    width: 45px;
    display: block;
    margin: 0 auto 12px;

    /* 🔥 fundo dourado */
    background-color: var(--color-gold);
    border-radius: 50%;
    padding: 10px;

    transition: 0.3s;
}

.unidades a:hover {
    transform: scale(1.1);
}

/* ÍCONES REDES */
.unidades a img {
    width: 100%;
    height: auto;

    /* preto dentro do dourado */
    filter: brightness(0);
}

/* - - - - - GERAL - - - - - */


/* - - - - - TEMPLATE - - - - - */

/* - - - HEADER - - - */

header #nav {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    bottom: 0;
    gap: 0;
    left: 0;

    overflow: scroll;
    box-sizing: border-box;
    transition: 0.3s;

    /* 🔥 FUNDO PRETO */
    background-color: #111;

    z-index: 3;
    margin: 0;
    padding: 20px 0;
}

.logo_menu {
    width: 70px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -35px;
}

.logo_menu img {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;
}

/* LISTA */
header #nav .nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 0;
    flex-wrap: wrap;
    flex-direction: column;
}

/* ITEM */
header #nav .nav__item {
    width: 100%;
    text-align: center;
}

/* LINK */
header #nav .nav__link {
    display: block;
    width: 180px;
    position: relative;

    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;

    margin: 0 auto 10px;
    padding-bottom: 10px;

    /* 🔥 TEXTO BRANCO */
    color: #fff;

    text-align: center;

    transition: 0.3s;
}

.nav__item.nav__item--has-sub .nav__link{margin-bottom: 5px; padding-bottom: 5px;}

header #nav .nav__link::after {
    content: "";
    display: block;
    position: absolute;
    width: 100px;
    height: 1px;
    background-color: #282828;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
}

/* HOVER */
header #nav .nav__link:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

/* BOTÃO RESERVA */
header #nav .header__action {
    margin-top: 10px;
}

.nav__item--has-sub {
    position: relative;
}

/* submenu escondido */
.nav__sub {
    position: relative;
    top: auto;
    left: auto;
    background: none;
    min-width: 100%;

    opacity: initial;
    visibility: visible;
    padding-bottom: 20px;
}

/* itens */
.nav__sub li {
    list-style: none;
}

.nav__sub a {
    padding: 0 0 10px;
    color: #fff;
    font-size: 14px;
}

/* hover no item pai */
.nav__item--has-sub:hover .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header #nav .btn--gold {
    display: inline-block;
    padding: 0 20px;
    background-color: var(--color-gold);
    color: #111;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;

    transition: 0.3s;
}

header #nav .btn--gold:hover {
    background-color: #fff;
    color: #111;
}

.header__contact-info {
    display: none;
}

.header__logo {
    width: 100px;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -45px;
}

.header__logo img {
    width: 100%;
    height: auto;
    position: relative;
}

/* - - - HEADER - - - */

/* - - - FOOTER - - - */
.footer {
    padding-bottom: 50px;
}

.newsletter__container {
    flex-direction: row;
    flex-wrap: wrap;
}

.newsletter__container::before {
    display: none;
    /* remove aquele fundo lateral */
}

.news-col {
    width: 100% !important;
    justify-content: center;
    text-align: center;
    padding: 10px;
    height: 55px;
}

.news-col--left {
    font-size: 13px;
}

.news-col--center input {
    text-align: center;
}

.newsletter__btn {
    padding: 10px 0;
}


.footer__grid {
    flex-direction: column;
    padding: 50px 0;
    gap: 40px;
}

.footer__col {
    width: 100%;
    padding: 0;
    text-align: center;
}

/* remove divisórias */
.footer__col:nth-child(2) {
    border: none;
}


.footer__title {
    text-align: center;
}

.footer__title::after {
    margin: 10px auto 0;
}

.footer__col:nth-child(3) .footer__title {
    font-size: 18px;
}


.footer__menu {
    padding: 0;
}

.footer__menu a {
    font-size: 13px;
}


.footer__text {
    font-size: 13px;
}


.footer__socials {
    justify-content: center;
}

.social-link img {
    height: 22px;
}


.footer__bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer__copy {
    font-size: 12px;
    display: none;
}

/* - - - FOOTER - - - */

/* - - - - - TEMPLATE - - - - - */

/* - - - - - INDEX - - - - - */

/* - - - BANNER - - - */
.hero-home {
    width: 100%;
    height: 100vh;
    max-height: 600px;
}

.hero-home__banner {
    width: 100%;
    object-fit: cover;
}

.hero-home__banner .item {
    width: 100%;
    height: 100vh;
    max-height: 600px;
}

.hero-home__content {
    width: 100% !important;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto !important;
    padding: 30px 5% 0 !important;
}

.hero-home__title-wrapper {
    border-left: none !important;
    padding-left: 0 !important;

    border-top: none;
    padding-top: 0;
    text-align: center;
}

.hero-home__title {
    font-size: 22px;
    letter-spacing: 2px;
	margin-bottom: 5px;
}

.hero-home__subtitle {
    font-size: 15px;
    line-height: 17px;
}

.hero-home__subtitle span {
    font-size: 25px;
}

.hero-home__desc {
    font-size: 12px;
}

/* - - - BANNER - - - */

/* - - - ABOUT - - - */
.about-home {
    padding: 0 0 40px;
    margin-top: -80px;
}

.about-home__container {
    flex-direction: column-reverse;
    gap: 40px;
}

.about-home__text-col {
    text-align: center;
}

.about-home__desc {
    font-size: 14px;
}

.about-home__desc p {
    font-size: 14px;
}

.about-home .btn {
    align-self: center;
}

.about-home__img-wrapper {
    margin: 20px 0;
}

.about-home__img-wrapper::before,
.about-home__img-wrapper::after {
    width: 100%;
    height: 100%;
    margin: 0;
    left: 0;
    top: 0;
}

.about-home__img {
    height: 300px;
    object-fit: cover;
}

/* 🔥 AJUSTA POSIÇÃO DAS CAMADAS */
.about-home__img-wrapper::before {
    transform: translate(10px, -10px);
}

.about-home__img-wrapper::after {
    transform: translate(-10px, 10px);
}

.badge-24h {
    top: 15px;
    left: 10px;
    width: 90px;
}

.badge-24h__top {
    font-size: 9px;
    padding: 4px 0;
}

.badge-24h__bottom {
    font-size: 30px;
    padding: 6px 0;
}

/* - - - ABOUT - - - */

/* - - - CONVENIÊNCIAS - - - */
.conveniencias {
    padding: 60px 0;
}

.conveniencias__title {
    font-size: 26px;
}

.conveniencias__subtitle {
    font-size: 12px;
    letter-spacing: 1px;
}

.conveniencias__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.conv-card {
    max-width: 400px;
    margin: 0 auto 45px;
}

.conv-card__img-box {
    border-radius: 10px;
    height: 200px;
}

.conv-card__img-box img {
    height: 100%;
    object-fit: cover;
}

.conv-card__title {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.conv-card__text p {
    font-size: 13px;
}

.conveniencias__action {
    margin-top: 0;
}

.conveniencias__action .btn {
    font-size: 14px;
    padding: 5px 15px;
    width: 100%;
    max-width: 300px;
    line-height: normal;
    height: auto;
}

/* - - - ACOMODAÇÕES - - - */
.acomodacoes {
    padding: 60px 0;
}

.acomodacoes__header .section-subtitle {
    font-size: 18px;
    padding: 0 15px;
}

.acomodacoes__title::after {
    width: 180px;
}

.acomodacoes__grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.acomodacao-card {
    max-width: 400px;
    margin: 0 auto;
}

.acomodacao-card__img {
    height: 200px;
    overflow: hidden;
}

.acomodacao-card__content {
    padding: 20px 15px 35px;
}

.acomodacao-card__title {
    font-size: 18px;
}

.acomodacao-card__desc {
    font-size: 12px;
}

.btn-detalhes {
    font-size: 11px;
    padding: 10px 18px;
    bottom: -18px;
}

/* - - - FEIRAS E LOCAIS - - - */
.feiras-locais {
    padding: 60px 0;
}

.feiras-locais__container {
    flex-direction: column;
    gap: 40px;
}

.feiras-col,
.locais-col {
    flex: 1;
}

.feiras-locais__title {
    font-size: 24px;
    text-align: center;
}

.feiras-locais__subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.feira-item {
    flex-direction: column;
    height: auto;
    gap: 15px;
    padding-bottom: 20px;
}

.feira-item__img-box {
    width: 100%;
    height: 150px;
}

.feira-item__img-box img {
    width: 100%;
    display: block;
}

.feira-item__title {
    font-size: 16px;
    text-align: center;
}

.feira-item__desc {
    font-size: 13px;
    text-align: center;
}

.locais-col__desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.locais-list {
    align-items: center;
}

.local-card {
    width: 100%;
    max-width: 350px;
    height: 160px;
}

.local-card__overlay {
    font-size: 14px;
}

.local-card__badge-time {
    font-size: 11px;
}

.mt-20 {
    text-align: center;
}

/* - - - - - INDEX - - - - - */

/* - - - - - FLAT - - - - - */
.flat-about {
    padding: 60px 0 0;
}

.flat-about__header .section-title::after {
    width: 180px;
}

.flat-about__text {
    padding: 0 15px;
    font-size: 14px;
}

.flat-gallery__main {
    width: 100%;
    max-width: 90%;
    height: auto;
    margin: 0 auto 20px;
}

.flat-gallery__main a {
    position: relative;
    display: block;
    z-index: 2;
}

.flat-gallery__main img {
    width: 100%;
    height: auto;
    display: block;
}

.flat-gallery__main::before {
    width: 110%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.flat-gallery__main::after {
    width: 105%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.flat-gallery__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 0 10px;
}

.flat-gallery__grid img {
    aspect-ratio: 4/3;
}

.testimonials {
    padding: 60px 0;
}

.testimonials__grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-card {
    height: auto;
    padding: 20px 15px;
}

.testimonial-card::after {
    display: none;
}

.testimonial-text {
    font-size: 14px;
}

.testimonial-author {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

/* - - - - - APARTAMENTO - - - - - */
.room-details {
    padding: 40px 0;
}

.room-details__container {
    flex-direction: column-reverse;
    gap: 40px;
}

.room-details__title {
    font-size: 22px;
    text-align: center;
    display: none;
}

.room-details__subtitle {
    font-size: 16px;
    text-align: center;
    display: none;
}

.room-details__subtitle span {
    font-size: 16px;
}

.room-details__gallery .room-details__title,
.room-details__gallery .room-details__subtitle {
    display: block;
}

.room-details__desc {
    text-align: center;
    font-size: 14px;
}

.comodidades-title {
    text-align: center;
    font-size: 22px;
}

.comodidades-list {
    justify-content: center;
    gap: 15px;
}

.comodidades-list li {
    width: calc(33.333% - 10px);
}

.room-details__img-col::before {
    top: 20px;
    left: -10px;
    width: 100%;
    height: 100%;
}

.room-details__img-col::after {
    top: 10px;
    left: -5px;
    width: 100%;
    height: 100%;
}

.room-details__main-img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.room-details__main-img::before {
    width: 110%;
    height: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.room-details__main-img::after {
    width: 105%;
    height: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.room-details__main-img img {
    height: 300px;
}

.room-details__thumbs {
    justify-content: center;
}

.room-details__thumbs img {
    width: 30%;
    height: 90px;
}

.other-rooms {
    padding: 60px 0;
}

.other-rooms__title {
    font-size: 22px;
}

.other-rooms__subtitle {
    font-size: 16px;
}

.other-rooms__grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.room-card {
    max-width: 350px;
    margin: 0 auto;
}

.room-card__img {
    height: 220px;
}

.room-card__title {
    font-size: 18px;
}

.room-card__desc {
    font-size: 13px;
}

/* - - - - - CONTATO - - - - - */
.contato-section {
    padding: 60px 0;
}

.contato-section__container {
    flex-direction: column;
    gap: 0;
}

.contato-form-box {
    width: 100%;
    padding: 25px;
    border-radius: 20px;
}

.contato-form-box__title {
    font-size: 20px;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
}

.form-group textarea {
    height: 120px;
}

.form-action {
    text-align: center;
}

.btn-submit {
    width: 100%;
}

.contato-info-box {
    padding: 0;
    text-align: center;
    display: none;
}

.contato-info__title {
    font-size: 22px;
    margin-bottom: 25px;
}

.contato-info__label {
    font-size: 18px;
}

.contato-line {
    justify-content: center;
}

.contato-line span {
    font-size: 16px;
}

.icon-img {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.contato-line span+.icon-img {
    margin-left: 10px;
}

.contato-map {
    height: 250px;
    display: none;
}

/* - - - - - FEIRAS & EVENTOS - - - - - */
.list-feiras {
    padding: 40px 0;
}

.list-feiras .container {
    justify-content: center;
}

.feiras_page {
    width: 250px;
    height: 350px;
    margin: 0 25px 35px;
}

.feiras_page .img_feiras {
    height: 150px;
}

.feiras_page__title {
    margin: 10px auto;
    font-size: 16px;
}

.feiras_page__description {
    font-size: 12px;
}

.feiras_page__hour {
    width: 95px;
    height: 30px;
    top: 105px;
    right: 25px;
}

.feiras_page__hour p {
    font-size: 11px !important;
}

.feiras_page__hour img {
    width: 12px;
    height: 12px;
    margin: 9.5px 6px auto auto;
}

/* - - - - - EVENTO - - - - - */
.evento-mapa {
    padding: 0;
    box-sizing: border-box;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.evento-mapa__container {
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 5% !important;
}

.evento-mapa__left {
    width: 100%;
    margin-bottom: 20px;
    height: 265px;
}

.evento-mapa__left img,
.evento-mapa__left iframe {
    width: 100%;
    border-radius: 4px;
}

.evento-mapa__right {
    width: 100%;
    text-align: center;
}

.evento-mapa__title {
    font-size: 18px;
}

.evento-mapa__tempo {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evento-mapa__desc {
    font-size: 14px;
}

.evento-btn {
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    letter-spacing: 1px;
}

.evento-detalhes {
    padding: 20px 5%;
}

.evento-detalhes__container {
    display: flex;
    gap: 0;
    flex-direction: column;
}

.evento-detalhes__left {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.evento-detalhes__title {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.evento-detalhes__left p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 14px;
}

.evento-detalhes__cta {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
}

/* CARDS */
.evento-detalhes__right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-card {
    height: 220px;
}

/* overlay */
.room-card__overlay {
    padding: 10px 10px 65px;
    font-size: 16px;
    text-align: center;
}

/* botão */
.room-card__btn {
    position: absolute;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}


.list-locais {
    padding: 40px 0;
}

.list-locais .container .local-card {
    margin: 0 auto 40px;
}

.local-card.page {
    height: auto;
}

.local-card.page .texto {
    padding: 10px;
}

.local-card.page .texto .titulo {
    font-size: 18px;
}

.local-card.page .texto p {
    font-size: 14px;
    font-weight: 400;
    color: #817f7f;
    text-align: center;
}