@charset "UTF-8";
*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

li {
  padding-left: 0;
}

ul,
input {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  position: relative;
  font-family: "Comforta", "Montserrat", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: white;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1330px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.some-link {
  display: inline-block;
  text-align: center;
  padding: 0.7rem 3rem;
  border-radius: 3rem;
  color: black;
  background-color: #EBE679;
  transition: all 0.3s;
}
.some-link:hover {
  box-shadow: 0 5px 10px black;
  transition: all 0.3s;
}

.title {
  font-weight: 400;
  margin: 0 auto 1rem;
  font-size: 3.6rem;
  line-height: 5.4rem;
  text-align: center;
  max-width: 95rem;
}

.subtitle {
  color: gray;
  font-weight: 400;
  margin: 0 auto 4.5rem;
  font-size: 2.4rem;
  line-height: 2.4rem;
  text-align: center;
  max-width: 95rem;
}

.menu__list {
  display: flex;
}
.menu__list .list__item {
  display: block;
  padding: 1rem;
}
.menu__list .list__item > a {
  position: relative;
}
.menu__list .list__item > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  margin: -5px 0;
  background-color: white;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
.menu__list .list__item > a:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

.footer .list__item > a::before {
  background-color: black;
}

/* Estilos para o modal de imagem */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
  /* 🔹 Estilização das setas do modal (Navegação entre imagens) */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border: none;
  font-size: 35px;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none; /* Evita seleção acidental */
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.9); /* Escurece no hover */
  transform: scale(1.1); /* Dá um efeito de zoom leve */
}

.nav-btn:active {
  transform: scale(0.9); /* Reduz ligeiramente ao clicar */
}

#prev-btn {
  left: 5%; /* Ajusta a posição para a esquerda */
}

#next-btn {
  right: 5%; /* Ajusta a posição para a direita */
}

/* 🔹 Ajuste para telas menores */
@media (max-width: 768px) {
  .nav-btn {
      font-size: 30px;
      width: 40px;
      height: 40px;
      padding: 10px;
  }

  #prev-btn {
      left: 2%;
  }

  #next-btn {
      right: 2%;
  }
}
}


.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#hamburger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
}
#hamburger > svg {
  width: 60px;
  height: 60px;
}
#hamburger .line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
#hamburger .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 5;
}
#hamburger .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 5;
}
#hamburger .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 5;
}
#hamburger.open .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}
#hamburger.open .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 5;
}
#hamburger.open .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}

