/* ========================================
   BEIRA MAR PRAIA HOTEL — Folha de Estilos
   Versão: 1.0
   ======================================== */

/* ----------------------------------------
   1. VARIÁVEIS CSS
   ---------------------------------------- */
:root {
  /* Cores */
  --gold:            #C8972A;
  --gold-light:      #E8B84B;
  --gold-dark:       #A07820;
  --gold-bg:         rgba(252, 160, 1, 0.5);  /* cor exata medida no site de referência */
  --gold-vivid:      #FCA001;                 /* versão sólida da mesma cor, p/ botões e textos de destaque */
  --dark:            #1E1E1E;
  --dark-2:          #2C2C2C;
  --dark-3:          #3A3A3A;
  --gray:            #666;
  --gray-light:      #999;
  --light:           #F5F5F5;
  --white:           #FFF;
  --footer-bg:       #4EB6FF;
  --green-wa:        #25D366;
  --site-build:      "VGhpYWdvIENvc3Rh";

  /* Tipografia */
  --font:            'Roboto Slab', Georgia, serif;

  /* Tamanhos */
  --nav-h:           100px;  /* fallback; sincronizado via JS com a altura real da navbar */
  --header-total:    260px;  /* fallback; sincronizado via JS com a altura real do cabeçalho */
  --container:       1200px;

  /* Efeitos */
  --shadow-sm:  0 2px 8px  rgba(0,0,0,.10);
  --shadow-md:  0 4px 20px rgba(0,0,0,.15);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.22);
  --radius:     8px;
  --radius-lg:  16px;
  --radius-pill:50px;
  --ease:       all 0.3s ease;
}

/* ----------------------------------------
   2. RESET & BASE
   ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: var(--font); color: var(--dark-3); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
address { font-style: normal; }

/* ----------------------------------------
   3. UTILITÁRIOS
   ---------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }

/* Títulos de seção */
.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

/* Botões base */
.btn {
  display: inline-block;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  text-align: center;
  font-size: .9rem;
}
.btn-primary  { background: var(--gold-vivid); color: var(--white); border-color: var(--gold-vivid); }
.btn-primary:hover  { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent;   color: var(--gold);  border-color: var(--gold); }
.btn-outline:hover  { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-dark     { background: var(--dark);    color: var(--white); border-color: var(--dark); }
.btn-dark:hover     { background: var(--dark-2); transform: translateY(-2px); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible  { opacity: 1; transform: none; }

/* ----------------------------------------
   4. CABEÇALHO
   ---------------------------------------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,.97); }
.site-header.scrolled .logo img { filter: none; }
.site-header.scrolled .nav-links a { color: var(--dark-3); text-shadow: none; }
.site-header.scrolled .hamburger span { background: var(--dark-3); box-shadow: none; }
.site-header.scrolled .reserve-toggle { color: var(--dark-3); background: rgba(0,0,0,.06); text-shadow: none; }
.site-header.scrolled .top-bar { color: var(--dark-3); text-shadow: none; }
.site-header.scrolled .top-bar-phone i { color: var(--gold-dark); }

/* — Grid do cabeçalho: logo (altura toda) + coluna direita empilhada — */
.header-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo */
.header-logo { display: flex; flex-shrink: 0; padding-top: clamp(4px, .5vw, 8px); }
.logo { display: block; }
.logo img { height: clamp(90px, 15.5vw, 223px); width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }
.logo-fallback {
  display: none;
  align-items: center;
  gap: .5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}
.logo-fallback small { display: block; font-size: .7rem; font-weight: 400; color: var(--gray); letter-spacing: 3px; text-transform: uppercase; }

/* Coluna direita: telefone/idiomas → menu → reserva, empilhados */
.header-right { display: flex; flex-direction: column; padding-top: clamp(.3rem, .6vw, .5rem); }

/* — Barra do topo (telefone + idiomas) — */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  padding-bottom: clamp(.4rem, 1vw, .6rem);
  font-size: clamp(.78rem, .9vw, .875rem);
}
.top-bar-phone { display: flex; align-items: center; gap: .4rem; }
.top-bar-phone i { color: var(--gold-light); }
.top-bar-langs { display: flex; gap: clamp(.7rem, 1.5vw, 1rem); }
.top-bar-langs a { display: flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.85); font-size: clamp(.7rem, .8vw, .78rem); transition: var(--ease); }
.top-bar-langs a img { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.4); }
.top-bar-langs a:hover, .top-bar-langs a.active { color: var(--gold); }

/* — Navbar (menu) — */
.navbar { display: flex; align-items: center; padding-bottom: clamp(.9rem, 1.8vw, 1.25rem); }

