/* ============================================
   CABANAS DA SERRA — style.css
   Mobile-first | Acessível | SEO-friendly
   ============================================ */


/* ---- RESET & BASE ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

address {
  font-style: normal;
}

/* Garante que textos longos não quebrem o layout */
h1, h2, h3, h4, p, li, dt, dd {
  overflow-wrap: break-word;
  word-break: break-word;
}


/* ---- ACESSIBILIDADE ---- */

/* Ocultar visualmente mas manter para 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;
}

/* Foco visível para navegação por teclado */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Pular navegação (skip link) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 8px 16px;
  background: var(--color-dark-green);
  color: var(--color-white);
  font-size: 14px;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Remove outline padrão do main quando recebe foco via skip link */
main:focus {
  outline: none;
}


/* ---- VARIÁVEIS CSS ---- */
:root {
  --color-olive:        #889A00;
  --color-olive-dark:   #4C4B39;
  --color-olive-light:  #EBEAD8;
  --color-olive-muted:  #ADAB88;
  --color-gold:         #A19C51;
  --color-gold-light:   #ECEBDA;
  --color-gold-accent:  #A9A34D;
  --color-gold-text:    #aaa44e;
  --color-green-cta:    #84B912;
  --color-green-pix:    #2f9461;
  --color-green-pix-bg: #bbf5d8;
  --color-bg-warm:      #f6f6f6;
  --color-dark-green:   #2C332D;
  --color-text:         #666;
  --color-text-light:   #333;
  --color-white:        #fff;
  --color-star:         #FFC300;
  --color-dark:         #000000;
  --max-width:          1160px;
  --radius:             5px;
  --nav-height:         80px;
  --padding-section:    20px;
  --swiper-theme-color: #EBEAD8 !important;
}


/* ---- NAVEGAÇÃO ---- */
.menu {
  background: var(--color-white);
  height: var(--nav-height);
  font-size: 14px;
  font-weight: 400;
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  border-bottom: 1px solid #edebeb;
}

.menu-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--padding-section);
}

.menu img {
  width: 190px;
  height: auto;
}

.menu a {
  color: var(--color-white);
}

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

.menu li {
  list-style: none;
}

.menu .btn-reserva {
  background: var(--color-dark-green);
    padding: 5px 16px 10px 22px;
    border-radius: 30px;
  }

.menu .btn-reserva span {
  font-size: 22px;
}

.menu .btn-reserva a {
  color: var(--color-white);
  font-weight: 500;
}

/* Ícone do WhatsApp (no menu e nos botões CTA) */
.simbolo-whats {
  background: none;
  color: var(--color-white);
  position: relative;
  top: 5px;
  left: -9px;
  margin: 0;
}


/* ---- HERO / HEADER SLIDER ---- */

/* Compensa a altura do menu fixo */
body > header {
  margin-top: var(--nav-height);
}


/* CONTEUDO PRINCIPAL */

  .chamada-principal {
    max-width: 900px;
    margin: auto;
    text-align: left;
    padding: 100px var(--padding-section) 80px;
  }

  .chamada-principal ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
  }

  .chamada-principal h2{
    color: var(--color-text-light);
    font-size: clamp(36px, 4vw, 28px);
    font-weight: 700;
    max-width: 100%;
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }

  .chamada-principal p{
    color: #666;
    font-size: clamp(11px, 4vw, 14px);
    font-weight: 500;
    max-width: 100%;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.3px;
  }

  .chamada-principal li {
    flex: 1 1 220px;
    min-width: 0;
    padding: 0;
  }

/* ---- COMODIDADES ---- */
.comodidades {
  padding: 50px var(--padding-section) 60px;
  background: var(--color-white);
}

.comodidades img {
    margin: auto;
}

.comodidades .content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.comodidades h2 {
  color: var(--color-olive);
  font-size: clamp(35px, 3.5vw, 40px);
  text-align: center;
  line-height: 1.25;
  margin: 0 auto 10px;
  max-width: 850px;
  letter-spacing: -3px;
  font-weight: 700;
}

.comodidades .subtitulo-comodidades {
  color: var(--color-text-light);
  font-size: clamp(14px, 2vw, 22px);
  text-align: center;
  font-weight: 300;
  letter-spacing: -0.2px;
  margin: 0 auto 40px;
  max-width: 70%;
}