.scroll-top {
  display: flex;
  background-color: rgba(26, 26, 26, 0.9960784314);
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
.scroll-top::after {
  content: "☝";
  font-size: 4rem;
  margin: auto;
}
.scroll-top:hover {
  cursor: pointer;
  background-color: #333;
}
.scroll-top:active {
  background-color: #555;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.header {
  padding: 3rem 0 0;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  font-family: "Montserrat";
  font-size: 1.6rem;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}
.header .phone > p:first-child {
  margin-bottom: 0.5rem;
}
.header .li-contact-info {
  display: none;
}

.main {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 150%;
  color: black;
}
.main .promo {
  position: relative;
  background: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}
.main .promo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.main .promo__inner {
  position: relative;
  z-index: 1;
  padding: 20rem 0 10rem;
}
.main .promo__title {
  font-family: "Comfortaa";
  font-weight: 600;
  font-size: 5.4rem;
  line-height: 150%;
  max-width: 50vw;
  margin: 0 0 4.5rem;
}
.main .promo__subtitle {
  margin: 0 0 4.5rem;
  font-weight: 400;
}
.main .promo__reservation-link {
  margin: 0 0 7.5rem;
}
.main .promo__list {
  display: flex;
  gap: 10rem;
}
.main .promo__list .list__item {
  max-width: 18rem;
}
.main .promo__list .discript__num {
  color: black;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 2.5rem;
  width: 1vw;
  height: 1vw;
  background-color: white;
  font-weight: 500;
  font-size: 2rem;
  margin: 0 0 1rem;
}
.main .promo__list .discript__text {
  display: inline-block;
  font-size: 1.4rem;
}
.main .gallery {
  padding: 7rem 0 0;
  font-family: "Comfortaa";
}
.gallery .swiper-slide img {
  width: 500px; /* Faz com que a imagem ocupe 100% do container */
  height: 300px; /* Mantém a proporção da imagem */
  object-fit: cover; /* Corta a imagem para preencher o espaço sem distorcer */
  border-radius: 10px; /* Bordas arredondadas (opcional) */
}

.main .gallery .main-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  justify-items: center;
  gap: 1.5rem;
  align-items: center;
  margin: 0 0 3rem;
}
.main .gallery .main-gallery .gallery__item {
  height: 100%;
}
.main .gallery .main-gallery .gallery__item:last-child {
  grid-column: 3/4;
  grid-row: 1/7;
}
.main .gallery .main-gallery .gallery__item:nth-child(5) {
  grid-column: 2/3;
  grid-row: 4/7;
}
.main .gallery .main-gallery .gallery__item:nth-child(4) {
  grid-column: 2/3;
  grid-row: 1/4;
}
.main .gallery .main-gallery .gallery__item:nth-child(3) {
  grid-column: 1/2;
  grid-row: 5/7;
}
.main .gallery .main-gallery .gallery__item:nth-child(2) {
  grid-column: 1/2;
  grid-row: 3/5;
}
.main .gallery .main-gallery .gallery__item:first-child {
  grid-column: 1/2;
  grid-row: 1/3;
}
.main .gallery .main-gallery .gallery__link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
    object-fit: cover;
  border-radius: 3rem;
  transition: all 0.3s;
}
.main .gallery .main-gallery .gallery__link-img img:hover {
  box-shadow: 1px 1px 30px black;
  transition: all 0.3s;
}
.main .gallery__inner {
  display: flex;
  flex-direction: column;
}
.main .gallery .gallery-link {
  margin: 0 0 0 auto;
}
.main .homes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Permite melhor adaptação em telas menores */
  gap: 2rem; /* Espaçamento entre os cards */
}
.main .homes-item {
  padding: 1.5rem;
  margin: 0 0 3rem;
}
.main .homes-item__img {
  max-width: 100%;
  margin: 0 0 1rem;
}
.main .homes-item__title {
  font-size: 2.4rem;
  margin: 0 0 1rem;
}
.main .homes-item__price {
  margin: 0 0 1.5rem;
}
.gallery-swiper {
  width: 100%;
  max-width: 900px; /* Define um limite máximo para o carrossel */
  margin: auto;
  padding-bottom: 40px;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Garante que cada slide ocupe toda a largura */
}

.gallery-img {
  width: 100%;
  max-width: 600px; /* Ajuste o tamanho máximo das imagens conforme necessário */
  height: 400px; /* Define uma altura fixa */
  object-fit: cover; /* Faz com que todas as imagens fiquem uniformes sem distorcer */
  border-radius: 15px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}
/* Ajusta as setas do Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: rgba(255, 255, 255, 1);
}
/* Paginação personalizada */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s;
}
.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1);
}
.main .homes .swiper-pagination {
  bottom: 0;
  transform: scale(1.5);
}
/* Estilização das setas do Swiper */
.swiper-button-next,
.swiper-button-prev {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.room-swiper:hover .swiper-button-next,
.room-swiper:hover .swiper-button-prev {
  opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  transition: color 0.3s;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: rgba(255, 255, 255, 1);
}

/* Estilização das setas da galeria - seguindo o padrão dos quartos */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: rgba(255, 255, 255, 0.7); /* Deixa as setas com um branco translúcido */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Inicialmente invisível */
    transition: opacity 0.3s ease-in-out, background 0.3s, transform 0.2s ease;
}

/* Torna as setas visíveis ao passar o mouse sobre o slider */
.gallery-swiper:hover .swiper-button-next,
.gallery-swiper:hover .swiper-button-prev {
    opacity: 1;
}

/* Efeito ao passar o mouse nas setas */
.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6); /* Fundo mais escuro */
    transform: scale(1.1); /* Leve aumento no tamanho */
}

/* Ajuste da posição das setas */
.gallery-swiper .swiper-button-next {
    right: 10px;
}
.gallery-swiper .swiper-button-prev {
    left: 10px;
}
/* Deixa as bolinhas invisíveis inicialmente */
.swiper-pagination {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Torna as bolinhas visíveis ao passar o mouse sobre o slider */
.room-swiper:hover .swiper-pagination {
  opacity: 1;
}

/* Estiliza as bolinhas para ficarem mais suaves */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s;
}

