@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* ================================================
   RESET & BASE
================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: antiquewhite;
  /* Evita scroll horizontal acidental no mobile */
  overflow-x: hidden;
}

/* Bloqueia scroll quando menu mobile está aberto */
body.menu-open {
  overflow: hidden;
}

/* Acessibilidade: conteúdo visível apenas por leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================================
   SEÇÕES — ESTRUTURA GERAL
================================================ */

section {
  min-height: 100vh;
  padding-top: 100px;
}

#inicio,
#sobre,
#depoimentos {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================
   COMPONENTES GLOBAIS
================================================ */

.btn-default {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: none;
  border-radius: 12px;
  background-color: #ffcb45;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.15s ease;
}

.btn-default:hover {
  background-color: #f8d477;
}

.btn-default:active {
  transform: scale(0.97);
}

.social-media-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
}

.social-media-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.social-media-buttons a:hover {
  box-shadow: 0 0 12px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* ================================================
   SEÇÃO: HERO / INÍCIO (#inicio)
================================================ */

.hero {
  position: relative;
  min-height: 100vh;

  background-image: url('../images/IMG_6157 (1).PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
}


.cidade {
  display: block;
  margin-top: 4px;
  font-size: 35px;
  color: #1d1d1d;
}

.description {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
}

/* ================================================
   SEÇÃO: SOBRE O HOTEL (#sobre)
================================================ */

#sobre {
  padding: 40px 1.5rem;
  margin-top: 10px;
  background-color: rgb(235, 230, 222);
  min-height: auto;
}

.hotel-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.hotel-content {
  margin-left: -30px;
}

.hotel-image img {
  width: 100%;
  max-width: 450px;
  height: 480px;
  margin: 0 auto;
  display: block;
  border-radius: 3px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.hotel-subtitle,
.services-subtitle {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #840101;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hotel-subtitle::after,
.services-subtitle::after {
  content: "";
  width: 65px;
  height: 2px;
  background-color: #840101;
  margin-left: 0.5rem;
}

.hotel-title,
.services-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1d1d1d;
}

.hotel-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2a2a2a;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.hotel-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background-color: #e9a209;
  color: #ffffff;
  border-radius: 3px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hotel-btn:hover {
  background-color: #f1b83e;
}

/* ================================================
   SEÇÃO: SERVIÇOS (#servicos)
================================================ */

#servicos {
  min-height: auto;
  padding: 80px 110px;
  background-color: rgb(246, 235, 224);
}

.service {
  min-height: auto;
}

.services-wrapper {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.services-content {
  padding: 20px;
}

.services-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-image img {
  width: 430px;
  height: 530px;
  border-radius: 3px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.services-title {
  font-size: 2.7rem;
  margin-bottom: 25px;
}

.services-cards {
  display: grid;
  gap: 17px;
  max-width: 100%;
}

.service-card-inner {
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: #ffffff;
  border-radius: 3px;
}

.service-card:hover .service-card-inner {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.service-card i {
  font-size: 28px;
  color: #e9a209;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #1d1d1d;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* ================================================
   SEÇÃO: GALERIA / EXPERIÊNCIAS (#galeria)
================================================ */

#galeria {
  padding: 80px 10px;
  background-color: rgb(235, 224, 207);
  min-height: auto;
}

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 0 auto 60px;
  max-width: 1100px;
  padding: 0 20px;
}

.image-carousel {
  position: relative;
  height: 320px;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.image-carousel img.active {
  opacity: 1;
}

/* Dots indicadores do carrossel */
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background-color: #ffffff;
  transform: scale(1.3);
}

.experience-text {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-text .label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #840101;
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
}

.experience-text h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.experience-text p {
  font-size: 1.1rem;
  color: #3d3d3d;
  max-width: 75%;
  line-height: 1.5;
}

.experience-text a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #e9a209;
  color: #ffffff;
  border-radius: 6px;
  margin-top: 15px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  align-self: flex-start;
}

.experience-text a:hover {
  background-color: #f1b83e;
  transform: translateY(-2px);
}

/* Alterna layout: imagem direita, texto esquerda */
.experience:nth-child(even) .image-carousel {
  order: 2;
}

.experience:nth-child(even) .experience-text {
  order: 1;
  text-align: right;
  align-items: flex-end;
}

.experience:nth-child(even) .experience-text p {
  text-align: right;
}

.experience:nth-child(even) .experience-text a {
  align-self: flex-end;
}

/* ================================================
   SEÇÃO: LOCALIZAÇÃO / RODAPÉ (#localizacao)
================================================ */

.location {
  background: #2d2014;
  color: #fff;
  padding: 80px 20px 20px;
  min-height: auto;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.location h2 {
  font-size: 40px;
  margin-bottom: 16px;
  color: rgb(255, 255, 255);
}

.location>.location-container>p {
  max-width: 920px;
  margin: 0 auto 30px;
  line-height: 1.6;
  opacity: 0.8;
}

.map-container {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 4px;
}

.map-container iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.footer-col {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 40px auto 0;
}

.footer-box {
  text-align: left;
}

.footer-box h3 {
  margin-bottom: 20px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  text-decoration: none;
  color: #ffffff;
}

.footer-link i {
  font-size: 18px;
  color: #f5e6c8;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.footer-link:hover {
  transform: translateX(5px);
  opacity: 1;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0 10px;
  font-size: 13px;
  opacity: 0.6;
}

/* ================================================
   RESPONSIVO — DESKTOP MÉDIO (max 1200px)
================================================ */

@media (max-width: 1200px) {
  .services-image img {
    width: 360px;
    height: 440px;
    margin-left: 0;
  }
}

/* ================================================
   RESPONSIVO — TABLET (max 900px)
================================================ */

@media (max-width: 900px) {

  /* Galeria: empilha */
  .experience {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .image-carousel {
    height: 260px;
  }

  .experience-text {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .experience-text p {
    max-width: 100%;
    text-align: left !important;
  }

  .experience:nth-child(even) .image-carousel {
    order: unset;
  }

  .experience:nth-child(even) .experience-text {
    order: unset;
    text-align: left;
    align-items: flex-start;
  }

  .experience-text h3 {
    font-size: 1.9rem;
  }

  /* Serviços: empilha */
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-image {
    display: none;
    /* Imagem decorativa — oculta em tablet/mobile */
  }

  .services-content {
    padding: 0;
  }
}

/* ================================================
   RESPONSIVO — MOBILE (max 768px)
================================================ */

@media (min-width: 768px) {
  .hotel-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hotel-image img {
    margin: 0;
  }
}

@media (max-width: 768px) {
  section {
    padding-top: 80px;
  }

  /* --- Sobre --- */
  #sobre {
    padding: 60px 20px;
  }

  .hotel-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hotel-image img {
    height: 280px;
    max-width: 100%;
  }

  .hotel-content {
    margin-left: 0;
  }

  .hotel-title {
    font-size: 1.8rem;
  }

  .hotel-text {
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* --- Serviços --- */
  #servicos {
    padding: 60px 20px;
  }

  .services-title {
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .services-subtitle {
    font-size: 0.9rem;
  }

  .services-cards {
    gap: 12px;
  }

  .service-card-inner {
    border-radius: 10px;
    padding: 14px;
  }

  .service-card i {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* --- Galeria --- */
  #galeria {
    padding: 60px 0;
  }

  .experience {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .experience-text h3 {
    margin-bottom: 1px;
  }

  .experience-text p {
    margin-top: 0;
  }

  .image-carousel,
  .experience-text {
    order: initial !important;
  }

  .experience-text,
  .experience:nth-child(even) .experience-text {
    text-align: left;
    align-items: flex-start;
  }

  .experience-text p,
  .experience:nth-child(even) .experience-text p {
    text-align: left;
    max-width: 85%;
  }

  .experience-text a,
  .experience:nth-child(even) .experience-text a {
    align-self: flex-start;
  }
}

/* --- Localização --- */
.location {
  padding: 60px 16px 20px;
}

.location h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.map-container iframe {
  height: 260px;
}

.footer-col {
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 24px;
  gap: 15px;
  text-align: left;
}

.footer-box {
  width: 100%;
}

.copy {
  font-size: 12px;
  text-align: center;
}

/* Telas muito pequenas */
@media (max-width: 360px) {

  .hotel-title,
  .services-title {
    font-size: 1.5rem;
  }
}