.lista-comodidades {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 998px;
  margin: 0 auto;
}

.lista-comodidades li {
  width: 160px;
  text-align: center;
  padding: 20px 10px;
  line-height: 17px;
}

.icon-comodidades {
  font-size: 35px;
  background: var(--color-gold-light);
  border-radius: 50%;
  margin: 0 auto 8px;
  padding: 20px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-accent);
  flex-shrink: 0;
}

.icon-comodidades-cama {
  font-size: 21px;
  padding: 27px 21px;
}

.text-comodidades {
  font-size: 14px;
  text-align: center;
  color: var(--color-text);
}


/* ---- AVALIAÇÕES ---- */
.avaliacoes {
  text-align: center;
  color: var(--color-white);
  padding: 100px var(--padding-section);
  background: center center;
}

.avaliacoes .icon-star {
  color: var(--color-star);
  font-size: 20px;
}

.title-avaliacoes {
  font-size: clamp(18px, 3vw, 35px);
  font-weight: 700;
  margin: 0px 0 5px;
  line-height: 1.3;
  letter-spacing: -1px;
}

.text-avaliacoes {
  font-size: 14px;
  font-weight: 400;
  margin: -5px 0 25px;
}

.btn-avaliacoes a {
  color: var(--color-white);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 400;
  border: 1px solid var(--color-white);
  display: inline-block;
  transition: color 0.3s, border-color 0.3s;
}

.btn-avaliacoes a:hover {
  color: var(--color-star);
  border-color: var(--color-star);
}


/* ---- HOSPEDAGEM E VALORES ---- */
.hospedagem {
  background: var(--color-bg-warm);
  padding: 80px var(--padding-section);
}

.hospedagem .content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.lista-hospedagem {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.box-hospedagem {
    width: clamp(260px, 30%, 320px);
    text-align: center;
    padding: 16px 0 20px;
    min-width: 260px;
    border-radius: 30px;
    background: #fff;
}

.box-hospedagem h3 {
  color: var(--color-dark-green);
  font-size: clamp(22px, 2.5vw, 29px);
  margin: 24px 20px 9px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -2px;
}

.box-hospedagem h3 strong {
  font-weight: 800;
}

.box-hospedagem .subtitulo-adicionais {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 400;
  max-width: 260px;
  margin: 0 auto;
}

.diaria-label {
  color: var(--color-text);
  font-size: 14px;
  text-transform: uppercase;
  margin: 14px auto -7px;
  font-weight: 600;
}

.box-hospedagem .valor {
  color: var(--color-olive-dark);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: bold;
  letter-spacing: -0.8px;
}

.pix-desconto {
  font-size: 12px;
  color: var(--color-green-pix);
  font-weight: 500;
  text-transform: uppercase;
  background: var(--color-green-pix-bg);
  width: 180px;
  margin: -5px auto 20px;
  border-radius: 20px;
  padding: 3px;
}

.desconto-antecipacao {
  color: var(--color-bg-warm);
  font-size: 11px;
  font-weight: 500;
  background: var(--color-text);
  padding: 4px 10px 7px;
  text-transform: uppercase;
  border-radius: 30px;
  width: 196px;
  margin: 10px auto 10px;
  letter-spacing: 0.2px;
}

.desconto-antecipacao .icon-coffee-cup {
  font-size: 16px;
  padding: 0 3px 0 0;
  position: relative;
  top: 2px;
}

.info-reserva {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  margin: 30px auto 10px;
  letter-spacing: -0.1px;
  max-width: 240px;
}

/* Lista de adicionais */
.lista-adicionais {
    padding: 0px 0px 10px 0px;
    margin: -10px 0 0 0;
}

.lista-adicionais dt {
      font-size: 14px;
    text-transform: uppercase;
    color: var(--color-olive);
    font-weight: 650;
    margin-top: 20px;
    margin-bottom: -8px;
}

.lista-adicionais dd {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-olive-dark);
  margin: 0 0 5px;
}

.lista-adicionais .por-diaria {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gold-text);
  text-transform: uppercase;
}

/* Botão CTA — reservar / WhatsApp */
.btn-queroreservar {
  margin: 15px 0 0 0;
  text-align: center;
}