/* Menu */
.nav-menu { display: flex; align-items: center; gap: clamp(.85rem, 2vw, 1.35rem); }
.btn-reserve {
  display: inline-block;
  padding: clamp(.3rem, .6vw, .4rem) clamp(.7rem, 1.3vw, .95rem);
  border: 2px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-weight: 400;
  font-size: clamp(.9rem, 1.1vw, 1.125rem);
  transition: var(--ease);
  white-space: nowrap;
}
.btn-reserve:hover { background: var(--gold); color: var(--white); }

.nav-links { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.5rem); }
.nav-links a {
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
  font-size: clamp(.9rem, 1.1vw, 1.125rem);
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
  transition: var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Idiomas dentro do menu mobile (a barra do topo já cobre isso no desktop) */
.nav-langs { display: none; }

/* Hamburguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.4); border-radius: 2px; transition: var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Ícone de reserva (mobile) */
.reserve-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  transition: var(--ease);
}
.reserve-toggle.active { background: var(--gold); }

/* — Barra de Reserva — */
.booking-bar {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 1.25rem);
  background: var(--gold-bg);
  border-radius: 4px;
  padding: clamp(.5rem, 1.2vw, .65rem) clamp(.9rem, 1.8vw, 1.15rem);
  margin-bottom: clamp(.5rem, 1.2vw, .85rem);
}
.booking-label {
  color: var(--white);
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.15;
  white-space: nowrap;
  background: rgba(0,0,0,.1);
  padding: clamp(.4rem, .8vw, .6rem) clamp(.6rem, 1vw, .9rem);
  border-radius: 3px;
}
.booking-form { display: flex; flex-direction: column; gap: clamp(.2rem, .5vw, .35rem); flex: 1; }
.booking-row { display: flex; align-items: center; gap: clamp(.4rem, 1vw, .7rem); flex-wrap: wrap; }
.booking-field { display: flex; align-items: center; gap: .35rem; }
.booking-field label { color: var(--white); font-size: clamp(.78rem, .9vw, .875rem); font-weight: 400; white-space: nowrap; }
.booking-field input {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 2px;
  padding: clamp(.15rem, .3vw, .2rem) clamp(.3rem, .5vw, .4rem);
  font-size: clamp(.78rem, .85vw, .875rem);
  color: var(--dark-3);
  cursor: pointer;
  width: clamp(120px, 12.4vw, 178px);
}
.booking-field select {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 2px;
  padding: 0 2px;
  font-size: clamp(.78rem, .85vw, .875rem);
  color: var(--dark-3);
  cursor: pointer;
}
.booking-field input:focus,
.booking-field select:focus { outline: 2px solid var(--gold-light); }
.btn-search {
  background: #f0f0f0;
  color: var(--dark-3);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 2px;
  padding: clamp(.15rem, .3vw, .2rem) clamp(.6rem, 1vw, .85rem);
  font-size: clamp(.78rem, .85vw, .875rem);
  font-weight: 400;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-search:hover { background: #e2e2e2; }

/* ----------------------------------------
   5. HERO SLIDESHOW (index)
   ---------------------------------------- */
.slideshow-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease-in-out;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.38); }

/* Conteúdo sobre o slide */
.slide-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 100%;
  max-width: var(--container);
  padding: 0 1.5rem;
}
.slide-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  margin-bottom: .5rem;
}
.slide-content p {
  font-size: 1.1rem;
  opacity: .9;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  margin-bottom: 1.5rem;
}

/* Botões nav do slideshow */
.ss-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--ease);
  z-index: 20;
  display: flex; align-items: center; justify-content: center;
}
.ss-btn:hover { background: rgba(200,151,42,.7); }
.ss-btn.prev { left: 1.5rem; }
.ss-btn.next { right: 1.5rem; }

/* Dots */
.ss-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 20;
}
.ss-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  padding: 0;
}
.ss-dot.active { background: var(--gold); transform: scale(1.4); }

/* ----------------------------------------
   6. HERO DE PÁGINAS INTERNAS
   ---------------------------------------- */
.page-hero {
  position: relative;
  padding-top: var(--header-total); /* empurra o conteúdo abaixo do cabeçalho sobreposto */
  min-height: calc(var(--header-total) + clamp(40px, 8vw, 110px));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a3a5c 0%, #2d6a4f 100%);
  background-size: cover;
  background-position: center;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.48); }
