@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Light.woff2") format("woff2"),
    url("../font/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.woff2") format("woff2"),
    url("../font/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Medium.woff2") format("woff2"),
    url("../font/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Bold.woff2") format("woff2"),
    url("../font/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

button {
  border-style: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

body {
  font-family: "Poppins", sans-serif;
}

.containerCenter {
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px 0;
}

.site-content {
  overflow: hidden;
}

/* ==== HEADER ==== */

#header {
  background-color: #1c1c1c;
  padding: 20px 40px;
  color: white;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.logo-normal img {
  width: 113px;
  height: auto;
}

.main-nav {
  flex: 1 1 auto;
  text-align: center;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
}

.box-idioma {
  flex: 0 0 auto;
}

.language-list {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 300;
}

.language-list li {
  color: #aaa;
  cursor: pointer;
}

.language-list .active-lang {
  color: white;
}

.sub-menu-toggle {
  display: none;
}

.menu-wrapper li {
  position: relative;
}

.menu-wrapper li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 40px;
  width: 100%;
}

.menu-wrapper li:hover>ul.sub-menu,
.menu-wrapper li ul.sub-menu:hover {
  display: block;
}

.menu-wrapper li ul.sub-menu {
  display: none;
  position: absolute;
  top: 181%;
  left: -57px;
  background: #fff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  padding: 12px 0;
  z-index: 999;
  pointer-events: auto;
}

.menu-wrapper li ul.sub-menu li {
  padding: 5px 32px;
  white-space: nowrap;
}

.menu-wrapper li ul.sub-menu li a {
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.menu-wrapper li ul.sub-menu li a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  background-image: url("/hotelmonaco/wp-content/themes/hotelmonaco/assets/img/menu-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.header-mobile {
  display: none;
}

@media (max-width: 768px) {
  #header {
    padding: 0;
  }

  .desktop-only {
    display: none;
  }

  .header-mobile {
    display: block;
    background-color: #1c1c1c;
    padding: 16px 20px;
  }

  .header-mobile .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #open-menu-mobile img {
    display: block;
    width: 18px;
    height: auto;
  }

  .header-mobile .logo-normal {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-mobile .logo-normal img {
    width: 92px;
    height: auto;
  }

  .header-mobile .box-idioma {
    display: flex;
    align-items: center;
    font-size: 12px;
  }

  .header-mobile .language-list {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .header-mobile .language-list li {
    color: #aaa;
    font-weight: 300;
    cursor: pointer;
  }

  .header-mobile .language-list .active-lang {
    color: #fff;
    font-weight: 500;
  }

  #menu-mobile.main-nav-mobile {
    position: fixed;
    background-color: #000;
    z-index: 9999;
    padding: 22px 24px 100px;
    overflow-y: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .main-nav {
    text-align: start;
  }

  #menu-mobile .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 57px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  #menu-mobile .main-nav ul li a {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
  }

  #menu-mobile .main-nav ul.sub-menu {
    display: none;
  }

  #menu-mobile .main-nav ul li.menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    background-image: url("/hotelmonaco/wp-content/themes/hotelmonaco/assets/img/arrow-up.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
  }

  #menu-mobile .main-nav ul li.menu-item-has-children.is-open>a::after {
    transform: rotate(180deg);
  }

  .footer-menu-mobile {
    border-top: 1px solid #2e2e2e;
    padding-top: 20px;
  }

  .footer-menu-mobile ul.contato-info-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-menu-mobile ul li {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-menu-mobile ul li a {
    color: #fff;
    text-decoration: underline;
  }

  #menu-mobile .menu-item-has-children>ul {
    background: transparent;
    margin-top: 8px;
    position: static;
  }

  #menu-mobile .menu-item-has-children>ul li a {
    font-size: 14px;
    line-height: 32px;
    color: #fff;
  }

  .menu-wrapper li ul.sub-menu li a::after {
    display: none;
  }

  .menu-wrapper li ul.sub-menu li {
    padding: 8px 18px;
  }
}

/* ==== FIM HEADER ==== */

/* ==== FOOTER ==== */

#footer {
  background-color: #1c1c1c;
  color: #fff;
  padding: 40px 0 170px;
  font-family: "Arial", sans-serif;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column ul,
.contato-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li,
.contato-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column li i {
  font-size: 16px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social .social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.footer-social .social-links li a img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}

.footer-bottom .assinatura {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom .assinatura img {
  height: 18px;
}

.assinatura a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
}

.footer-bottom .copyright {
  font-size: 13px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-bottom .assinatura {
  font-size: 12px;
  color: #fff;
}

.footer-bottom .assinatura img {
  width: 90px;
  margin-left: 6px;
  vertical-align: middle;
}

.footer-nav[hidden] {
  display: none;
}

#footer-mobile {
  display: none;
}

@media (max-width: 768px) {
  #footer {
    display: none;
  }

  #footer-mobile {
    display: block;
    background-color: #0f0f0f;
    color: #fff;
    padding: 40px 20px 90px;
  }

  #footer-mobile a {
    color: #fff;
    text-decoration: none;
  }

  #footer-mobile .container {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
  }

  .footer-logo img {
    width: 120px;
    height: auto;
  }

  .footer-social .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-social img {
    width: 24px;
    height: 24px;
  }

  .footer-middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-section {
    border-top: 1px solid #333;
    padding-top: 16px;
  }

  .footer-toggle {
    background: #0f0f0f;
    color: #fff;
    padding: 12px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #444;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .toggle-icon {
    font-size: 20px;
  }

  .footer-nav {
    padding: 10px 0;
  }

  .footer-nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .footer-nav ul li {
    margin-bottom: 8px;
  }

  .footer-nav ul li a {
    color: #ccc;
    font-size: 15px;
  }

  .footer-nav ul.contato-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-nav ul.contato-info svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    border: none;
    justify-content: center;
    padding-inline: 0;
  }
}

/* ==== FIM FOOTER ==== */

/* ==== HOME ==== */
.site-main {
  padding: 0;
}

.video-banner {
  width: 100%;
  display: block;
}

.widget-area {
  background-color: #000;
}

/* ==== CARROSEL SERVIÇOS - HOME ==== */
.servicos-carousel-mobile {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  content: none !important;
}

.slick-prev,
.slick-next {
  background: transparent !important;
}

@media (max-width: 1024px) {
  .servicos-carousel-mobile {
    display: block;
    padding: 40px 16px;
    background-color: #fff;
  }

  .carousel-servicos .item {
    padding: 10px;
    text-align: center;
  }

  .carousel-servicos .item img {
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto 12px;
    display: block;
  }

  .titulo-servico {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 300;
    color: #333;
    text-align: center;
    text-decoration: underline;
  }

  .item {
    text-decoration: none;
  }

  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
    z-index: 100;
  }

  .slick-prev {
    top: 22px;
    left: 5px;
  }

  .slick-next {
    top: 22px;
    right: 5px;
  }

  .carousel-servicos .slick-slide {
    padding: 0 10px;
  }
}

@media (min-width: 768px) {
  .carousel-servicos .item img {
    max-width: 300px;
  }
}

/* ==== FIM CARROSEL SERVIÇOS -HOME ==== */

/* ==== ACOMODAÇÕES - HOME ==== */

.box-texto-acomodacoes {
  width: 1220px;
  background-color: #fff;
  padding: 0px 26px;
  padding-bottom: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.texto-acomodacoes {
  font-size: 30px;
  font-weight: 300;
  color: #333;
  line-height: 32px;
  margin-bottom: 30px;
  max-width: 930px;
}

.link-acomodacoes {
  background: #000;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  padding: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.link-acomodacoes span {
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 10px 20px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
  border-radius: 30px;
  width: 236px;
  height: 46px;
}

.link-acomodacoes:hover {
  border-color: black;
}

.link-acomodacoes:hover span {
  border: 2px solid white;
}

.bloco-servicos {
  padding: 80px 0;
}

.bloco-servicos__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1220px;
  margin: 0 auto;
}

.servicos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicos-lista li {
  position: relative;
  font-size: 40px;
  color: #999;
  margin-bottom: 15px;
  cursor: pointer;
  padding-left: 28px;
  transition: all 0.3s ease;
}

.servicos-lista li a {
  text-decoration: none;
  color: inherit;
}

.servicos-lista li::after {
  content: "";
  position: absolute;
  right: -140px;
  top: 32px;
  width: 90px;
  height: 18px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTYiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCA5NiAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xIDlIOTVNOTUgOUw4Ny4xMjUgMU05NSA5TDg3LjEyNSAxNyIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIi8+DQo8L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
}



.servicos-lista li:hover,
.servicos-lista li.ativo {
  color: #000;
  text-decoration: underline;
}

.servicos-lista li:hover::after,
.servicos-lista li.ativo::after {
  opacity: 1;
}

.servicos-imagem img {
  max-width: 700px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.acomodacoes {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .bloco-servicos {
    display: none;
  }

  .box-texto-acomodacoes {
    display: block;
  }

  .texto-acomodacoes {
    font-size: 24px;
  }
}

/* ==== FIM ACOMODAÇÕES -HOME ==== */

/* ==== VITRINE SUÍTES - HOME ==== */

.suites-carousel {
  position: relative;
}

.produto-suíte {
  position: relative;
}

.imagem-produto img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100% !important;
}