.btn-queroreservar a {
    color: var(--color-white);
    background: var(--color-dark-green);
    padding: 14px 48px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn-queroreservar a:hover {
  background-color: #6fa00f;
  transform: translateY(-1px);
}

.btn-queroreservar .icon-whatsup {
  margin: 0;
  padding: 0;
  color: var(--color-white);
  background: none;
  line-height: 0;
  position: relative;
  top: 5px;
  left: -6px;
  font-size: 23px;
}

/* Informações adicionais da hospedagem */
.hospedagem-infos {
  max-width: var(--max-width);
  margin: 40px auto 0;
}

.hospedagem-infos ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.box-informacoes-hospedagem {
  max-width: 300px;
  min-width: 220px;
  flex: 1 1 220px;
}

.box-informacoes-hospedagem h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: bold;
  color: var(--color-olive);
  margin-bottom: 8px;
}

.box-hospedagem .text-description {
  font-size: 12px;
  margin: -12px 0 0 0;
  padding: 0;
  color: #999;
  font-weight: 600;
}

.box-informacoes-hospedagem p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.6;
}

.box-informacoes-hospedagem a {
  color: var(--color-olive);
  text-decoration: underline;
}


/* ---- CONTATO ---- */
.container-contato {
  background: var(--color-olive);
  text-align: center;
  padding: 50px var(--padding-section) 5px;
  color: var(--color-white);
}

/* Limita a largura do conteúdo textual em telas grandes */
.contato-inner {
  max-width: 680px;
  margin: 0 auto;
}

.title-contato {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
}

.container-contato p {
  font-size: 16px;
  margin-bottom: 20px;
}

.container-contato .btn-queroreservar a {
  background: var(--color-green-cta);
  padding: 18px 30px;
  font-size: 14px;
}


/* ---- EXPERIÊNCIAS PREMIUM ---- */
.experiencias-premium {
  background: var(--color-bg-warm);
  padding: 80px var(--padding-section);
}

.experiencias-premium .content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.experiencias-premium .exp-img {
  flex: 1 1 380px;
  max-width: 580px;
  overflow: hidden;
}

.experiencias-premium .exp-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.experiencias-premium .exp {
  flex: 1 1 320px;
  text-align: left;
  min-width: 0; /* evita overflow de texto em flex */
}

.experiencias-premium h2 {
  color: var(--color-olive);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 10px;
}

.experiencias-premium .descricao-premium {
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
}

.experiencias-premium ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.experiencias-premium li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: calc(50% - 10px);
  font-size: 14px;
  color: var(--color-text);
  min-width: 0;
}

.experiencias-premium li span[class^="icon-"] {
  font-size: 29px;
  background: rgba(236, 235, 218, 0.55);
  border-radius: 50%;
  padding: 15px;
  color: var(--color-gold-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.experiencias-premium .title-exp {
  padding-top: 10px;
}

.experiencias-premium .text-alert {
  font-size: 12px;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 8px;
}


/* ---- LOCALIZAÇÃO / CAMINHO ---- */
.caminho {
  max-width: var(--max-width);
  margin: 70px auto;
  padding: 0 var(--padding-section);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.caminho .content {
  flex: 1 1 380px;
  min-width: 0;
}

.caminho h2 {
  color: var(--color-olive);
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.25;
  margin-bottom: 20px;
}

.caminho p {
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 16px;
}

.caminho > img {
  flex: 1 1 380px;
  max-width: 560px;
  border-radius: 4px;
}


/* ---- PERGUNTAS FREQUENTES ---- */
.perguntas-frequentes {
  max-width: 1090px;
  margin: 0 auto;
  padding: 60px 30px;
}

.perguntas-frequentes h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: bold;
  color: var(--color-olive);
  margin-bottom: 30px;
}

.perguntas-frequentes details {
  border: 1px solid var(--color-olive-muted);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.perguntas-frequentes summary {
  background: var(--color-white);
  color: var(--color-olive-muted);
  cursor: pointer;
  padding: 18px;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  user-select: none;
  gap: 10px;
}

.perguntas-frequentes summary:hover {
  color: var(--color-olive);
}

.perguntas-frequentes summary::after {
  content: '+';
  font-weight: bold;
  font-size: 18px;
  color: var(--color-olive-muted);
  flex-shrink: 0;
}

.perguntas-frequentes details[open] summary::after {
  content: '−';
}

/* Remove o marcador nativo (Chrome, Safari) */
.perguntas-frequentes summary::-webkit-details-marker {
  display: none;
}

.perguntas-frequentes details p {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  padding: 0 18px 20px;
  line-height: 1.7;
}


/* ---- MAPA ---- */
.mapa-container {
  line-height: 0; /* remove espaço extra abaixo do iframe */
  display: block;
}

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


/* ---- FOOTER ---- */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 300;
  padding: 60px var(--padding-section);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-logo img {
  width: 120px;
    margin: -40px 0 -20px -33px;
    padding: 0;
}

.footer-location {
  margin-bottom: 5px;
}

.footer address {
  line-height: 2;
}

.footer address a {
  color: var(--color-white);
  transition: color 0.3s;
}

.footer address a:hover {
  color: var(--color-gold);
}

.footer h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-white);
}

.footer h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 20px 0 10px;
  color: var(--color-white);
}