.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: clamp(1rem, 4.5vw, 3.1rem) 1.5rem .5rem;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 6.2vw, 3.75rem);
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* ----------------------------------------
   7. SEÇÃO SOBRE (index)
   ---------------------------------------- */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.sobre-text h2 { font-size: clamp(1.7rem, 2.6vw, 2.25rem); font-weight: 300; color: var(--gold-vivid); line-height: 1.35; margin-bottom: 1rem; }
.sobre-text p  { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: 1.25rem;
}
.feature-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; }
.feature-item i { color: var(--gold); width: 16px; }
.sobre-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre-img img { width: 100%; height: 420px; object-fit: cover; transition: transform .5s ease; }
.sobre-img:hover img { transform: scale(1.05); }

/* ----------------------------------------
   8. DESTAQUES / ÍCONES
   ---------------------------------------- */
.highlights-section { background: var(--light); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.hl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.hl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hl-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.7rem;
  color: var(--white);
}
.hl-card h3 { font-size: .95rem; margin-bottom: .4rem; }
.hl-card p  { font-size: .83rem; color: var(--gray); line-height: 1.5; }

/* ----------------------------------------
   9. ACOMODAÇÕES — CARDS
   ---------------------------------------- */
.acomodacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.acc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--ease);
}
.acc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.acc-img {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: linear-gradient(135deg,#1a3a5c,#2d6a4f);
}
.acc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.acc-card:hover .acc-img img { transform: scale(1.08); }
.acc-badge {
  position: absolute;
  top: .85rem; left: .85rem;
  background: var(--gold-vivid);
  color: var(--white);
  padding: .25rem .7rem;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 700;
}
.acc-body { padding: 1.25rem; }
.acc-body h3 { color: var(--gold-vivid); font-size: 1.05rem; margin-bottom: .4rem; }
.acc-body p  { color: var(--gray); font-size: .84rem; line-height: 1.6; margin-bottom: .9rem; }
.acc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.acc-tag {
  background: var(--light);
  color: var(--dark-3);
  padding: .2rem .55rem;
  border-radius: var(--radius-pill);
  font-size: .73rem;
  display: flex; align-items: center; gap: 4px;
}
.acc-tag i { color: var(--gold); font-size: .8rem; }
.acc-actions { display: flex; gap: .5rem; }
.acc-actions .btn { flex: 1; padding: .55rem; font-size: .82rem; }

/* ----------------------------------------
   10. CTA SECTION
   ---------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  text-align: center;
  padding: 4.5rem 0;
  color: var(--white);
}
.cta-section h2 { font-size: 2rem; margin-bottom: .5rem; }
.cta-section p  { font-size: 1.05rem; opacity: .9; margin-bottom: 1.75rem; }
.btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--gold-dark);
  padding: .9rem 2.5rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--ease);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-cta:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ----------------------------------------
   11. GALERIA (hotel.html)
   ---------------------------------------- */
.gallery-section { background: var(--light); }
.gallery-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}
.gallery-track { display: flex; transition: transform .5s ease; }
.gallery-item {
  min-width: 100%;
  height: 480px;
  background: linear-gradient(135deg,#1a3a5c,#2d6a4f);
  flex-shrink: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gal-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(200,151,42,.82);
  color: var(--white);
  border: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
  z-index: 10;
}
.gal-btn:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }
.gal-btn.prev { left: 1rem; }
.gal-btn.next { right: 1rem; }
.gal-dots { display: flex; justify-content: center; gap: .5rem; margin-top: .9rem; }
.gal-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none; cursor: pointer;
  transition: var(--ease); padding: 0;
}
.gal-dot.active { background: var(--gold); transform: scale(1.4); }