/* Quando selecionada ou ao passar o mouse, a bolinha fica mais visível */
.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 1);
}
.room-swiper {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.room-swiper .swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.homes-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza todos os elementos */
  text-align: center;
  width: 100%; /* Mantém o card responsivo */
  max-width: 350px; /* Garante que todos tenham o mesmo tamanho */
  min-height: 450px; /* Evita que um card fique maior que os outros */
  padding: 15px;
}

.homes-item .room-swiper {
  width: 100%;
  max-width: 300px; /* Ajuste conforme necessário */
}
.room-swiper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow: hidden; /* Evita que imagens maiores saiam da área */
}
.homes-item__img {
  width: 100%; /* Faz a imagem ocupar todo o espaço do contêiner */
  height: 200px; /* Define uma altura fixa para uniformizar as imagens */
  max-width: 300px; /* Evita que a imagem fique muito grande */
  display: block;
  margin: 0 auto; /* Centraliza */
  border-radius: 15px; /* Mantém a estética */
  object-fit: cover; /* Corta a imagem mantendo a proporção */
}
.homes-item__description {
  margin-top: 1rem; /* Espaço entre o preço e a descrição */
  margin-bottom: 2rem; /* Espaço extra antes do botão de reservar */
  text-align: center; /* Mantém a descrição centralizada */
  font-size: 1.6rem; /* Ajusta o tamanho da fonte */
  line-height: 2.4rem; /* Melhora a legibilidade */
  color: #333; /* Cor mais suave para leitura */
  max-width: 80%; /* Mantém a descrição em um tamanho confortável */
  margin-left: auto;
  margin-right: auto;
}
.main .entertainment {
  padding: 7rem 0 0;
  font-family: "Comfortaa";
}
.main .entertainment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.main .entertainment-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.main .entertainment-item .information-wrapper {
  max-width: 50%;
  margin: 0 0 0 2rem;
}
.main .entertainment-item__img {
  max-width: 50%;
  -o-object-fit: contain;
    object-fit: contain;
  border-radius: 3rem;
}
.main .entertainment-item__title {
  font-weight: 600;
  margin: 0 0 2rem;
  line-height: 3.6rem;
  text-align: start;
  font-size: 2.4rem;
}
.main .entertainment-item__subtitle, .main .entertainment-item__price {
  margin: 0 0 2rem;
  text-align: start;
  font-size: 1.8rem;
}
.main .entertainment-item__discript {
  font-family: "Montserrat";
  font-size: 1.4rem;
  line-height: 2.1rem;
}
.main .contacts {
  color: white;
  padding: 7rem 0 0;
}
.main .contacts__inner {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  background: url(../images/contacts-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  height: 600px;
}
.main .contacts__inner::after {
  border-radius: 30px;
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.main .contacts .form {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  margin: 0 auto;
}
.main .contacts .form > *:not(:last-child) {
  margin: 0 0 3.5rem;
}
.main .contacts .form__select {
  color: gray;
  -webkit-appearance: none;
  cursor: pointer;
}
.main .contacts .form__btn {
  border: none;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.6rem;
  cursor: pointer;
}
.main .contacts .form .contacts__title {
  font-family: "Comfortaa";
}
.main .contacts .form input,
.main .contacts .form select {
  font-family: "Montserrat";
  line-height: 2rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  border: none;
}
.main .contacts .form .some-wrapper {
  display: flex;
  justify-content: center;
  font-weight: 300;
  font-family: "Montserrat";
  font-size: 1.3rem;
}
.main .contacts .form .some-wrapper .form__check {
  margin: 0 1rem 0 0;
  transform: scale(1.5);
}
.main .comments {
  font-family: "Comfortaa";
  padding: 7rem 0 0;
}
.main .comments__title {
  margin: 0 auto 4.5rem;
}
.main .comments-list, .main .comments-item,
.main .comments .user-info {
  display: flex;
}
.main .comments-list {
  margin: 0 0 5rem;
}
.main .comments-item {
  max-width: 65rem;
  align-items: center;
}
.main .comments-item__img {
  max-width: 50%;
}
.main .comments .user-info,
.main .comments .comments-item__mark {
  margin: 0 0 0.5rem;
  line-height: 3.6rem;
}
.main .comments .wrapper,
.main .comments .information-wrapper {
  margin: 0 0 0 2rem;
}
.main .comments .information-wrapper,
.main .comments .comments__img {
  width: 50%;
}
.main .comments .comments-item__mark {
  font-size: 2.4rem;
}
.main .comments .comments-item__discript {
  font-size: 1.4rem;
}
.main .comments .comments-item__userimg,
.main .comments .comments__img {
  -o-object-fit: contain;
    object-fit: contain;
}
.main .comments .swiper-nav {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
}
.main .comments .swiper-button-next,
.main .comments .swiper-button-prev {
  width: auto;
  margin-top: 0;
  display: block;
  position: static;
}
.main .comments .swiper-button-next::after {
  content: url(../images/arrow-right.png);
}
.main .comments .swiper-button-prev::after {
  content: url(../images/arrow-left.png);
}
.main .location {
  padding: 7rem 0;
  font-family: "Comfortaa";
}
.main .location__inner,
.main .location #map {
  position: relative;
}
.main .location #map {
  z-index: 1;
}
.main .location .info-box {
  position: absolute;
  background-color: white;
  top: 15%;
  left: 75%;
  z-index: 2;
  display: inline-block;
  max-width: 26rem;
  border: 1px solid black;
  border-radius: 3rem;
  padding: 2rem 2rem 5rem;
}
.main .location .info-box__title {
  margin: 0 0 1rem;
  font-family: "Comfortaa";
  font-size: 1.8rem;
  line-height: 2.7rem;
}
.main .location .info-box__text {
  margin: 0 0 3rem;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.main .location .info-box__link {
  display: inline-block;
}

.footer {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding: 4rem 0;
  background-color: #EBE679;
  color: black;
}
.footer img {
  filter: invert(1);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.footer__inner .menu__list {
  flex-direction: column;
}
.footer__callback-link {
  font-family: "Montserrat";
  background-color: #1D1D1D;
  color: #EBE679;
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0 0 1rem;
  border: 1px solid black;
}
.footer .callback {
  text-align: end;
  display: flex;
  flex-direction: column;
}
.footer .addres {
  line-height: 2.1rem;
  max-width: 24rem;
}

@media only screen and (max-width: 1499px) {
  html {
    font-size: 60%;
  }
}
@media only screen and (max-width: 1399px) {
  html {
    font-size: 58%;
  }
}
@media only screen and (max-width: 1199px) {
  html {
    font-size: 56%;
  }
  .main .comments-item__img {
    display: none;
  }
  .main .comments .information-wrapper,
.main .comments .comments__img {
    width: auto;
  }
}
@media (max-width: 1050px) {
  .main .entertainment-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .entertainment-item {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 999px) {
  html {
    font-size: 60%;
  }
  .main .gallery,
.main .homes,
.main .entertainment,
.main .contacts,
.main .comments,
.main .location {
    padding: 3.5rem 0 0;
  }
  #hamburger {
    display: flex;
    margin: 0 0 0 3rem;
  }
  .header .menu {
    position: absolute;
    background-color: #1D1D1D;
    border-radius: 3rem 0px 3rem 3rem;
    padding: 2rem;
    top: 100%;
    right: 10vw;
    transform: scale(0);
    opacity: 0;
    transition: all 0.9s;
  }
  .header .menu__list {
    flex-direction: column;
  }
  .header .menu .list__item {
    padding: 2rem;
  }
  .header .change-opacity {
    transform: scale(1);
    opacity: 1;
  }
  .contact-info {
    display: none;
  }
  .menu .li-contact-info {
    display: inline-block;
  }
  .logo {
    text-align: start;
  }
  .main .promo__title {
    max-width: none;
  }
  .main .comments .information-wrapper {
    width: auto;
    max-width: none;
  }
  .main .location .info-box {
    position: static;
    display: block;
    border: none;
    margin: 0 auto;
    max-width: none;
  }
  .main .location .info-box__link {
    display: block;
  }
}
@media (max-width: 799px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__inner .addres {
    margin: 0 0 1.5rem;
  }
  .footer__inner .callback {
    text-align: center;
  }
}
@media (max-width: 550px) {
  .main .promo__list {
    flex-wrap: wrap;
    gap: 1.5rem 4rem;
  }
  .main .promo__list .list__item {
    text-align: start;
  }
  .main .promo__inner {
    padding: 15rem 0 5rem;
  }
  .main .promo__title {
    font-size: 3.6rem;
  }
  .title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .subtitle {
    font-size: 2rem;
  }
  .main .gallery .main-gallery {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  .main .gallery .main-gallery .gallery__item:last-child {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .main .gallery .main-gallery .gallery__item:nth-child(5) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .main .gallery .main-gallery .gallery__item:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/7;
  }
  .main .gallery .main-gallery .gallery__item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 5/7;
  }
  .main .gallery .main-gallery .gallery__item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 3/5;
  }
  .main .gallery .main-gallery .gallery__item:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .main .homes .homes-item {
      display: flex;
      flex-direction: column;
      align-items: center; /* Centraliza os elementos do card */
      text-align: center;
      max-width: 350px; /* Define um tamanho máximo para os blocos */
    }
    
  .main .homes .homes-item__title, .main .homes .homes-item__price {
    text-align: center;
  }
  .main .homes-item__img {
    width: 100%; /* Garante que a imagem ocupe toda a largura disponível */
    height: auto; /* Mantém a proporção da imagem */
    max-width: 300px; /* Limita o tamanho máximo para evitar exageros */
    display: block;
    margin: 0 auto; /* Centraliza a imagem */
    border-radius: 15px; /* Mantém um visual arredondado para ficar harmonioso */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
  }  
  .main .homes .homes-item__link {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
  }
  .main .entertainment-item {
    flex-direction: column;
  }
  .main .entertainment-item .information-wrapper {
    max-width: none;
    text-align: center;
    margin: 0;
  }
  .main .entertainment-item__img {
    width: 100%;
    max-width: 80%;
    margin: 0 0 1.5rem;
  }
  .main .entertainment-item__title, .main .entertainment-item__subtitle, .main .entertainment-item__price {
    margin: 1rem;
    text-align: center;
  }
  .main .entertainment-item__discript {
    font-size: 1.6rem;
  }
  .main .contacts .form {
    padding: 1.5rem;
  }
  .main .contacts .form .some-wrapper {
    margin: auto;
    max-width: 60%;
  }
  #map {
    height: 300px;
  }
  .scroll-top {
    width: 50px;
    height: 50px;
    right: 10px;
  }
  .scroll-top::after {
    font-size: 3rem;
  }
}
.homes-swiper {
  width: 100%;
  padding: 40px 0;
}

