/* ================================================
    RESET & BASE
    ================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow-x: hidden; }
body { font-family: 'Lato', sans-serif; }

/* ================================================
    HEADER — estado inicial (transparente)
    ================================================ */

    #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* HEADER — estado ao rolar (fundo bege) */
#header.scrolled {
    background: #f0e3c8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

/* ================================================
    LOGO
    ================================================ */
.logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Branca por padrão (sobre o carrossel) */
.logo-img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

/* Ao rolar → mostra a cor original da logo */
#header.scrolled .logo-img {
    filter: none;
}

/* ================================================
    HAMBURGUER
    ================================================ */
#hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
#hamburger span {
    display: block;
    width: 22px;
    height: 1.8px;
    background: #ffffff;
    border-radius: 2px;
    transition: background 0.4s ease;
}
#header.scrolled #hamburger span {
    background: #4a2910;
}

/* ================================================
    NAV OVERLAY (menu)
    ================================================ */
#nav-overlay {
    position: fixed;
    inset: 0;
    background: #f0e3c8;
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 22px 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}
#nav-overlay.open {
    transform: translateX(0);
}
#nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 22px;
    color: #4a2910;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
#nav-overlay nav {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 6px;
}
#nav-overlay nav a {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 400;
    color: #4a2910;
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid rgba(74, 41, 16, 0.18);
    transition: opacity 0.2s;
}
#nav-overlay nav a:hover { opacity: 0.6; }

/* ================================================
    HERO — IMAGEM ESTÁTICA
    (imagem definida no index.html via style inline)
    ================================================ */
#carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #5a4a3a;
}

/* Camada escura sobre a imagem para destacar o texto */
#carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; }

/* ================================================
    HERO OVERLAY — texto centralizado sobre a imagem
    ================================================ */
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 10px;
}
.hero-titulo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 6vw, 36px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.2;
}
.hero-destaque {
    color: #d4956a;
}
.hero-subtitulo {
    font-family: 'Lato', sans-serif;
    font-size: clamp(13px, 3.5vw, 16px);
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
}
.hero-btn {
    margin-top: 6px;
    padding: 10px 28px;
    background: #b5631a;
    border: 1.5px solid #b5631a;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.hero-btn:hover {
    background: #9a5216;
    border-color: #9a5216;
}

/* ================================================
    SEÇÃO 1 — TEXTO APRESENTAÇÃO
    ================================================ */
#sobre {
    background: #fff;
}
.sobre-texto {
    padding: 36px 28px 48px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.sobre-titulo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 6vw, 38px);
    font-weight: 500;
    color: #2e1a0e;
    margin-bottom: 14px;
    line-height: 1.25;
}
.sobre-subtitulo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(13px, 3.5vw, 17px);
    font-weight: 400;
    font-style: italic;
    color: #b5631a;
    margin-bottom: 22px;
    line-height: 1.5;
}
.sobre-paragrafo {
    font-family: 'Lato', sans-serif;
    font-size: clamp(13px, 3.2vw, 15px);
    color: #3d2b1a;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: center;
}
.sobre-paragrafo:last-child { margin-bottom: 0; }

/* ================================================
    SEÇÃO 2 — CARROSSEL GALERIA + BOTÃO RESERVAR
    (imagens definidas no index.html via style inline)
    ================================================ */
#galeria {
    background: #fff;
    padding: 0 20px 40px;
}
.galeria-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: #e8d5b0;
}
.galeria-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.galeria-slide.ativo { opacity: 1; }

.galeria-rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}
.galeria-setas { display: flex; gap: 8px; }
.seta {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #e8d5b0;
    color: #4a2910;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.seta:hover { background: #d4bc96; }
.btn-reservar {
    background: #e8d5b0;
    color: #4a2910;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.2s;
}
.btn-reservar:hover { background: #d4bc96; }

/* ================================================
   SEÇÃO 3 — DESTAQUE SERVIÇOS (texto elegante)
   ================================================ */
#servicos-destaque {
  background: #fff;
  padding: 52px 28px;
}
.destaque-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.destaque-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 4vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: #b5631a;
  line-height: 1.55;
}
.destaque-divisor {
  width: 48px;
  height: 1px;
  background: #c8a97a;
}
.destaque-paragrafo {
  font-family: 'Lato', sans-serif;
  font-size: clamp(13px, 3.2vw, 15px);
  color: #3d2b1a;
  line-height: 1.8;
}
.destaque-paragrafo strong {
  font-weight: 700;
  color: #2e1a0e;
}