/* Thumbs */
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .75rem;
  margin-top: 1.25rem;
}
.gal-thumb {
  height: 130px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
  background: linear-gradient(135deg,#1a3a5c,#4a7c28);
}
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gal-thumb:hover { box-shadow: var(--shadow-md); transform: scale(1.03); }
.gal-thumb:hover img { transform: scale(1.1); }
.gal-thumb.active { outline: 3px solid var(--gold); }

/* Texto "Feito para criar memórias..." (fotos.html) */
.memorias-grid {
  display: grid;
  grid-template-columns: minmax(200px, 5fr) minmax(240px, 7fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  margin: 2.75rem 0;
}
.memorias-grid h3 {
  color: var(--gold-vivid);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
}
.memorias-grid p { color: var(--gray); font-size: 1rem; line-height: 1.7; padding-left: clamp(0px, 2vw, 1.9rem); }

/* Botão sólido de cotação (fotos.html) */
.btn-quote {
  display: inline-block;
  background: var(--gold-vivid);
  color: var(--white);
  padding: .9rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: var(--ease);
}
.btn-quote:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ----------------------------------------
   12. SOBRE O HOTEL (hotel.html)
   ---------------------------------------- */
.hotel-desc-section { background: var(--white); }
.hotel-desc-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 2fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}
.hotel-desc h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); font-weight: 300; color: var(--gold-vivid); margin-bottom: 1rem; line-height: 1.3; }
.hotel-desc p  { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }
.services-list { margin-top: 1.25rem; }
.service-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--light);
  font-size: .9rem;
}
.service-item:last-child { border-bottom: none; }
.service-item i { color: var(--gold); width: 18px; text-align: center; }
.info-box {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1.5rem;
}
.info-box h3 { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.info-row { display: flex; justify-content: space-between; padding: .45rem 0; border-bottom: 1px solid rgba(0,0,0,.07); font-size: .88rem; }
.info-row:last-child { border-bottom: none; }
.info-row strong { color: var(--dark); }

/* ----------------------------------------
   13. FORMULÁRIO DE CADASTRO (acomodacoes.html)
   ---------------------------------------- */
.cadastro-section { background: var(--light); }
.cadastro-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}
.cadastro-box h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
  padding-bottom: .85rem;
  border-bottom: 2px solid var(--light);
  display: flex; align-items: center; gap: .6rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--dark-3); text-transform: uppercase; letter-spacing: .5px; }
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: .55rem .85rem;
  color: var(--dark-3);
  transition: var(--ease);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,42,.15); }
.form-group textarea { resize: vertical; min-height: 90px; }
.feature-checks { display: flex; flex-wrap: wrap; gap: .5rem; }
.feature-checks label { display: flex; align-items: center; gap: .35rem; font-size: .82rem; cursor: pointer; text-transform: none; font-weight: 500; }
.feature-checks input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }
.upload-area {
  border: 2px dashed #d0d0d0;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--ease);
  color: var(--gray-light);
  font-size: .85rem;
}
.upload-area:hover { border-color: var(--gold); color: var(--gold); }
.upload-area i { font-size: 2rem; display: block; margin-bottom: .4rem; }
.form-actions { display: flex; gap: .75rem; justify-content: flex-end; margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--light); }

/* ----------------------------------------
   14. RODAPÉ
   ---------------------------------------- */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.9);
  padding: 2rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  padding-bottom: 1.75rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .85rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.3);
}
/* Col 1 */
.contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .6rem; font-size: .85rem; line-height: 1.5; }
.contact-item i { color: var(--white); margin-top: 2px; flex-shrink: 0; width: 15px; }
.contact-item a { color: rgba(255,255,255,.9); transition: var(--ease); }
.contact-item a:hover { color: var(--dark); }
/* Col 2 */
.pay-cards { display: flex; flex-wrap: wrap; gap: .9rem; }
.pay-card {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem;
  color: var(--white);
  transition: var(--ease);
}
.pay-card:hover { color: var(--dark); }
.pay-card i { font-size: 1.4rem; }
.pay-info { margin-top: .85rem; font-size: .82rem; color: rgba(255,255,255,.75); }
.pay-info p { margin-bottom: .3rem; display: flex; align-items: center; gap: .4rem; }
.pay-info i { color: var(--white); }
/* Col 3 */
.footer-desc { font-size: .85rem; line-height: 1.6; margin-bottom: .75rem; }
.footer-hours { font-size: .83rem; margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem; }
.footer-hours i { color: var(--white); }
.social-row { display: flex; gap: .6rem; margin-top: .75rem; }
.social-link {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .88rem;
  transition: var(--ease);
}
.social-link:hover { background: var(--white); color: var(--footer-bg); transform: translateY(-3px); }
.social-link img { width: 15px; height: 15px; display: block; }
.footer-credit { margin-top: .85rem; font-size: .75rem; color: rgba(255,255,255,.7); }
.footer-credit a { color: var(--white); font-weight: 600; transition: var(--ease); }
.footer-credit a:hover { color: var(--dark); }
/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.25);
  padding: .75rem 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.8);
}

/* ----------------------------------------
   15. BOTÃO WHATSAPP FLUTUANTE
   ---------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9990;
}
.wa-btn {
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--ease);
  animation: wa-pulse 2.5s infinite;
}
.wa-btn:hover { transform: scale(1.15); box-shadow: 0 6px 30px rgba(37,211,102,.65); animation: none; }
.wa-tip {
  position: absolute;
  right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--dark-3);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}
.wa-tip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--white);
  border-right: none;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ----------------------------------------
   16. PÁGINA DE CONTATO
   ---------------------------------------- */