.homes-list {
  display: flex;
  align-items: center;
}

.homes-item {
  text-align: center;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.homes-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  /* background: rgba(0, 0, 0, 0.6); */
  color: white;
}

.image-modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}

.image-modal .modal-content {
max-width: 90%;
max-height: 90%;
object-fit: contain;
border-radius: 10px;
}

.close-modal {
position: absolute;
top: 15px;
right: 30px;
font-size: 40px;
color: white;
cursor: pointer;
}

.nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 40px;
color: white;
background: none;
border: none;
cursor: pointer;
}

#prev-btn {
left: 5%;
}

#next-btn {
right: 5%;
}


/* 🔹 Ajuste geral do carrossel da galeria */
.gallery-swiper {
width: 100%;
max-width: 1000px; /* Define um limite máximo */
margin: auto;
padding-bottom: 40px;
}

/* 🔹 Ajuste das imagens do carrossel */
.gallery-swiper .swiper-slide img {
width: 600px;
height: 400px; /* Mantém a proporção */
object-fit: cover; /* Para manter as imagens organizadas */
border-radius: 10px; /* Bordas arredondadas */
box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.7); /* Suaviza a imagem */
}

/* 🔹 Estilização das setas do carrossel */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
color: rgba(255, 255, 255, 0.7); /* Deixa as setas com um branco translúcido */
display: flex;
align-items: center;
justify-content: center;
opacity: 0; /* Inicialmente invisível */
transition: opacity 0.3s ease-in-out, background 0.3s, transform 0.2s ease;
}

/* 🔹 Torna as setas visíveis ao passar o mouse */
.gallery-swiper:hover .swiper-button-next,
.gallery-swiper:hover .swiper-button-prev {
opacity: 1;
}

/* 🔹 Efeito ao passar o mouse */
.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
/* background: rgba(0, 0, 0, 0.6); */
transform: scale(1.1);
}

/* 🔹 Ajuste da posição das setas */
.gallery-swiper .swiper-button-next {
right: 10px;
}

.gallery-swiper .swiper-button-prev {
left: 10px;
}

/* 🔹 Paginação (as bolinhas embaixo) */
.swiper-pagination-bullet {
background: rgba(255, 255, 255, 0.5);
transition: background 0.3s;
}

.swiper-pagination-bullet-active {
background: rgba(255, 255, 255, 1);
}


@media (max-height: 499px) and (max-width: 899px), (max-width: 767px) {
  html {
    font-size: 62.5%; 
  }
}/*# sourceMappingURL=style.css.map */