.caixa-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 45px 70px;
  width: 600px;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.caixa-conteudo h2 {
  font-size: 32px;
  margin: 0 0 15px;
  font-weight: 500;
  line-height: 42px;
}

.caixa-conteudo .breve-descricao {
  font-size: 22px;
  color: #333;
  margin-bottom: 60px;
  font-weight: 300;
}

.cta-categoria {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.cta-conteudo {
  cursor: pointer;
}

.cta-conteudo a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.cta-categoria img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.lista-atributos {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-atributos li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 22px;
  color: #444;
}

.lista-atributos li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.suites-carousel .slick-dots {
  position: absolute;
  top: calc(50% - 310px);
  left: calc(15% - 58px);
  z-index: 10;
  padding-left: 0;
  width: auto;
  height: 20px;
}


.suites-carousel .slick-dots li {
  list-style: none;
  margin: 1px 66px;
  width: 16px;
}

.suites-carousel .slick-dots li button {
  width: 140px;
  height: 3px;
  background-color: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.suites-carousel .slick-dots li.slick-active button {
  background-color: #f1c40f;
  opacity: 1;
}

.suites-carousel .slick-dots li button:before {
  display: none;
}

@media (max-width: 1025px) {
  .caixa-overlay {
    padding: 12px 70px;
    width: 486px;
    height: auto;
  }

  .caixa-conteudo h2 {
    font-size: 22px;
  }

  .caixa-conteudo .breve-descricao {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .lista-atributos li {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .suites-carousel .slick-dots {
    top: calc(50% - 216px);
    left: calc(15% - 88px);
  }

  .suites-carousel .slick-dots li {
    margin: 1px 67px;
  }

  .suites-carousel .slick-dots li button {
    width: 130px;
  }
}

@media (min-width: 381px) and (max-width: 380px) {
  .suites-carousel .slick-dots {
    top: calc(50% - 206px);
    left: calc(15% - 59px);
  }
}

@media (min-width: 381px) and (max-width: 768px) {
  .suites-carousel .slick-dots {
    top: calc(50% - 167px);
    left: calc(14% - 45px);
  }
}

@media (max-width: 768px) {
  .caixa-overlay {
    position: relative;
    left: auto;
    transform: none;
    margin: -38px auto 0;
    padding: 30px 20px;
    width: 100%;
    max-width: 84%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
  }

  .caixa-conteudo h2 {
    font-size: 24px;
    line-height: 30px;
    text-align: left;
  }

  .caixa-conteudo .breve-descricao {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: left;
  }

  .lista-atributos li {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .suites-carousel .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .suites-carousel .slick-dots li button {
    width: 80px;
  }

  .suites-carousel .slick-dots li {
    margin: 0 40px;
  }
}

/* ==== FIM VITRINE SUÍTES - HOME ==== */

/* ==== EVENTOS - HOME ==== */
.content-eventos {
  display: flex;
  gap: 20%;
  align-items: center;
  margin: 0 auto;
  flex-wrap: nowrap;
  padding: 50px 0;
  justify-content: flex-end;
}

.box-texto-eventos {
  max-width: 400px;
}

.carrossel-eventos {
  max-width: 800px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.slick-servicos {
  width: 100%;
}

.slick-servicos .wrapper {
  padding-bottom: 60px;
  margin: 0;
}

.slick-servicos .item {
  text-decoration: none;
  padding: 0 8px;
  box-sizing: border-box;
}

.slick-servicos .item img {
  width: 100%;
  height: auto;
  border-radius: 4px 4px 0 0;
  display: block;
}

.titulo-eventos {
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
}

.texto-eventos {
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  margin-bottom: 35px;
}

.titulo-evento {
  font-size: 22px;
  color: #1c1c1c;
  font-weight: 300;
  margin-top: 5px;
  padding: 16px 36px;
  border: 1px solid #ccc;
  background-color: #fff;
  text-align: start;
}

.slick-servicos .slick-arrow {
  position: absolute;
  bottom: 15px;
  width: 94px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.slick-prev-eventos {
  left: 2%;
  top: 95%;
}

.slick-next-eventos {
  top: 95%;
  right: 67%;
}

.slick-servicos .slick-arrow img {
  width: 100%;
  height: auto;
}

.slick-servicos .slick-dots {
  display: none;
}

@media (max-width: 1600px) {
  .content-eventos {
    gap: 5%;
    padding: 145px 0 145px 50px;
  }
}

@media (max-width: 1024px) {
  .carrossel-eventos {
    max-width: 528px;
  }

  .titulo-eventos {
    font-size: 32px;
  }

  .slick-servicos .slick-next-eventos,
  .slick-servicos .slick-prev-eventos {
    width: 27px;
    height: 25px;
  }
}

@media (max-width: 768px) {
  .content-eventos {
    flex-direction: column;
    padding: 0 20px;
  }

  .titulo-eventos {
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 5px;
  }

  .texto-eventos {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
  }

  .box-texto-eventos {
    margin-bottom: 30px;
  }

  .slick-next-eventos {
    top: 88%;

    right: 71%;
  }

  .slick-prev-eventos {
    top: 88%;
  }

  .slick-servicos .wrapper {
    padding-bottom: 105px;
  }
}

/* ==== FIM EVENTOS -HOME ==== */

/* ==== RESTAURANTES - HOME ==== */

.restaurantes {
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-texto-restaurantes {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1220px;
  gap: 175px;
  border-top: 1px solid #999999;
  padding-top: 70px;
}

.titulo-restaurantes {
  max-width: 750px;
  font-weight: 300;
  font-style: Light;
  font-size: 32px;
  line-height: 32px;
}

@media (max-width: 768px) {
  .box-texto-restaurantes {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin: 0 20px;
    padding: 70px 0;
  }

  .titulo-restaurantes {
    font-size: 24px;
  }
}

.bloco-restaurantes {
  width: 100%;
  overflow: hidden;
  margin-top: 54px;
  margin-bottom: 55px;
}

.bloco-restaurantes__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.box-img-restaurantes {
  position: relative;
  width: 49.5%;
}

.box-img-restaurantes img {
  width: 100%;
  height: auto;
  display: block;
}

.conteudo-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 40px 30px;
  text-align: center;
  z-index: 2;
}

.box-img-restaurantes:hover .conteudo-hover {
  opacity: 1;
}

.logo-restaurante {
  width: 300px;
  height: 100px;
  margin-bottom: 90px;
}

.descricao-restaurante {
  font-size: 22px;
  margin-bottom: 36px;
  max-width: 570px;
}

.atributos-restaurante {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 500px;
}

.atributo {
  border: 1px solid #000;
  padding: 4px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
}

.slick-restaurantes-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .box-img-restaurantes {
    width: 100%;
    margin-bottom: 20px;
  }

  .logo-restaurante {
    width: 200px;
    height: auto;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .descricao-restaurante {
    font-size: 18px;
  }

  .atributo {
    font-size: 14px;
  }

  .bloco-restaurantes {
    display: none;
  }

  .slick-restaurantes-mobile {
    display: block !important;
    padding-left: 22px;
    overflow: visible;
    padding-bottom: 70px;
  }

  .slide-restaurante {
    width: 85vw !important;
    margin-right: 16px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .imagem-fundo {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
  }

  .conteudo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    text-align: center;
    color: white;
  }

  .logo-restaurante img {
    width: 180px;
    height: auto;
  }

  .atributos-restaurante {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  .atributo {
    background-color: white;
    color: black;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
  }

  .texto-externo {
    font-size: 17px;
    padding: 16px 0;
    color: #333;
    line-height: 20px;
  }

  .slick-track {
    display: flex !important;
  }

  .slick-slide {
    display: inline-block !important;
    float: none;
  }

  .slick-prev-restaurantes {
    top: 90%;
    left: 8%;
  }

  .slick-prev-restaurantes img,
  .slick-next-restaurantes img {
    width: 27px;
  }

  .slick-next-restaurantes {
    top: 90%;
    right: 65%;
  }
}

/* ==== FIM RESTAURANTES - HOME ==== */

/* ==== CONHECER MAIS - HOME ==== */

.bloco-conheca-mais {
  background: #fef8ed;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bloco-conheca-mais .container {
  max-width: 1220px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 106px;
  align-items: center;
}

.bloco-conheca-mais .imagem {
  flex: 1 1 50%;
}

.bloco-conheca-mais .img-desktop {
  width: 100%;
  display: block;
}

.bloco-conheca-mais .img-mobile {
  display: none;
  width: 100%;
}

.bloco-conheca-mais .conteudo {
  flex: 1 1 40%;
  color: #000;
}

.bloco-conheca-mais .conteudo p {
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 70px;
  font-weight: 300;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .bloco-conheca-mais .imagem {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bloco-conheca-mais .img-desktop {
    width: auto;
  }
}

@media (max-width: 768px) {
  .bloco-conheca-mais .container {
    flex-direction: column;
    gap: 36px;
  }

  .bloco-conheca-mais .img-desktop {
    display: none;
  }

  .bloco-conheca-mais .img-mobile {
    display: block;
  }

  .bloco-conheca-mais .conteudo p {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
  }
}

/* ==== FIM CONHECER MAIS - HOME ==== */

/* ==== TOPO PÁGINAS - GERAL ==== */
.topo-paginas {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.topo-paginas__imagem {
  width: 100%;
  display: block;
  height: auto;
}

.topo-paginas {
  display: flex;
  justify-content: center;
}

.topo-paginas__conteudo {
  width: 100%;
  height: 100%;
  max-width: 1220px;
  position: absolute;
  top: 0;
}

.topo-paginas__conteudo .container {
  max-width: 515px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background-color: #fff;
  padding: 71px;
}

.topo-paginas__breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
}

.topo-paginas__titulo {
  font-size: 40px;
  font-weight: 300;
  line-height: 50px;
  margin: 0;
}

.breadcrumb-link {
  font-size: 14px;
  color: #999999;
  margin-right: 6px;
}

.breadcrumb-current {
  margin-left: 6px;
}

.topo-paginas--mobile {
  display: none;
}

@media (max-width: 768px) {
  .topo-paginas--desktop {
    display: none;
  }

  .topo-paginas--mobile {
    display: block;
  }

  .topo-paginas__titulo {
    font-weight: 300;
    font-size: 28px;
    line-height: 34px;
  }

  .topo-paginas__conteudo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .topo-paginas__conteudo .container {
    max-width: 300px;
    padding: 25px;
    max-height: 210px;
  }
}

/* ==== FIM -TOPO PÁGINAS - GERAL ==== */

/* ============================== */
/* ======== PÁGINA EVENTOS ====== */
/* ============================== */

/* ==== INTRODUÇÃO ==== */

.bloco-introducao {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 24px;
  text-align: start;
}

.bloco-introducao p {
  font-size: 22px;
  line-height: 32px;
  color: #1c1c1c;
}

.itens-descricao-wrapper {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 100px;
}

.item-descricao {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 220px;
  height: 235px;
  margin: 10px;
  padding: 24px 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.item-descricao h3 {
  font-weight: 300;
  font-size: 50px;
  color: #d39f1f;
}

.item-descricao p {
  margin-top: 10px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 22px;
}

.bloco-introducao-mobile {
  display: none;
}

@media (max-width: 768px) {
  .bloco-introducao {
    display: none;
  }

  .bloco-introducao-mobile {
    display: block;
  }

  .bloco-introducao-mobile .descricao-mobile {
    padding: 40px 30px;
    font-size: 14px;
    line-height: 20px;
  }

  .itens-descricao-wrapper-mobile .slider {
    max-width: 620px;
    margin: 0 auto;
    overflow: visible !important;
  }

  .itens-descricao-wrapper-mobile .slick-slide {
    margin-right: 15px;
    box-sizing: border-box;
    height: auto;
  }

  .itens-descricao-wrapper-mobile .slick-prev {
    top: 120%;
    left: 6%;
  }

  .itens-descricao-wrapper-mobile .slick-next {
    top: 120%;
    right: 70%;
  }

  .itens-descricao-wrapper-mobile .slick-prev img,
  .itens-descricao-wrapper-mobile .slick-next img {
    width: 27px;
  }

  .itens-descricao-wrapper-mobile {
    width: 100%;
    margin-bottom: 107px;
    padding-left: 30px;
    /* mantém espaçamento da tela */
    overflow: visible;
    /* necessário para slides vazarem */
  }

  .item-descricao-mobile {
    width: 100%;
    padding: 20px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .item-descricao-mobile h3 {
    font-weight: 300;
    font-size: 50px;
    line-height: 50px;
    color: #d39f1f;
    margin-bottom: 35px;
  }

  .item-descricao-mobile p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
}

/* ==== FIM - INTRODUÇÃO ==== */

/* ==== BLOCO-ESPAÇO-SERVIÇOS ==== */

.bloco-espacos-servicos {
  padding: 0 20px;
  margin-bottom: 107px;
}

.bloco-espacos-servicos .topo {
  border-top: 1px solid rgba(153, 153, 153, 0.5);
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 100px;
}

.bloco-espacos-servicos .topo p {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
  text-align: left;
  max-width: 55%;
  line-height: 42px;
}

.bloco-espacos-servicos .carrossel {
  max-width: 1220px;
  width: 100%;
  margin: 73px auto 0;
  padding-bottom: 10px;
}

.bloco-espacos-servicos .slide {
  flex: 0 0 auto;
  width: 290px;
  height: 450px;
}

.bloco-espacos-servicos .slide .imagem {
  border-radius: 12px;
  height: 450px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bloco-espacos-servicos .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);

  border-radius: 12px;
}

.bloco-espacos-servicos .overlay h3 {
  color: white;
  font-size: 20px;
  font-weight: 300;
}

.bloco-espacos-servicos .carrossel .slick-slide {
  margin: 0 10px;
}

.prev-eventos {
  top: 110%;
  left: 40%;
}

.next-eventos {
  top: 110%;
  left: 52%;
}

@media (max-width: 768px) {
  .bloco-espacos-servicos .topo {
    flex-direction: column;
    align-items: flex-start;
    padding: 62px 0;
  }

  .bloco-espacos-servicos .topo p {
    font-size: 24px;
    text-align: left;
    line-height: 32px;
    max-width: none;
    margin-bottom: 30px;
  }

  .bloco-espacos-servicos {
    padding: 0;
    margin: 0 10px;
  }

  .bloco-espacos-servicos .carrossel {
    margin: 0;
    padding-bottom: 107px;
    overflow: visible !important;
  }

  .bloco-espacos-servicos .carrossel .slick-slide {
    margin-right: 10px;
    outline: none;
  }

  .bloco-espacos-servicos .carrossel .slick-slide:last-child {
    margin-right: 0;
  }

  .prev-eventos {
    top: 90%;
    left: 5%;
  }

  .next-eventos {
    top: 90%;
    left: 22%;
  }

  .prev-eventos img,
  .next-eventos img {
    width: 27px;
  }
}

/* ==== FIM -BLOCO-ESPAÇO-SERVIÇOS ==== */

/* ==== BLOCO-DIFERENCIAIS ==== */

.itens-diferenciais {
  padding: 105px 20px;
  background-color: rgba(211, 159, 31, 0.1);
}

.itens-diferenciais__container {
  max-width: 1220px;
  margin: 0 auto;
}

.itens-diferenciais__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.itens-diferenciais__list-item::marker {
  color: #d39f1f;
}

.itens-diferenciais__list {
  list-style: disc inside;
  padding: 0;
  margin: 0;
}

.itens-diferenciais__list-item {
  margin-bottom: 10px;
  font-size: 22px;
  color: #333;
  line-height: 32px;
}

.itens-diferenciais__items {
  max-width: 532px;
}

.itens-diferenciais__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .itens-diferenciais__content {
    flex-direction: column;
  }

  .itens-diferenciais__list-item {
    font-size: 16px;
    line-height: 22px;
  }

  .itens-diferenciais__items,
  .itens-diferenciais__image {
    flex: 1 1 100%;
  }

  .itens-diferenciais__image {
    margin-top: 20px;
  }
}

/* ==== FIM - BLOCO-DIFERENCIAIS ==== */

/* ==== BLOCO-GALERIA-EVENTOS ==== */

.evento-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 103px 0;
}

.evento-tabs__nav {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 2px solid #e5e5e5;
  flex-wrap: wrap;
}

.evento-tabs__button {
  width: 376px;
  text-transform: uppercase;
  background: none;
  border: none;
  font-weight: 500;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.evento-tabs__button:hover,
.evento-tabs__button.is-active {
  color: #d49e28;
  border-bottom: 3px solid #d49e28;
}

.evento-tabs__content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.evento-tabs__pane {
  display: none;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0;
  max-width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
  flex-grow: 0 !important;
}

.evento-tabs__pane.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.evento-tabs__gallery {
  flex: 1 1 50%;
  max-width: 600px;
}

.evento-tabs__slider img {
  width: 100%;
  height: auto;
  display: block;
}

.evento-tabs__text {
  flex: 1 1 45%;
  max-width: 500px;
}

.evento-tabs__description p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
  color: #444;
}

.evento-tabs__button-cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.evento-tabs__button-cta:hover {
  background-color: #333;
}

.evento-tabs__slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.evento-tabs__slider .slick-dots li {
  width: 90px;
}

.evento-tabs__slider .slick-dots {
  bottom: -33px;
}

.evento-tabs__slider .slick-dots li button {
  width: 100%;
  height: 3px;
  background-color: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
}

.evento-tabs__slider .slick-dots li button::before {
  display: none;
}

.evento-tabs__slider .slick-dots li.slick-active button {
  background-color: #000;
}

/* ==== FIM - BLOCO-GALERIA-EVENTOS ==== */

/* ==== COMPONENTE MOBILE - EVENTO ABAS ==== */

.evento-abas-mobile {
  display: none;
}

@media (max-width: 768px) {
  .evento-tabs {
    display: none;
  }

  .evento-abas-mobile {
    display: block;
    padding: 107px 16px;
  }

  .evento-abas-mobile__item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 16px;
  }

  .evento-abas-mobile__toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .evento-abas-mobile__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin: 0;
  }

  .evento-abas-mobile__icon {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .evento-abas-mobile__item.active .evento-abas-mobile__icon {
    transform: rotate(180deg);
  }

  .evento-abas-mobile__content {
    display: none;
    padding: 12px 0;
  }

  .evento-abas-mobile__text {
    margin: 33px 0;
    font-size: 14px;
    color: #444;
  }

  .evento-abas-mobile__slider img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }

  .evento-abas-mobile__slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .evento-abas-mobile__slider .slick-dots li {
    width: 70px;
  }

  .evento-abas-mobile__slider .slick-dots {
    bottom: -33px;
  }

  .evento-abas-mobile__slider .slick-dots li button {
    width: 100%;
    height: 4px;
    background-color: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .evento-abas-mobile__slider .slick-dots li button::before {
    display: none;
  }

  .evento-abas-mobile__slider .slick-dots li.slick-active button {
    background-color: #000;
  }
}

/* ==== FIM COMPONENTE MOBILE - EVENTO ABAS ==== */

/* ============================== */
/* ======== PÁGINA HOSPEDAGEM ====== */
/* ============================== */

/* ==== DESCRIÇÃO HOSPEDAGEM ==== */

.descricao-hospedagem__container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 110px 0;
}

.descricao-hospedagem__texto {
  max-width: 1100px;
  width: 100%;
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
}

@media (max-width: 768px) {
  .descricao-hospedagem__container {
    margin: 40px 0;
    padding: 0 30px;
  }

  .descricao-hospedagem__texto {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
  }
}

/* ==== FIM DESCRIÇÃO HOSPEDAGEM ==== */

/* ==== BLOCO INFORMAÇÕES HOTEL ==== */
.bloco-informacoes-hotel {
  width: 100%;
}

.topo-informacoes {
  background-color: #fdf7eb;
  padding: 60px 0 130px;
}

.topo-informacoes .container {
  max-width: 1100px;
  margin: 0 auto;
}

.lista-informacoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 40px;
  list-style-type: disc;
  padding-left: 20px;
}

.lista-informacoes li {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #1c1c1c;
}

.lista-informacoes li::marker {
  color: #cba349;
}

.base-informacoes {
  background-color: #fff;
  padding: 40px 0 110px;
}

.base-informacoes .container {
  max-width: 1220px;
  margin: -119px auto 0 auto;
  padding: 0 20px;
}

.blocos-diferenciais {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.bloco-diferencial {
  width: 220px;
  height: 210px;
  background-color: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  width: calc(20% - 16px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.bloco-diferencial p {
  font-size: 14px;
  color: #1e1e1e;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .bloco-diferencial {
    width: calc(100% / 1.2 - 16px);
    /* Ajusta para 1.2 itens visíveis no mobile */
    height: auto;
    /* Deixa a altura ajustável */
    margin-right: 30px;
    /* Adiciona espaçamento entre os itens */
  }

  .blocos-diferenciais {
    justify-content: flex-start;
    /* Alinha os itens no início para uma boa visualização */
    gap: 20px;
  }

  .base-informacoes .container {
    padding: 0;
  }

  .bloco-diferencial img {
    margin-bottom: 58px;
  }

  .bloco-diferencial p {
    max-width: 180px;
  }

  .blocos-diferenciais .slick-prev {
    top: 121%;
    left: 5%;
  }

  .blocos-diferenciais .slick-next {
    top: 121%;
    right: 72%;
  }

  .topo-informacoes {
    padding: 41px 30px 130px;
  }

  .lista-informacoes li {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
  }
}

/* ==== FIM - BLOCO INFORMAÇÕES HOTEL ==== */

/* ==== BLOCO CARD PRODUTOS SUITES ==== */
.card-produto-suite {
  border-top: 1px solid #999;
  max-width: 1200px;
  margin: 0 auto;
  padding: 107px 20px;
}

.card-produto-suite__intro {
  font-weight: 300;
  font-size: 31px;
  line-height: 42px;
  margin-bottom: 40px;
  color: #444;
  max-width: 900px;
}

.card-produto-suite__item {
  margin-bottom: 80px;
}

.card-produto-suite__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-produto-suite__info {
  max-width: 900px;
  width: 100%;
  background: #fff;
  margin: -83px auto 0;
  padding: 50px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.card-produto-suite__titulo {
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 14px;
}

.card-produto-suite__descricao {
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  color: rgba(51, 51, 51, 1);
  margin-bottom: 45px;
}

.card-produto-suite__atributos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 40px;
  padding: 0;
  list-style-position: inside;
  color: #333;
  margin-bottom: 34px;
}

.card-produto-suite__atributos li {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}

.card-produto-suite__icones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
  padding: 0;
  list-style: none;
  margin-bottom: 45px;
}

.card-produto-suite__icones li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #333;
}

.card-produto-suite__icones img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.card-produto-suite__observacoes {
  background-color: #f9f5ee;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

.slider-suites {
  position: relative;
}

.slick-arrow-hospedagem {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  z-index: 10;
  padding: 0;
  cursor: pointer;
}

.slick-arrow-hospedagem.slick-prev {
  left: 40px;
}

.slick-next.slick-arrow-hospedagem {
  right: 40px;
}

.slick-arrow-hospedagem .arrow-img {
  width: 32px;
  height: auto;
}

.slick-arrow-hospedagem {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-produto-suite-mobile {
  display: none;
}

@media (max-width: 768px) {
  .card-produto-suite {
    display: none;
  }

  .card-produto-suite-mobile {
    display: block;
    border-top: 1px solid #999;
  }

  .card-produto-suite-mobile__intro {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    margin: 70px 30px 30px 30px;
    color: #444;
    max-width: 100%;
  }

  .card-produto-suite-mobile__item {
    margin-bottom: 60px;
  }

  .card-produto-suite-mobile__slide img {
    width: 100%;
    height: auto;
  }

  .card-produto-suite-mobile__info {
    margin: -69px auto 0;
    width: 85%;
    background: #fff;
    padding: 31px 24px;
    border: 1px solid #9999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
  }

  .card-produto-suite-mobile__titulo {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  .card-produto-suite-mobile__descricao {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
  }

  .card-produto-suite-mobile__atributos {
    display: flex;
    flex-direction: column;
    padding: 28px 20px;
  }

  .card-produto-suite-mobile__atributos li {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .card-produto-suite-mobile__icones {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
  }

  .card-produto-suite-mobile__icones li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
  }

  .card-produto-suite-mobile__icones span {
    font-size: 14px;
    color: #333;
  }

  .card-produto-suite-mobile__icones img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .card-produto-suite-mobile__observacoes {
    background-color: #f9f5ee;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    text-align: center;
  }

  .lista-informacoes {
    display: flex;
    flex-direction: column;
  }

  .slider-suites-mobile {
    position: relative;
  }

  .slick-arrow-hospedagem-mobile {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    z-index: 10;
    padding: 0;
    cursor: pointer;
  }

  .slick-arrow-hospedagem-mobile.slick-prev {
    left: 10px;
  }

  .slick-arrow-hospedagem-mobile.slick-next {
    right: 10px;
  }

  .slick-arrow-hospedagem-mobile .arrow-img {
    width: 24px;
    height: auto;
  }

  .slick-arrow-hospedagem-mobile {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ==== FIM - BLOCO CARD PRODUTOS SUITES ==== */

/* ============================== */
/* ======== PÁGINA LAZER ====== */
/* ============================== */

/* ==== BLOCO INTRODUÇÃO PÁGINA LAZER ==== */

.lazer {
  padding: 60px 20px;
  background-color: #fff;
}

.lazer__container {
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.lazer__descricao p {
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  color: #333;
  margin-bottom: 40px;
}

.lazer__lista {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lazer__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  font-size: 20px;
  color: #333;
}

.lazer__icone {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.carrossel-espaco-lazer {
  display: block;
  padding-top: 50px;
  padding-bottom: 205px;
}

.carrossel-espaco-lazer__slide {
  transition: opacity 0.3s ease;
  opacity: 0.4;
}

.carrossel-espaco-lazer__slide.slick-center {
  opacity: 1;
}

.carrossel-espaco-lazer__slider .slick-slide {
  margin: 0 5px;
}

.carrossel-espaco-lazer__slider img {
  width: 100%;
  height: auto;
  display: block;
}

.carrossel-espaco-lazer__slider .slick-prev,
.carrossel-espaco-lazer__slider .slick-next {
  width: 94px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.carrossel-espaco-lazer__slider .slick-prev {
  left: 44%;
  top: 110%;
}

.carrossel-espaco-lazer__slider .slick-next {
  right: 42%;
  top: 110%;
}

.carrossel-espaco-lazer__slider .slick-prev:focus,
.carrossel-espaco-lazer__slider .slick-next:focus {
  outline: none;
}

.carousel-lazer-mobile {
  display: none;
}

@media (max-width: 768px) {
  .lazer__descricao p {
    font-size: 14px;
    line-height: 20px;
  }

  .lazer__item {
    font-size: 14px;
    line-height: 20px;
  }

  .carrossel-espaco-lazer {
    display: none;
  }

  .carousel-lazer-mobile {
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 105px;
  }

  .carrossel-lazer-mobile__slider {
    overflow: visible !important;
  }

  .carrossel-lazer-mobile__slider .slick-slide {
    margin: 10px 0;
  }

  .carrossel-lazer-mobile__slider .slick-list {
    margin-right: 0;
  }

  .carrossel-lazer-mobile__slider .slick-prev {
    top: 115%;
    left: 5%;
  }

  .carrossel-lazer-mobile__slider .slick-next {
    top: 115%;
    right: 66%;
  }

  .carousel__slide_mobile.slick-slide img {
    width: 100%;
    padding-left: 5px;
  }
}

/* ==== FIM - BLOCO INTRODUÇÃO PÁGINA LAZER ==== */

/* ============================== */
/* ======== PÁGINA GASTRONOMIA ====== */
/* ============================== */

/* ==== DESCRIÇÃO PÁGINA RESTAURANTES ==== */

.descricao-gastronomia {
  margin: 109px 0;
}

.descricao-gastronomia__container {
  max-width: 1100px;
  margin: 0 auto;
}

.descricao-gastronomia__texto {
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
}

@media (max-width: 768px) {
  .descricao-gastronomia {
    margin: 40px 0;
    padding: 0 30px;
  }

  .descricao-gastronomia__texto {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
  }
}

/* ==== FIM - DESCRIÇÃO PÁGINA RESTAURANTES ==== */

/* ==== CARD RESTAURANTE ==== */

.card-restaurante {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.card-restaurante__banner {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}

.card-restaurante__banner img {
  max-width: 1220px;
  width: 100%;
  margin-bottom: -140px;
}

.card-restaurante__conteudo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(153, 153, 153, 0.1);
  padding: 200px 30px 80px 30px;
}

.card-restaurante__descricao {
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 27px;
}

.card-restaurante__atributos {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.card-restaurante__atributo {
  margin: 10px 12px 0 0;
  padding: 4px 20px;
  border-radius: 10px;
  background-color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  border: 1px solid #000;
}

.card-restaurante__blocos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 70px;
}

.card-restaurante__horario-item {
  display: flex;
  align-items: flex-start;
  border-right: 1px solid #999;
}

.card-restaurante__diferencial-item {
  display: flex;
  align-items: flex-start;
  padding-left: 50px;
}

.card-restaurante__horario-lista {
  padding-left: 15px;
  padding-right: 50px;
  list-style: none;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}

.card-restaurante__diferencial-texto {
  max-width: 300px;
  width: 100%;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  padding-left: 15px;
}

.card-restaurante__banner-mobile {
  display: none;
}

.cardapio-desktop {
  max-width: 1200px;
  width: 100%;
  padding: 110px 0;
}

.cardapio-desktop__grid {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.cardapio-desktop__listaWrapper {
  width: 50%;
  display: flex;
  align-items: flex-end;
  height: 547px;
  position: relative;
  flex-wrap: wrap;
}

.cardapio-desktop__lista {
  max-width: 480px;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
}

.cardapio-desktop__item {
  width: 100%;
}

.cardapio-desktop__item.ativo {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cardapio-desktop__item-titulo {
  width: 100%;
  color: #999;
  display: flex;
  font-weight: 300;
  font-size: 30px;
  line-height: 45px;
}

.cardapio-desktop__item.ativo .cardapio-desktop__item-titulo {
  width: 100%;
  max-width: 480px;
  font-weight: 300;
  font-size: 30px;
  line-height: 60px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  color: #000;
  text-decoration: underline;
}

.cardapio-desktop__item-descricao {
  max-width: 478px;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  display: none;
}

.cardapio-desktop__item.ativo .cardapio-desktop__item-descricao {
  display: block;
}

.cardapio-desktop__item.ativo .cardapio-desktop__item-descricao {
  display: block;
}

.cardapio-desktop__item-icone {
  display: none;
}

.cardapio-desktop__item-icone.ativo {
  display: block;
}

.cardapio-desktop__imagem {
  display: none;
}

.cardapio-desktop__imagem.ativo {
  display: block;
}

@media (max-width: 768px) {
  .cardapio-desktop {
    display: none;
  }

  .card-restaurante__banner-desk {
    display: none;
  }

  .card-restaurante__banner-mobile {
    display: block;
  }

  .card-restaurante__descricao {
    font-size: 14px;
    line-height: 20px;
  }

  .card-restaurante__atributos {
    justify-content: flex-start;
  }

  .card-restaurante__atributo {
    font-size: 12px;
    padding: 4px 12px;
  }

  .card-restaurante__blocos {
    flex-direction: column;
  }

  .card-restaurante__horario-item {
    border: none;
    margin-bottom: 20px;
  }

  .card-restaurante__diferencial-item {
    padding: 0;
  }

  .card-restaurante__diferencial-texto,
  .card-restaurante__horario-texto {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ==== FIM - DESCRIÇÃO PÁGINA RESTAURANTES ==== */

/* ==== CARDAPIO ==== */
.cardapio-mobile {
  display: none;
}

@media (max-width: 768px) {
  .cardapio-mobile {
    display: block;
    width: 100%;
    padding: 100px 30px;
  }

  .cardapio-mobile__item {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
  }

  .cardapio-mobile__toggle {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0;
  }

  .cardapio-mobile__label {
    font-weight: 300;
    font-size: 24px;
    line-height: 30px;
  }

  .cardapio-mobile__icon {
    transition: transform 0.3s ease;
    width: 16px;
  }

  .cardapio-mobile__toggle[aria-expanded="true"] .cardapio-mobile__icon {
    transform: rotate(180deg);
  }

  .cardapio-mobile__content {
    padding-top: 16px;
    display: none;
  }

  .cardapio-mobile__image {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    display: block;
  }

  .cardapio-mobile__description {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
  }
}

/* ==== FIM - CARDAPIO ==== */

/* ==== FIM - PÁGINA GASTRONOMIA ==== */

/* ============================== */
/* ======== PÁGINA TRANSLADO ====== */
/* ============================== */

/* ==== DESCRIÇÃO PÁGINA TRANSLADO ==== */

.descricao-translado {
  margin: 109px 0;
}

.descricao-translado__container {
  max-width: 1164px;
  margin: 0 auto;
}

.descricao-translado__texto {
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
}

@media (max-width: 768px) {
  .descricao-translado {
    margin: 40px 0;
    padding: 0 30px;
  }

  .descricao-translado__texto {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
  }
}

/* ==== FIM - DESCRIÇÃO PÁGINA TRANSLADO ==== */

.traslado {
  padding: 80px 40px;
  background-color: #f5f5f5;
}

.traslado__container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 78px;
  align-items: flex-start;
}

.traslado__informacoes {
  flex: 1;
}

.informacoes-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.informacoes-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.informacoes-item__icone {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 4px;
}

.informacoes-item__conteudo {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.informacoes-item__titulo {
  font-weight: 600;
  font-size: 20px;
}

.informacoes-item__lista {
  font-size: 20px;
  list-style: none;
  padding-left: 0;
}

.informacoes-item__lista li {
  margin-bottom: 4px;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}

.informacoes-item__extras {
  max-width: 520px;
  border: 1px solid rgba(153, 153, 153, 0.3);
  padding: 34px 42px;
  border-radius: 30px;
}

.informacoes-item__extras p {
  margin: 6px 0;
  font-size: 20px;
}

.informacoes-item__extras strong {
  font-weight: 600;
  color: #000;
}

.tabela-horario {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tabela-horario__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(153, 153, 153, 0.3);
  border-radius: 30px 30px 0 0;
}

.tabela-horario__icone {
  display: inline-block;
  margin-right: 20px;
}

.tabela-horario__titulo {
  font-size: 1rem;
  font-weight: 600;
}

.tabela-horario__conteudo {
  display: flex;
  justify-content: space-between;
}

.tabela-horario__coluna {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tabela-horario__item {
  width: 155px;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}

.tabela-horario__item:last-child {
  border-bottom: none;
}

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

.traslado__acordeao-mobile {
  display: none;
}

.mapa-hotel-wrapper {
  background-color: #f5f5f5;
}

.mapa-hotel {
  border-radius: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 125px;
}

.mapa-hotel iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .traslado__tabelas {
    display: none;
  }

  .traslado__container {
    flex-direction: column;
  }

  .traslado {
    padding: 40px 30px;
  }

  .traslado__acordeao-mobile {
    display: block;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #000;
  }

  .acordeao-traslado {
    background-color: #f1f1f1;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .acordeao-traslado__header {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(153, 153, 153, 0.1);
    border: none;
    width: 100%;
    padding: 16px;
    cursor: pointer;
    text-align: left;
    border-radius: 14px 14px 0 0;
  }

  .acordeao-traslado__icone {
    width: 24px;
    height: 24px;
  }

  .acordeao-traslado__titulo {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
  }

  .acordeao-traslado__seta {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .acordeao-traslado__header[aria-expanded="true"] .acordeao-traslado__seta {
    transform: rotate(-135deg);
  }

  .acordeao-traslado__conteudo {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 0 0 14px 14px;
  }

  .acordeao-traslado__coluna {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
  }

  .acordeao-traslado__item {
    font-size: 16px;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
  }

  .acordeao-traslado__item:last-child {
    border-bottom: none;
  }

  .js-acordeao-traslado-content {
    display: none;
  }

  .informacoes-item__titulo {
    font-size: 14px;
  }

  .informacoes-item__lista li {
    font-size: 14px;
  }

  .informacoes-item__icone {
    width: 30px;
    height: 30px;
  }

  .informacoes-item__extras p {
    font-size: 14px;
  }

  .informacoes-item__extras {
    padding: 20px;
  }

  .traslado__container {
    gap: 40px;
  }

  .mapa-hotel {
    padding: 0;
    border-radius: 0;
  }
}

/* ==== FIM - PÁGINA TRANSLADO ==== */

/* =================================== */
/* ======== PÁGINA FALE CONOSCO ====== */
/* =================================== */

.fale-conosco h2 {
  font-weight: 300;
  font-size: 40px;
  line-height: 50px;
  margin: 50px 0 10px 0;
}

.fale-conosco__container {
  max-width: 1300px;
  margin: 0 auto;
}

.fale-conosco__intro {
  width: 100%;
  margin-bottom: 40px;
}

.fale-conosco__intro p {
  max-width: 600px;
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
}

.fale-conosco__conteudo {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.fale-conosco__esquerda {
  flex: 1 1 50%;
}

.fale-conosco__formulario {
  flex: 1 1 45%;
  background: #fff;
  padding: 47px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  min-width: 320px;
}

.fale-conosco__lista {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.fale-conosco__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.fale-conosco__item span,
.fale-conosco__item a {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  text-decoration: none;
  color: #000;
}

.fale-conosco__icone {
  width: 24px;
  height: 24px;
}

.fale-conosco__mapa {
  margin-top: 82px;
}

.fale-conosco__mapa iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 0;
}

.fale-conosco__formulario form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fale-conosco__formulario form.wpcf7-form p {
  margin: 0;
}

.fale-conosco__formulario label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

.fale-conosco__formulario input[type="text"],
.fale-conosco__formulario input[type="email"],
.fale-conosco__formulario input[type="tel"],
.fale-conosco__formulario textarea {
  width: 100%;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 23px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.fale-conosco__formulario input[type="text"]:focus,
.fale-conosco__formulario input[type="email"]:focus,
.fale-conosco__formulario input[type="tel"]:focus,
.fale-conosco__formulario textarea:focus {
  border-color: #999;
  outline: none;
}

.fale-conosco__formulario textarea {
  height: 100px;
  padding: 14px 20px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  resize: none;
}

.fale-conosco__formulario input[type="submit"] {
  width: 100%;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.fale-conosco__formulario input[type="submit"]:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .fale-conosco__formulario {
    padding: 20px;
    min-width: 100%;
  }

  .fale-conosco h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .fale-conosco__intro p {
    font-size: 14px;
    line-height: 20px;
  }

  .fale-conosco__item span,
  .fale-conosco__item a {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
  }

  .fale-conosco {
    padding: 0 20px;
  }
}

/* ==== FIM - PÁGINA FALE CONOSCO ==== */

/* =================================== */
/* ======== PÁGINA SOBR NÓS ========== */
/* =================================== */

/* === VISIBILIDADE === */
.only-mobile {
  display: none;
}

.only-desktop {
  position: relative;
}

.sobre-nos__container {
  max-width: 1220px;
  margin: 0 auto;
}

.sobre-nos__content {
  display: flex;
  justify-content: flex-start;
}

.sobre-nos__coluna-texto {
  max-width: 800px;
  padding: 20px 0;
}

.sobre-nos__titulo {
  max-width: 383px;
  font-weight: 300;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 50px;
}

.sobre-nos__descricao {
  max-width: 690px;
  padding-bottom: 60px;
}

.sobre-nos__descricao p {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 18px;
}

.topicos__grid {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  border-top: 1px solid rgba(153, 153, 153, 1);
}

.topico__titulo {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  color: rgba(211, 159, 31, 1);
}

.topico__texto {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.topico__item {
  width: 100%;
  margin-bottom: 35px;
}

.topico__icone {
  margin-bottom: 5px;
  width: 50px;
  height: 50px;
}

.sobre-nos__imagem.only-desktop img {
  position: absolute;
  height: 100%;
  left: 80px;
}

/* === MOBILE === */

@media (max-width: 1440px) {
  .sobre-nos__imagem.only-desktop img {
    left: 50px;
  }

  .sobre-nos__coluna-texto {
    max-width: 700px;
  }
}

@media (max-width: 1024px) {
  .sobre-nos__imagem.only-desktop img {
    left: 12px;
  }

  .sobre-nos__coluna-texto {
    max-width: 600px;
  }
}

@media (max-width: 1800px) {
  .sobre-nos__imagem.only-desktop img {
    left: 80px;
  }

  .sobre-nos__coluna-texto {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .only-mobile {
    display: block;
  }

  .only-desktop {
    display: none;
  }

  .sobre-nos {
    display: flex;
    flex-direction: column;
  }

  .sobre-nos__content {
    flex-direction: column;
  }

  .sobre-nos__coluna-texto {
    flex: 0 0 70%;
    width: 100%;
    padding: 24px 30px;
  }

  .sobre-nos__titulo {
    font-size: 28px;
    line-height: 34px;
    max-width: 270px;
    margin-top: 30px;
    margin-bottom: 18px;
  }

  .sobre-nos__descricao p {
    font-size: 14px;
    line-height: 20px;
  }

  .topicos__grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .topico__item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 0;
  }

  .topico-box_texto {
    margin-left: 20px;
    margin-top: 10px;
  }

  .topico__texto {
    font-size: 14px;
    line-height: 20px;
  }

  .sobre-nos__imagem.only-mobile img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
  }
}

/* ===== FIM - PÁGINA SOBR NÓS ====== */

/* ======================================== */
/* ======== PÁGINA TRABALHE CONOSCO ====== */
/* ======================================= */

.trabalhe-conosco .container {
  max-width: 1220px;
  display: flex;
  margin: 0 auto;
}

.trabalhe__texto-e-formulario {
  padding-top: 20px;
}

.trabalhe__introducao h1 {
  font-weight: 300;
  font-size: 40px;
  line-height: 50px;
  margin-top: 48px;
  margin-bottom: 22px;
}

.trabalhe__introducao p {
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 56px;
  max-width: 620px;
}

.trabalhe__imagem-desktop {
  position: relative;
}

.trabalhe__imagem-desktop img {
  height: 100%;
  position: absolute;
  left: 156px;
}

.trabalhe__formulario {
  margin-bottom: 90px;
}

.trabalhe__formulario form {
  background-color: #fff;
  padding: 40px 30px 0 30px;
  max-width: 620px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.trabalhe__formulario label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  margin: 0;
}

.trabalhe__formulario input[type="text"],
.trabalhe__formulario input[type="email"],
.trabalhe__formulario input[type="tel"],
.trabalhe__formulario select,
.trabalhe__formulario input[type="file"] {
  width: 95%;
  padding: 12px 16px;
  border-radius: 23px;
  border: 1px solid #ccc;
  margin-left: 0;
  margin-top: 5px;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
  transition: border 0.3s;
}

.trabalhe__formulario input[type="file"] {
  padding: 12px;
  background-color: #fff;
  border: none;
}

.trabalhe__formulario input[type="text"]:focus,
.trabalhe__formulario input[type="email"]:focus,
.trabalhe__formulario input[type="tel"]:focus,
.trabalhe__formulario select:focus {
  border-color: #000;
}

.trabalhe__formulario select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
}

.trabalhe__formulario .form-button input[type="submit"] {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.trabalhe__formulario .form-button input[type="submit"]:hover {
  background-color: #333;
}

.trabalhe__formulario .wpcf7-form-control-wrap {
  display: block;
}

.trabalhe__imagem-mobile {
  display: none;
}

.trabalhe__conteudo {
  padding-top: 23px;
}

.wpcf7-form-control-wrap[data-name="arquivo-curriculo"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  cursor: pointer;
  position: relative;
}

.wpcf7-form-control-wrap[data-name="arquivo-curriculo"] input[type="file"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.wpcf7-form-control-wrap[data-name="arquivo-curriculo"]::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
  background-image: url("/hotelmonaco/wp-content/themes/hotelmonaco/assets/img/clip.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
}

.wpcf7-form-control-wrap[data-name="arquivo-curriculo"] .file-info {
  font-size: 16px;
  text-decoration: underline;
  color: rgba(153, 153, 153, 1);
  margin-left: 8px;
}

.wpcf7-spinner {
  background-color: #ffb500 !important;
  left: 53% !important;
  top: -35px !important;
}

.file-info {
  display: inline-block;
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .trabalhe__imagem-mobile {
    display: block;
  }

  .trabalhe__imagem-desktop {
    display: none;
  }

  .trabalhe__imagem-mobile img {
    width: 100%;
  }

  .trabalhe__introducao h1 {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 29px;
  }

  .trabalhe__introducao p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 35px;
  }

  .trabalhe__conteudo {
    padding: 30px 30px 0 30px;
  }

  .trabalhe__texto-e-formulario {
    padding: 20px;
  }

  .trabalhe__formulario input[type="text"],
  .trabalhe__formulario input[type="email"],
  .trabalhe__formulario input[type="tel"],
  .trabalhe__formulario select,
  .trabalhe__formulario input[type="file"] {
    padding: 10px 19px;
  }

  .wpcf7-form-control-wrap[data-name="arquivo-curriculo"]::before {
    width: 25px;
    height: 21px;
  }

  .trabalhe__formulario form {
    padding: 30px 15px 0 15px;
  }

  .file-info {
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
  }
}

/* ===== FIM - PÁGINA TRABALHE CONOSCO ====== */

/* ===== COMPONENTE DA RESERVA ====== */

.home .form-reservas {
  display: block;
}

.home .reservar_botao {
  display: none;
}

.reservar_botao {
  display: block;
  position: fixed;
  bottom: 0;
  padding: 50px;
  background-color: #f00;
}

.form-reservas {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9;
  display: none;
}

.reserva-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.reserva-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1306px;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 22px 27px;
  margin-bottom: 26px;
}

.reserva-titulo {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.reserva-left {
  flex: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.reserva-middle {
  flex: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reserva-item {
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
}

.reserva-item input {
  width: 204px;
  padding: 10px;
  font-size: 12px;
  border: 0;
  outline: none;
}

.reserva-date {
  max-width: 380px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.reserva-item input:focus {
  border-color: #ffbc00;
}

.reserva-hospedes {
  max-width: 300px;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  font-size: 1rem;
  background-color: #fff;
}

#resumo-hospedes {
  color: #999;
  font-size: 12px;
}

.reserva-icon-email {
  display: flex;
  align-items: center;
}

.reserva-email {
  display: flex;
}

.reserva-icon-nome {
  display: flex;
  align-items: center;
}

.input-nome {
  width: 110px !important;
}

.reserva-item .reserva-nome {
  display: flex;
  align-items: center;
}

.seta {
  margin-left: 8px;
  font-size: 1.2rem;
  color: #aaa;
}

.hospedes-dropdown {
  overflow: auto;
  max-height: 345px;
  position: absolute;
  bottom: 74px;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: none;
  z-index: 10;
}

.hospedes-dropdown[aria-hidden="false"] {
  display: block;
}

.campo {
  display: flex;
  align-items: center;
  padding: 30px 30px 0 30px;
  margin-bottom: 1rem;
}

.campo label {
  font-weight: 600;
  margin-right: 29px;
  font-size: 16px;
  color: #333;
}

.controls {
  display: flex;
  align-items: center;
}

#total-rooms,
.guest-count {
  font-size: 14px;
  font-weight: 500;
  padding: 0 18px;
}

.controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #000;
  color: #333;
  cursor: pointer;
}

.nota {
  font-size: 0.85rem;
  color: #888;
}

.reserva-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.btn-reservar {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 230px;
  width: 100%;
  top: 22px;
  border-radius: 40px;
  padding: 12px 15px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
}

.btn-reservar::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%23ffffff' d='M256 0C114.8 0 0 114.8 0 256c0 45.3 12 89.6 34.9 128.1L0 512l132.9-34.7C170.4 500 213.6 512 256 512c141.2 0 256-114.8 256-256S397.2 0 256 0zm0 472c-38.5 0-76.2-10.2-109.1-29.6l-7.8-4.6-78.9 20.6 21-77.1-5-7.9C56.5 339.5 44 298.6 44 256 44 136.7 136.7 44 256 44s212 92.7 212 212-92.7 216-212 216zm119.2-151.6c-6.5-3.2-38.4-18.9-44.3-21.1-5.9-2.2-10.1-3.2-14.4 3.2s-16.5 21.1-20.2 25.4c-3.7 4.2-7.4 4.7-13.9 1.6-37.8-18.9-62.5-33.8-87.2-76.4-6.6-11.3 6.6-10.5 18.9-34.9 2.1-4.2 1.1-7.9-0.5-11.1-1.6-3.2-14.4-34.7-19.8-47.5-5.2-12.6-10.6-10.9-14.4-11.1-3.7-0.2-8.1-0.2-12.4-0.2s-11.3 1.6-17.2 7.9c-5.9 6.3-22.5 22-22.5 53.6s23 62.1 26.2 66.4c3.2 4.2 45.2 69 109.5 96.8 15.3 6.6 27.3 10.5 36.6 13.4 15.3 4.9 29.3 4.2 40.3 2.6 12.3-1.8 38.4-15.7 43.8-30.9 5.4-15.3 5.4-28.4 3.7-31.6-1.6-3.2-5.9-4.8-12.4-7.9z'/></svg>");
}


.input-telefone {
  width: 110px !important;
}

.input-email {
  width: 110px !important;
}

.reserva-icon-telefone {
  display: flex;
  align-items: center;
}

.reserva-icon-telefone svg {
  width: 30px;
  height: 30px;
}

.reserva-telefone {
  display: flex;
  justify-content: center;
}

.reserva-icon-telefone svg {
  width: 30px;
  height: 30px;
}

.reserva-icon-telefone svg path {
  stroke: #D39F1F;
}

@media (max-width: 768px) {
  .reserva-container {
    flex-direction: column;
    align-items: center;
  }

  .reserva-left,
  .reserva-middle,
  .reserva-right {
    width: 100%;
    margin-bottom: 1rem;
  }

  .reserva-middle {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .reserva-item input {
    width: 200px!important;
    margin: 10px;
    padding: 8px;
    margin-left: 13px;
    border: 1px solid rgb(153 153 153 / 16%);
  }

  .btn-reservar {
    width: 100%;
  }

  .form-reservas {
    display: none !important;
  }

  .reserva-mobile__resumo {
    padding-bottom: 20px;
  }

  .reserva-nome {
    display: flex;
    justify-content: center;
    width: 100%;
    border-top: 1px solid #999;
    padding-top: 20px;
  }
}

.flatpickr-calendar {
  font-family: "Poppins", sans-serif;
  border: none;
  box-shadow: none;
  width: 370px !important;
  padding: 30px !important;
  left: 18% !important;
  box-shadow: none !important;
  position: fixed !important;
  bottom: 115px;
  top: initial !important;
}

.flatpickr-calendar.arrowBottom:before {
  display: none;
}

.flatpickr-months {
  background: transparent;
  border-bottom: none;
  padding: 0 10px;
  justify-content: space-between;
  font-weight: 600;
  color: #222;
  font-size: 14px;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  color: #444;
  font-size: 16px;
  opacity: 0.6;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  opacity: 1;
}

.flatpickr-weekdays {
  background: transparent;
  color: #999;
  font-weight: 500;
  font-size: 12px;
  padding: 5px 10px;
  border-bottom: none;
}

.flatpickr-day {
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin: 0 4px 6px 4px;
  font-weight: 600;
  color: #222;
}

.flatpickr-day.weekend {
  color: #555;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.selected.endRange {
  background: #dbac42 !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
  border-color: #dbac42 !important;
}

.flatpickr-day.inRange {
  background: #f8f4e8 !important;
  color: #222;
  box-shadow: none !important;
  border: 1px solid #d39f1f !important;
  border-radius: 0 !important;
}

.flatpickr-day.today {
  border: 1px solid rgba(225, 225, 225, 1) !important;
  color: #dbac42;
  font-weight: 600;
}

.flatpickr-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #dbac42 !important;
  color: #000 !important;
}

.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n + 1)),
.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n + 1)) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 !important;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 0 !important;
}

.rangeMode .flatpickr-day {
  margin-top: 3px !important;
  border: 1px solid rgba(225, 225, 225, 1);
  border-radius: 0;
}

.reserva-seta-hospedes svg {
  transition: transform 0.3s ease;
}

.reserva-seta-hospedes.active svg {
  transform: rotate(180deg);
}

.reserva-seta {
  display: inline-block;
  transition: transform 0.3s ease;
}

.reserva-seta.rotated {
  transform: rotate(180deg);
  /* gira a seta para cima */
}

.reserva-date .reserva-seta {
  display: inline-block;
  transition: transform 0.3s ease;
}

.reserva-date.active .reserva-seta {
  transform: rotate(180deg);
}

.room-row {
  margin-top: 10px;
}

.room-row .controls {
  background: rgba(153, 153, 153, 0.2);
  padding: 30px 20px;
}

.room-row .controls .guests-title {
  margin-right: 25px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0%;
}

.room-row .room-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: -15px;
  margin-left: 18px;
  background-color: #000;
  max-width: 85px;
  width: 100%;
  text-align: center;
  border-radius: 17px;
  padding: 5px;
}

/* ===== FIM - COMPONENTE DA RESERVA ====== */

/* ===== COMPONENTE BOTÃO RESERVAR ====== */

.home .box-reservar-desktop {
  display: none;
}

.box-reservar-desktop {
  max-width: 278px;
  width: 100%;
  text-align: center;
  position: fixed;
  left: -139px;
  padding: 22px 24px;
  margin-left: 50%;
  bottom: 20px;
  background-color: #fff;
  border-radius: 50px;
  z-index: 9999;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.15);
}

.botao-reservar-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 230px;
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 18px 0;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.botao-reservar-desktop::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%23ffffff' d='M256 0C114.8 0 0 114.8 0 256c0 45.3 12 89.6 34.9 128.1L0 512l132.9-34.7C170.4 500 213.6 512 256 512c141.2 0 256-114.8 256-256S397.2 0 256 0zm0 472c-38.5 0-76.2-10.2-109.1-29.6l-7.8-4.6-78.9 20.6 21-77.1-5-7.9C56.5 339.5 44 298.6 44 256 44 136.7 136.7 44 256 44s212 92.7 212 212-92.7 216-212 216zm119.2-151.6c-6.5-3.2-38.4-18.9-44.3-21.1-5.9-2.2-10.1-3.2-14.4 3.2s-16.5 21.1-20.2 25.4c-3.7 4.2-7.4 4.7-13.9 1.6-37.8-18.9-62.5-33.8-87.2-76.4-6.6-11.3 6.6-10.5 18.9-34.9 2.1-4.2 1.1-7.9-0.5-11.1-1.6-3.2-14.4-34.7-19.8-47.5-5.2-12.6-10.6-10.9-14.4-11.1-3.7-0.2-8.1-0.2-12.4-0.2s-11.3 1.6-17.2 7.9c-5.9 6.3-22.5 22-22.5 53.6s23 62.1 26.2 66.4c3.2 4.2 45.2 69 109.5 96.8 15.3 6.6 27.3 10.5 36.6 13.4 15.3 4.9 29.3 4.2 40.3 2.6 12.3-1.8 38.4-15.7 43.8-30.9 5.4-15.3 5.4-28.4 3.7-31.6-1.6-3.2-5.9-4.8-12.4-7.9z'/></svg>");
}

.box-reservar-mobile {
  display: none;
}

@media (max-width: 768px) {
  .box-reservar-mobile {
    display: block;
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 20px;
    z-index: 9;
  }

  .botao-reservar-mobile {
    max-width: 136px;
    width: 100%;
    background: #25D366;
    color: #fff;
    padding: 10px 0;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }

  .botao-reservar-mobile::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%23ffffff' d='M256 0C114.8 0 0 114.8 0 256c0 45.3 12 89.6 34.9 128.1L0 512l132.9-34.7C170.4 500 213.6 512 256 512c141.2 0 256-114.8 256-256S397.2 0 256 0zm0 472c-38.5 0-76.2-10.2-109.1-29.6l-7.8-4.6-78.9 20.6 21-77.1-5-7.9C56.5 339.5 44 298.6 44 256 44 136.7 136.7 44 256 44s212 92.7 212 212-92.7 216-212 216zm119.2-151.6c-6.5-3.2-38.4-18.9-44.3-21.1-5.9-2.2-10.1-3.2-14.4 3.2s-16.5 21.1-20.2 25.4c-3.7 4.2-7.4 4.7-13.9 1.6-37.8-18.9-62.5-33.8-87.2-76.4-6.6-11.3 6.6-10.5 18.9-34.9 2.1-4.2 1.1-7.9-0.5-11.1-1.6-3.2-14.4-34.7-19.8-47.5-5.2-12.6-10.6-10.9-14.4-11.1-3.7-0.2-8.1-0.2-12.4-0.2s-11.3 1.6-17.2 7.9c-5.9 6.3-22.5 22-22.5 53.6s23 62.1 26.2 66.4c3.2 4.2 45.2 69 109.5 96.8 15.3 6.6 27.3 10.5 36.6 13.4 15.3 4.9 29.3 4.2 40.3 2.6 12.3-1.8 38.4-15.7 43.8-30.9 5.4-15.3 5.4-28.4 3.7-31.6-1.6-3.2-5.9-4.8-12.4-7.9z'/></svg>");
  }


  .box-reservar-desktop {
    display: none !important;
  }
}

/* ===== FIM - COMPONENTE BOTÃO RESERVAR ====== */
/* ===== COMPONENTE FORM RESERVA MOBILE ====== */

.form-reservas-mobile {
  display: none;
}

@media (max-width: 768px) {
  .form-reservas-mobile {
    position: fixed;
    overflow: auto;
    display: block;
    max-height: 100%;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    bottom: 0;
    left: calc(50% - 158px);
    z-index: 999;
    top: 10px;
  }

  .reserva-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    box-sizing: border-box;
  }

  .reserva-mobile__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    padding: 20px 20px 0 20px;
  }

  .reserva-mobile__titulo {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
  }

  .reserva-mobile__label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 20px 20px 0 20px;
  }

  .reserva-mobile__label-calendario {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }

  .reserva-mobile__label-texto {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(211, 159, 31, 1);
  }

  .reserva-mobile__icone {
    width: 20px;
    height: 22px;
    margin-right: 11px;
  }

  #reserva-mobile-calendario {
    margin-bottom: 15px;
  }

  #qtd-quartos {
    text-align: center;
    border: 0;
    padding: 0;
    max-width: 47px;
  }

  .reserva-mobile__controle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px 0 20px;
  }

  label[for="qtd-quartos"] {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
  }

  .reserva-mobile__hospedes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 31px;
    background: rgba(153, 153, 153, 0.1);
  }

  .reserva-mobile__hospedes label {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
  }

  .reserva-mobile__quartos {
    width: 100%;
    display: block;
    box-sizing: border-box;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
  }

  .reserva-mobile__quartos>* {
    width: 100%;
  }

  .room-label-mobile {
    width: 85px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    padding: 5px;
    background: #000;
    color: #fff;
    border-radius: 17px;
    text-align: center;
    margin-bottom: -14px;
    margin-left: 20px;
  }

  .room-row-mobile {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .guest-minus-mobile,
  .guest-plus-mobile,
  .reserva-mobile__menos,
  .reserva-mobile__mais {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
  }

  .reserva-mobile__datas-input {
    border: 0 !important;
    padding: 0 0 0 20px !important;
    width: 300px;
    font-size: 14px;
    margin-bottom: 10px !important;
    margin-top: 23px !important;
  }

  .reserva-mobile__info {
    font-size: 14px;
    padding-left: 22px;
    color: #999;
  }

  .reserva-mobile__botao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 261px;
    height: 40px;
    border-radius: 40px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    margin: 20px;
  }

  .reserva-mobile__botao::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%23ffffff' d='M256 0C114.8 0 0 114.8 0 256c0 45.3 12 89.6 34.9 128.1L0 512l132.9-34.7C170.4 500 213.6 512 256 512c141.2 0 256-114.8 256-256S397.2 0 256 0zm0 472c-38.5 0-76.2-10.2-109.1-29.6l-7.8-4.6-78.9 20.6 21-77.1-5-7.9C56.5 339.5 44 298.6 44 256 44 136.7 136.7 44 256 44s212 92.7 212 212-92.7 216-212 216zm119.2-151.6c-6.5-3.2-38.4-18.9-44.3-21.1-5.9-2.2-10.1-3.2-14.4 3.2s-16.5 21.1-20.2 25.4c-3.7 4.2-7.4 4.7-13.9 1.6-37.8-18.9-62.5-33.8-87.2-76.4-6.6-11.3 6.6-10.5 18.9-34.9 2.1-4.2 1.1-7.9-0.5-11.1-1.6-3.2-14.4-34.7-19.8-47.5-5.2-12.6-10.6-10.9-14.4-11.1-3.7-0.2-8.1-0.2-12.4-0.2s-11.3 1.6-17.2 7.9c-5.9 6.3-22.5 22-22.5 53.6s23 62.1 26.2 66.4c3.2 4.2 45.2 69 109.5 96.8 15.3 6.6 27.3 10.5 36.6 13.4 15.3 4.9 29.3 4.2 40.3 2.6 12.3-1.8 38.4-15.7 43.8-30.9 5.4-15.3 5.4-28.4 3.7-31.6-1.6-3.2-5.9-4.8-12.4-7.9z'/></svg>");
  }

  .litepicker .container__days .day-item.is-start-date,
  .litepicker .container__days .day-item.is-end-date {
    border-radius: 0 !important;
    background-color: #d39f1f !important;
    color: #000 !important;
    font-weight: 600 !important;
  }

  .litepicker .container__days .day-item.is-in-range {
    background-color: rgba(211, 159, 31, 0.1) !important;
    border: 1px solid #d39f1f;
  }

  .litepicker .container__days .day-item.is-start-date {
    width: 30px;
    height: 30px;
    margin-left: 6px;
    margin-top: 9px;
  }

  .litepicker .container__days .day-item {
    width: 30px;
    height: 30px;
    margin-left: 6px;
    margin-top: 9px;
    padding: 0 !important;
    border: 1px solid rgba(153, 153, 153, 0.1);
    border-radius: 0 !important;
  }

  .container__months {
    box-shadow: none !important;
  }

  .month-item-weekdays-row {
    font-family: "Poppins" !important;
    text-transform: uppercase;
    /* deixa em maiúsculas */
    font-size: 14px;
    /* ajuste o tamanho se quiser */
    font-weight: 600;
  }

  .litepicker .container__days .day-item.is-today {
    color: #000 !important;
  }
}

/* ===== FIM - COMPONENTE FORM RESERVA MOBILE ====== */

/* ===== Estilo da Página 404 ===== */
.erro-404-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 70vh;
  color: #000;
  padding: 80px 20px;
}

.container-404 {
  max-width: 600px;
  margin: 0 auto;
}

.titulo-404 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}

.descricao-404 {
  font-size: 20px;
  color: #333;
  margin-bottom: 40px;
}

.btn-404 {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-404:hover {
  background-color: #444;
}

/* Responsivo */
@media (max-width: 768px) {
  .titulo-404 {
    font-size: 30px;
  }

  .descricao-404 {
    font-size: 14px;
  }
}