/* ================================================
   SEÇÃO 4 — CARDS DE ATRATIVOS
   ================================================ */
#atrativos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.atrativo-card {
  position: relative;
  width: 100%;
  height: 180vw;      /* quadrado no mobile */
  max-height: 600px;  /* limite no desktop */
  background-size: cover;
  background-position: center;
}

/* Camada escura sobre a foto */
.atrativo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* era 0.40, agora mais escuro */
}
.atrativo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 20px 24px;
  z-index: 1;
}
.atrativo-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  max-width: 80%;
}
.atrativo-destaque {
  color: #d4956a;
  font-style: italic;
}
.atrativo-desc {
  font-family: 'Lato', sans-serif;
  font-size: clamp(12px, 3vw, 15px);
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  max-width: 85%;
}
.atrativo-icone {
  text-align: center;
  font-size: 22px;
  color: #d4956a;
  letter-spacing: 4px;
}

/* ================================================
   SEÇÃO 5 — TEXTO DESTAQUE CHALÉS
   ================================================ */
#chales-destaque {
  background: #fff;
  padding: 52px 28px;
}

/* ================================================
   SEÇÃO 6 — GALERIA 2 (setas + progresso)
   ================================================ */
#galeria2 {
  background: #fff;
  padding: 0 20px 40px;
}
.galeria2-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #e8d5b0;
}
.galeria2-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.galeria2-slide.ativo { opacity: 1; }

.galeria2-rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

/* Linha de progresso */
.galeria2-progresso {
  flex: 1;
  height: 1.5px;
  background: #e8d5b0;
  margin-left: 16px;
  border-radius: 2px;
  overflow: hidden;
}
.galeria2-barra {
  height: 100%;
  width: 33.33%;
  background: #b5631a;
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ================================================
   SEÇÃO 7 — IMAGEM + TEXTO POÉTICO + BOTÃO
   ================================================ */
#convite {
  background: #fff;
  padding: 0 20px 52px;
}
.convite-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 32px;
}
.convite-texto {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.convite-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 400;
  color: #2e1a0e;
  line-height: 1.35;
}
.convite-destaque {
  color: #b5631a;
  font-style: italic;
}
.convite-paragrafo {
  font-family: 'Lato', sans-serif;
  font-size: clamp(13px, 3.2vw, 15px);
  color: #3d2b1a;
  line-height: 1.9;
}
.convite-btn {
  margin-top: 6px;
  padding: 12px 32px;
  background: #e8d5b0;
  color: #4a2910;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.convite-btn:hover {
  background: #d4bc96;
}

/* ================================================
   SEÇÃO 8 — IMAGEM + TEXTO + DOIS BOTÕES
   ================================================ */
#reserva {
  background: #fff;
  padding: 0 20px 52px;
}
.reserva-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 32px;
}
.reserva-texto {
  display: flex;
  flex-direction: column;
  align-items: center;   /* era flex-start */
  text-align: center;    /* adiciona isso */
  gap: 18px;
}
.reserva-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 400;
  color: #2e1a0e;
  line-height: 1.35;
}
.reserva-destaque {
  color: #b5631a;
  font-style: italic;
}
.reserva-paragrafo {
  font-family: 'Lato', sans-serif;
  font-size: clamp(13px, 3.2vw, 15px);
  color: #3d2b1a;
  line-height: 1.8;
}
.reserva-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.reserva-btn-outline {
  padding: 11px 20px;
  border: 1.5px solid #b5631a;
  border-radius: 8px;
  color: #b5631a;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.reserva-btn-outline:hover {
  background: #b5631a;
  color: #fff;
}
.reserva-btn-filled {
  padding: 11px 20px;
  background: #b5631a;
  border: 1.5px solid #b5631a;
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.reserva-btn-filled:hover {
  background: #9a5216;
  border-color: #9a5216;
}

/* ================================================
   FOOTER
   ================================================ */
#footer {
  background: #e8d5b0;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  height: 72px;
  width: auto;
  opacity: 0.75;
}
.footer-texto {
  font-family: 'Lato', sans-serif;
  font-size: clamp(11px, 2.8vw, 13px);
  color: #4a2910;
  line-height: 1.7;
  max-width: 320px;
  opacity: 0.8;
}