.footer-horarios strong {
  color: var(--color-gold);
}

.footer-distancias strong {
  color: var(--color-gold);
}

.footer-distancias li {
  line-height: 2;
}

.footer-cta {
  max-width: 275px;
}

.footer-cta h3 {
  font-size: 20px;
  text-transform: none;
}

.footer-cta p {
  color: var(--color-gold);
  font-weight: 400;
  font-size: 12px;
  margin: 10px 0 20px;
}

.footer .btn-queroreservar a {
  background: var(--color-white);
  color: #000;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 14px;
  margin: 15px 0 0 -30px;
}


/* ============================================
   RESPONSIVO — Mobile First
   ============================================ */

/* Laptop / Tablet landscape (≤ 1024px) */
@media (max-width: 1024px) {

  /* Boxes de hospedagem: dois por linha */
  .lista-hospedagem {
    gap: 16px;
  }

  .box-hospedagem {
    width: calc(50% - 10px);
    min-width: 240px;
  }

  /* Footer: limita colunas a 2 por linha em telas médias */
  .footer-content {
    gap: 30px;
  }

  .footer-cta {
    max-width: 100%;
  }

  /* Experiências premium: ajusta a proporção */
  .experiencias-premium .exp-img {
    flex: 1 1 340px;
  }

  .experiencias-premium .exp {
    flex: 1 1 280px;
  }
}