.contact-intro {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 1.75rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 6fr) minmax(240px, 5fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.4rem;
  color: var(--gray);
  font-size: .95rem;
}
.contact-info-item i { font-size: 1.6rem; color: var(--gray); margin-top: .1rem; }
.contact-info-item a { display: block; color: var(--gold-vivid); font-size: 1.1rem; margin-top: .2rem; transition: var(--ease); }
.contact-info-item a:hover { color: var(--gold-dark); }

/* Formulário simples (estilo próprio, sem card/borda) */
.simple-form h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.simple-form .form-group { margin-bottom: 1rem; }
.simple-form label { display: none; } /* rótulo vem via placeholder, como na referência */
.simple-form input,
.simple-form textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark-3);
  transition: var(--ease);
}
.simple-form input:focus,
.simple-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,42,.15); }
.simple-form textarea { min-height: 130px; resize: vertical; }
.simple-form button {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--ease);
}
.simple-form button:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ----------------------------------------
   17. PÁGINA DE LOCALIZAÇÃO
   ---------------------------------------- */
.location-section { position: relative; }
.location-map {
  width: 100%;
  height: clamp(400px, 55vw, 600px);
  border: 0;
  display: block;
}

/* ----------------------------------------
   18. TOAST
   ---------------------------------------- */
.toast {
  position: fixed;
  bottom: 6rem; right: 1.75rem;
  background: var(--dark);
  color: var(--white);
  padding: .9rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  font-size: .88rem;
  max-width: 320px;
  transform: translateX(115%);
  transition: transform .4s ease;
}
.toast.show { transform: translateX(0); }

/* ----------------------------------------
   19. RESPONSIVIDADE
   ---------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2,1fr); }
  .sobre-grid, .hotel-desc-grid { gap: 2rem; }
  .nav-links { gap: 1rem; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: clamp(72px, 22vw, 88px); }

  .header-grid { display: flex; flex-wrap: wrap; align-items: center; padding: .6rem 1.25rem; column-gap: .75rem; row-gap: 0; }
  .header-logo { padding-top: 0; order: 1; }
  .logo img { height: clamp(72px, 20vw, 84px); }
  .header-right { display: contents; }

  .top-bar { display: none; }

  .hamburger { display: flex; }
  .reserve-toggle { display: flex; }

  .navbar { order: 2; flex: 1 1 auto; justify-content: flex-end; align-items: center; gap: .6rem; padding-bottom: 0; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--ease);
    z-index: 998;
    gap: .6rem;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }

  .btn-reserve { width: 100%; text-align: center; padding: .7rem; }
  .nav-links { flex-direction: column; width: 100%; gap: 0; }
  .nav-links a { padding: .65rem 0; border-bottom: 1px solid var(--light); width: 100%; color: var(--dark-3); text-shadow: none; }

  .nav-langs { display: flex; justify-content: center; gap: 1.25rem; width: 100%; padding-top: 1rem; }
  .nav-langs a { display: flex; align-items: center; gap: .4rem; color: var(--dark-3); font-size: .82rem; transition: var(--ease); }
  .nav-langs a img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.15); }
  .nav-langs a:hover, .nav-langs a.active { color: var(--gold); }

  .booking-bar {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    background: var(--gold-dark);
    border-radius: 0;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.5rem 1.25rem;
    margin: 0;
    max-width: none;
    z-index: 998;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--ease);
  }
  .booking-bar.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .booking-form { width: 100%; gap: .55rem; }
  .booking-row { flex-direction: column; align-items: stretch; width: 100%; gap: .55rem; }
  .booking-field { flex-direction: column; align-items: flex-start; width: 100%; }
  .booking-field input, .booking-field select { width: 100%; }
  .btn-search { width: 100%; padding: .7rem; }

  .slideshow-section { height: 88vh; }

  .sobre-grid, .hotel-desc-grid, .memorias-grid, .contact-grid { grid-template-columns: 1fr; }
  .memorias-grid p { padding-left: 0; }

  .sobre-img img { height: 260px; }

  .highlights-grid { grid-template-columns: repeat(2,1fr); }
  .acomodacoes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1; }

  .gallery-item { height: 270px; }
  .gallery-thumbs { grid-template-columns: repeat(3,1fr); }

  .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .cadastro-box { padding: 1.5rem; }

  .ss-btn { width: 38px; height: 38px; font-size: .9rem; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-thumbs  { grid-template-columns: repeat(2,1fr); }
  .section { padding: 3.5rem 0; }
  .wa-float { bottom: 1rem; right: 1rem; }
}