/* Tablet (≤ 768px) */
@media (max-width: 768px) {

  :root {
    --padding-section: 16px;
  }

  /* Menu: esconde itens extras, mantém botão de reserva */
  .menu-content ul li:not(.btn-reserva) {
    display: none;
  }

  .menu-content {
    justify-content: space-between;
  }

  .menu .btn-reserva {
    padding: 5px 12px 10px 22px;
    font-size: 13px;
    text-align: center;
  }

  /* Comodidades */
  .lista-comodidades li {
    width: 130px;
    padding: 15px 5px;
  }

  .icon-comodidades {
    font-size: 25px;
    width: 55px;
    height: 55px;
    padding: 15px;
  }

  .text-comodidades {
    font-size: 12px;
    width: auto;
  }

  .comodidades .subtitulo-comodidades {
    max-width: 90%;
  }

  /* Hospedagem: cards em coluna */
  .lista-hospedagem {
    flex-direction: column;
    align-items: center;
  }

  .box-hospedagem {
    width: 100%;
    max-width: 400px;
  }

  /* Informações de hospedagem */
  .hospedagem-infos ul {
    flex-direction: column;
    align-items: center;
  }

  .box-informacoes-hospedagem {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  /* Experiências Premium — empilhar em mobile */
  .experiencias-premium .content {
    flex-direction: column;
  }

  .experiencias-premium .exp-img,
  .experiencias-premium .exp {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Localização */
  .caminho {
    flex-direction: column;
    margin: 40px auto;
  }

  .caminho > img {
    max-width: 100%;
    flex: 1 1 100%;
  }

  /* Mapa */
  .mapa-container iframe {
    height: 300px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-cta {
    max-width: 100%;
  }

  .footer-col {
    min-width: 100%;
  }
}


/* Mobile (≤ 480px) */
@media (max-width: 480px) {

  :root {
    --nav-height:     70px;
    --padding-section: 15px;
  }

  .experiencias {
    padding: 30px var(--padding-section) 40px;
  }

  .comodidades {
    padding: 30px var(--padding-section) 40px;
  }

  .comodidades .subtitulo-comodidades {
    max-width: 100%;
  }

  .lista-comodidades {
    gap: 10px;
  }

  .lista-comodidades li {
    width: calc(50% - 10px);
  }

  .hospedagem {
    padding: 50px var(--padding-section);
  }

  .box-hospedagem {
    max-width: 100%;
  }

  .experiencias-premium {
    padding: 40px var(--padding-section);
  }

  .experiencias-premium li {
    width: 100%;
  }

  .perguntas-frequentes {
    padding: 40px var(--padding-section);
  }

  .caminho h2 {
    margin-bottom: 10px;
  }

  .avaliacoes {
    padding: 40px var(--padding-section);
  }

  .container-contato {
    padding: 40px var(--padding-section) 60px;
  }

  .mapa-container iframe {
    height: 250px;
  }

  /* Botão CTA: padding menor em mobile para não sair da tela */
  .btn-queroreservar a {
    padding: 16px 28px;
  }
}


/* ============================================
   ANIMAÇÕES — respeita preferência do usuário
   ============================================ */
@media (prefers-reduced-motion: no-preference) {

  .btn-queroreservar a,
  .btn-avaliacoes a {
    transition:
      background-color 0.3s ease,
      transform 0.2s ease,
      color 0.3s ease,
      border-color 0.3s ease;
  }

  .perguntas-frequentes details p {
    animation: fadeIn 0.25s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-4px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


/* ============================================
   IMPRESSÃO
   ============================================ */
@media print {
  .menu,
  .btn-queroreservar,
  .btn-avaliacoes,
  .mapa-container,
  .image-slider {
    display: none;
  }

  .image-slider {
    width: 100%;
    max-width: 1160px; /* mesmo padrão do site */
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .slider__content {
    width: 100%;
  }

  .image-display {
    width: 100%;
    max-width: 100%;
  }

  .image-slider,
  .slider__content {
    overflow: hidden;
  }

  .slider-navigation {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .slider-navigation {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
  }

  .slider-navigation::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
  }

  .nav-button {
    flex: 0 0 auto;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
  }


  .thumbnail {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.6;
    transition: 0.3s;
  }

  .nav-button[aria-selected="true"] .thumbnail {
    opacity: 1;
    transform: scale(1.05);
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #555;
  }
}

.heroSwiper {
  height: clamp(320px, 60vh, 800px);
}

.heroSwiper .swiper-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* AVALIAÇÕES GOOGLE */

.reviews {
  padding: 60px 20px;
  text-align: center;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.stars {
  color: #f5a623;
  margin: 8px 0;
}

.review-card p {
  font-size: 14px;
  line-height: 1.5;
}

.date {
  font-size: 12px;
  color: #888;
}


/* ============================================
   GALERIA DE FOTOS — layout responsivo
   ============================================ */

.title-gallery-cabana {
  text-align: center;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 200;
  letter-spacing: -2px;
  padding: 60px var(--padding-section) 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.title-gallery-cabana strong {
  font-weight: 800;
  letter-spacing: -1px;
}

/* Container principal da galeria — flex row */
.image-slider {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-section) 70px;
}

/* Lios: inverte a ordem visual (texto à esquerda) */
.image-slider--reversed {
  flex-direction: row-reverse;
}

/* Wrapper da imagem — position: relative para conter o absolute interno */
.slider__content {
  flex: 0 0 50%;
  min-width: 0;
  position: relative;
}

/* Container da imagem — aspect-ratio define a altura */
.image-display {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #e0dfd6;
}

/* A img é posicionada absolutamente para não criar dependência circular com aspect-ratio */
.image-display img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botões prev / next sobrepostos na imagem */
.slider-controls {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.prev-button,
.next-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-dark-green);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.prev-button:hover,
.next-button:hover {
  background: var(--color-white);
  transform: scale(1.08);
}

/* Coluna de thumbs — vertical no desktop */
.slider-navigation {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 0 0 86px;
    padding-top: 4px;
    margin: 0px 0 0 0;
}

.nav-button {
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.thumbnail {
  width: 100%;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
  display: block;
  image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.nav-button[aria-selected="true"] .thumbnail {
  opacity: 1;
  transform: scale(1.04);
}

/* Coluna de texto */
.gallery-info {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
}

.gallery-info .title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.gallery-info .text {
  font-size: clamp(12px, 1.4vw, 14px);
  color: var(--color-text);
  line-height: 1.75;
}

/* ---- Tablet (≤ 768px) ---- */
@media (max-width: 768px) {

  .title-gallery-cabana {
    padding: 48px var(--padding-section) 18px;
  }

  /* Ambas as galerias empilham em coluna no mobile */
  .image-slider,
  .image-slider--reversed {
    flex-direction: column;
    gap: 14px;
    padding-bottom: 48px;
  }

  /* Imagem ocupa largura total */
  .slider__content {
    flex: none;
    width: 100%;
  }

  /* Thumbs viram linha horizontal com scroll */
  .slider-navigation {
    flex: none;
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 6px;
    gap: 10px;
    /* esconde scrollbar mas mantém funcional */
    scrollbar-width: none;
  }

  .slider-navigation::-webkit-scrollbar {
    display: none;
  }

  .nav-button {
    flex: 0 0 auto;
    width: auto;
  }

  .thumbnail {
    width: 76px;
    height: 54px;
  }

  /* Texto ocupa largura total */
  .gallery-info {
    flex: none;
    width: 100%;
    padding-top: 4px;
  }

  .gallery-info .title {
    font-size: 20px;
  }

  .gallery-info .text {
    font-size: 13px;
  }

  /* Botões de controle menores e bem posicionados */
  .slider-controls {
    bottom: 12px;
    right: 12px;
  }

  .prev-button,
  .next-button {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}

/* ---- Mobile pequeno (≤ 480px) ---- */
@media (max-width: 480px) {

  .title-gallery-cabana {
    font-size: 26px;
    padding: 40px var(--padding-section) 16px;
    letter-spacing: -1.5px;
  }

  .image-slider,
  .image-slider--reversed {
    padding: 0 var(--padding-section) 36px;
    gap: 12px;
  }

  .image-display {
    border-radius: 18px;
    aspect-ratio: 3 / 2;
  }

  .thumbnail {
    width: 64px;
    height: 46px;
    border-radius: 8px;
  }

  .gallery-info .title {
    font-size: 18px;
  }

  .gallery-info .text {
    font-size: 13px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-display img {
  transition: transform 0.6s ease;
}

.image-display:hover img {
  transform: scale(1.08);
}

.box-hospedagem {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-hospedagem:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.btn-queroreservar a:hover {
  transform: translateY(-2px) scale(1.02);
}

.reveal-delay-1 { transition-delay: 0.3s; opacity: 0;}
.reveal-delay-2 { transition-delay: 0.5s; opacity: 0;}
.reveal-delay-3 { transition-delay: 0.7s; opacity: 0;}

.avaliacoes {
  position: relative;
  overflow: hidden;
}

.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -10%; /* aumenta área pra evitar corte */
  background-image: url('src/images/background-avaliacoes.jpg');
  background-size: cover;
  background-position: center;
  transform: translateY(0) scale(1.5);
  will-change: transform;
  z-index: 0;
}

/* Overlay cinematográfico */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.25)
  );
  z-index: 1;
}

/* Conteúdo acima de tudo */
.avaliacoes-content {
  position: relative;
  z-index: 2;
}

.lista-comodidades li {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s ease;
}

.lista-comodidades li.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lista-comodidades li:nth-child(1) { transition-delay: 0.05s; }
.lista-comodidades li:nth-child(2) { transition-delay: 0.1s; }
.lista-comodidades li:nth-child(3) { transition-delay: 0.15s; }
.lista-comodidades li:nth-child(4) { transition-delay: 0.2s; }
.lista-comodidades li:nth-child(5) { transition-delay: 0.25s; }
.lista-comodidades li:nth-child(6) { transition-delay: 0.3s; }
.lista-comodidades li:nth-child(7) { transition-delay: 0.35s; }
.lista-comodidades li:nth-child(8) { transition-delay: 0.4s; }
.lista-comodidades li:nth-child(9) { transition-delay: 0.45s; }
.lista-comodidades li:nth-child(10) { transition-delay: 0.5s; }

.lista-comodidades li {
  transition: all 0.4s ease;
}

.lista-comodidades li:hover {
  transform: translateY(-5px) scale(1.05);
}


/* HERO CONTENT */

.hero-slider {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  z-index: 10;
}

.swiper {
  position: relative;
  z-index: 0;
}

/* Título */
.hero-content h1 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-content h1 strong {
  font-weight: 800;
}

/* Subtítulo */
.hero-content p {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  margin-bottom: 30px;
}

/* Botões */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Botão escuro */
.btn-dark {
  background: #000;
  color: #fff;
}

/* Botão verde */
.btn-green {
  background: var(--color-olive);
  color: #fff;
}

/* Hover */
.btn-hero:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 0.95;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-hero {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ============================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================ */

.menu .btn-reserva {
  position: relative;
  background: var(--color-dark-green);
  padding: 0;
  border-radius: 999px;
  transition:
    width 0.45s ease,
    height 0.45s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-radius 0.45s ease;
  overflow: hidden;
  z-index: 9999;
}

.menu .btn-reserva a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}

/* Ícone */
.menu .btn-reserva .simbolo-whats {
  position: static;
  margin: 0;
  font-size: 24px;
  flex-shrink: 0;
}

/* Texto */
.menu .btn-reserva .btn-text {
  display: inline-block;
  max-width: 220px;
  opacity: 1;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  transition:
    max-width 0.35s ease,
    opacity 0.25s ease,
    margin 0.35s ease;
}

/* Estado flutuante */
.menu .btn-reserva.is-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  animation: whatsappFloatIn 0.45s ease;
}

.menu .btn-reserva.is-floating a {
  width: 100%;
  height: 100%;
  padding: 0;
  gap: 0;
}

/* Oculta texto */
.menu .btn-reserva.is-floating .btn-text {
  max-width: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

/* Hover */
.menu .btn-reserva.is-floating:hover {
  transform: scale(1.08);
}

/* Entrada */
@keyframes whatsappFloatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.75);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu .btn-reserva.is-floating {
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
  }
}

/* ============================================
   BOTÃO MENOR NO TOPBAR
============================================ */

.menu .btn-reserva a {
    padding: 10px 20px;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

.menu .btn-reserva .simbolo-whats {
    font-size: 18px;
}

/* Tamanho quando flutuante */
.menu .btn-reserva.is-floating {
    width: 60px;
    height: 60px;
}

@media (max-width: 768px) {
    .menu .btn-reserva a {
        padding: 9px 13px;
        font-size: 11px;
        gap: 7px;
    }

    .menu .btn-reserva .btn-text {
      font-size: 11px;
    }

    .menu .btn-reserva .simbolo-whats {
        font-size: 17px;
    }

    .menu .btn-reserva.is-floating {
        width: 56px;
        height: 56px;
    }
}

/* ============================================
   INSTAGRAM - FUNDO TRANSPARENTE
============================================ */

.menu .btn-instagram a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease;
}

.menu .btn-instagram .icon-instagram {
    font-size: 22px;
    line-height: 1;
}

/* Hover elegante */
.menu .btn-instagram a:hover {
    transform: translateY(0px) scale(1);
    color: var(--color-olive);
}

/* ============================================
   INSTAGRAM VISÍVEL NO MOBILE
============================================ */

.menu .btn-instagram {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu .btn-instagram a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

/* Garante exibição no menu mobile */
@media (max-width: 768px) {
    .menu .btn-instagram {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .menu ul {
      gap: 0;
    }

    .menu img {
      width: 160px;
    }

    .menu .btn-instagram a {
        width: 40px;
        height: 40px;
    }

    .menu .btn-instagram .icon-instagram {
        font-size: 21px;
    }
}

/* ============================================
   WHATSAPP FLUTUANTE - FIX iPHONE
============================================ */

.menu .btn-reserva.is-floating {
    position: fixed !important;
    right: 20px !important;
    bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    left: auto !important;
    top: auto !important;

    z-index: 99999;

    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

/* Remove qualquer posicionamento herdado */
.menu .btn-reserva.is-floating::before,
.menu .btn-reserva.is-floating::after {
    position: static;
}

.menu .btn-reserva.is-floating a {
    width: 100%;
    height: 100%;
}

/* Ajuste específico para iOS */
@supports (-webkit-touch-callout: none) {
    .menu .btn-reserva.is-floating {
        bottom: calc(24px + env(safe-area-inset-bottom)) !important;
    }
}