/* ==========================================================================
   Acquamarine Park Hotel — folha de estilo base
   Tokens + componentes reutilizáveis em TODAS as páginas.
   Regras do projeto:
   - nada de style="" no HTML; componente novo entra aqui
   - DOIS azuis (--navy / --blue) e UM laranja (--orange). Nao adicionar tons
     intermediarios: diferencas abaixo de ~1,5:1 leem como erro, nao hierarquia
   - estilo de texto corrido nunca por tag solta (use > p:not([class])),
     senao a regra alcanca componentes que tambem sao <p>
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* DOIS AZUIS, SO. Matiz 210deg nos dois; muda a luminosidade.
     --navy  (23%) = texto forte E superficie escura (rodape, blocos, gradientes)
     --blue  (35%) = tudo interativo (botao, link, icone, badge) E faixas
     Nao criar um terceiro: os antigos --ink/--blue-deep estavam a 1,03:1 e
     --blue/--blue-band a 1,22:1 — diferencas invisiveis que so geravam erro. */
  --navy:        #0B3A6B;
  --blue:        #17559B;
  /* LARANJA UNICO DA MARCA: usado em superficie E em texto (eyebrow, estrelas).
     --orange-hover e' apenas o estado :hover dos botoes, nao um segundo laranja. */
  --orange:       #F5801E;
  --orange-hover: #E0700F;
  /* Texto/icone sobre laranja: BRANCO, definido pelo cliente.
     Branco sobre #F5801E = 2,63:1, abaixo do minimo WCAG AA (4,5:1).
     Excecao consciente e registrada em check.py e check_render.py. */
  --on-orange:    #FFFFFF;

  --muted:  #596D80;        /* corpo (passa AA tambem sobre os tints) */
  --line:   #DCE7F1;
  --faint:  #8CA0B0;        /* SOMENTE bordas/icones, nunca texto */

  --tint-blue:   #EDF4FB;
  --tint-warm:   #FCF1E3;
  --tint-soft:   #F2F8FD;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;

  --r-pill: 999px;
  --r-lg:   24px;
  --r-md:   16px;
  --r-sm:   14px;

  --shadow-card: 0 24px 50px -34px rgba(11, 58, 107, .5);
  --shadow-soft: 0 20px 44px -36px rgba(11, 58, 107, .5);
  --shadow-lift: 0 30px 60px -28px rgba(11, 58, 107, .55);

  --gut: clamp(20px, 4vw, 48px);        /* respiro lateral fluido */
  --max: 1440px;
  /* 92px = 64px de logo + 14px de padding em cima e embaixo. Este token move
     junto o min-height do header, o respiro do hero e o scroll-margin das
     ancoras — mexer na logo sem mexer aqui desalinha os tres. */
  --header-h: 92px;
}

/* --- Reset mínimo ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: #fff;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.skip-link {
  position: absolute; left: 50%; top: 8px; transform: translate(-50%, -200%);
  z-index: 100; background: #fff; color: var(--navy); font-weight: 700;
  padding: 12px 20px; border-radius: var(--r-sm); box-shadow: var(--shadow-lift);
}
.skip-link:focus { transform: translate(-50%, 0); }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* --- Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
/* margin (não padding) para que seções adjacentes COLAPSEM: com padding, duas
   .section vizinhas somavam 132px de respiro e outras ficavam com 66px. */
.section   { margin-block: clamp(40px, 5.5vw, 66px); }
.section--tight { margin-block: clamp(24px, 3vw, 36px); }

.stack     { display: flex; flex-direction: column; }
.grid      { display: grid; gap: 20px; }
.grid--2   { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid--3   { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 24px; }
.grid--4   { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
/* 8 itens em 4 colunas = 2 linhas cheias. Colunas fixas (não auto-fit):
   auto-fit criava 6 colunas em tela larga e deixava uma linha órfã de 2. */
.grid--tiles { grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid--tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid--tiles { grid-template-columns: 1fr; } }

/* --- Tipografia --------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
h1, h2, h3, .h1, .h2, .h3 { font-family: var(--font-display); letter-spacing: -.02em; line-height: 1.08; }
.h1 { font-size: clamp(34px, 4.6vw, 62px); font-weight: 800; line-height: 1.02; }
.h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }
.h3 { font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; }
.h4 { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.lead  { font-size: clamp(16px, 1.4vw, 20px); font-weight: 600; line-height: 1.5; }
.body  { color: var(--muted); line-height: 1.6; }
.small { font-size: 14px; color: var(--muted); line-height: 1.55; }

.section-head { text-align: center; margin-bottom: clamp(28px, 3.5vw, 40px); max-width: 760px; margin-inline: auto; }
.section-head--split {
  text-align: left; max-width: none; display: flex; flex-wrap: wrap; gap: 24px;
  align-items: flex-end; justify-content: space-between;
}

/* --- Botões ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 15px 28px; border-radius: var(--r-pill); text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--orange); color: var(--on-orange); box-shadow: 0 14px 30px -14px rgba(245, 128, 30, .85); }
.btn--primary:hover { background: var(--orange-hover); color: var(--on-orange); }
.btn--blue    { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--navy); color: #fff; }
.btn--white   { background: #fff; color: var(--navy); }
.btn--white:hover { color: var(--navy); }
.btn--block   { width: 100%; }
.btn--lg      { font-size: 16px; padding: 18px 44px; }
.link-more { font-family: var(--font-display); font-weight: 700; font-size: 14px; }

/* --- Cabeçalho ---------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: var(--header-h); padding: 14px var(--gut);
  transition: background-color .25s ease, box-shadow .25s ease;
}
.site-header:not(.is-solid)::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 44, 81, .55), transparent);
}
/* :not(.btn) e' o que impede o cabecalho de sobrescrever a cor dos botoes.
   Sem isso, .site-header.is-solid a (0,2,1) vence .btn--blue (0,1,0) e o
   texto do botao Pacotes vira navy ao rolar a pagina. */
.site-header a:not(.btn) { color: #fff; }
/* Marca: imagem, nao mais texto. Duas versoes porque o header troca de fundo. */
.brand { display: block; flex: none; line-height: 0; }
/* dimensionada pela ALTURA: e' ela que define a altura do header */
.brand img { display: block; height: 64px; width: auto; }
@media (max-width: 760px) {
  :root { --header-h: 74px; }
  .brand img { height: 46px; }
}
/* precisa de DOIS niveis de classe: `.brand img` (0,1,1) vencia `.brand__dark`
   (0,1,0) e as duas logos apareciam empilhadas. */
.brand .brand__dark { display: none; }
.site-header.is-solid .brand .brand__light { display: none; }
.site-header.is-solid .brand .brand__dark  { display: block; }
/* links centralizados; marca a esquerda e botoes a direita */
.nav { display: flex; align-items: center; justify-content: center; flex: 1;
       gap: clamp(14px, 1.8vw, 28px); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav a { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.nav [aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }

/* estado sólido: rolagem, ou páginas internas sem hero */
.site-header.is-solid { background: #fff; box-shadow: 0 6px 24px -18px rgba(11, 58, 107, .6); }
.site-header.is-solid a:not(.btn) { color: var(--navy); }
.site-header.is-solid a:not(.btn):hover { color: var(--blue); }
.site-header.is-solid .burger span { background: var(--navy); }
body.has-solid-header { padding-top: var(--header-h); }

/* agrupador "O Hotel" no menu de desktop — <details> nativo: abre no clique,
   funciona no teclado e no toque (dropdown por hover falha nos dois). */
.nav-drop { position: relative; }
.nav-drop > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff;
}
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::after {
  content: ""; width: 6px; height: 6px; margin-top: -3px;
  border: solid currentColor; border-width: 0 2px 2px 0; transform: rotate(45deg);
  transition: transform .2s ease;
}
.nav-drop[open] > summary::after { transform: rotate(-135deg); margin-top: 2px; }
.site-header.is-solid .nav-drop > summary { color: var(--navy); }
.nav-drop__panel {
  position: absolute; left: 0; top: calc(100% + 18px); z-index: 60; min-width: 210px;
  background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-lift);
  padding: 10px; display: grid; gap: 2px;
}
.nav-drop__panel::before { content: ""; position: absolute; inset: -18px 0 100% 0; }
.site-header .nav-drop__panel a {
  color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 11px 14px; border-radius: 10px;
}
.site-header .nav-drop__panel a:hover { background: var(--tint-soft); color: var(--blue); }

/* menu mobile — <details> nativo, sem JS */
.nav-mobile { display: none; position: relative; }
.nav-mobile > summary { list-style: none; cursor: pointer; padding: 8px; }
.nav-mobile > summary::-webkit-details-marker { display: none; }
.burger { display: grid; gap: 5px; width: 26px; }
.burger span { display: block; height: 3px; border-radius: 2px; background: #fff; }
.nav-panel {
  position: absolute; right: 0; top: calc(100% + 12px); z-index: 60;
  min-width: min(280px, calc(100vw - 2 * var(--gut)));
  background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-lift); padding: 14px; display: grid; gap: 4px;
  /* com os dois submenus abertos a lista passa da tela; sem isto os ultimos
     itens e os botoes ficam inalcancaveis. */
  max-height: calc(100dvh - var(--header-h) - 28px); overflow-y: auto;
}
.nav-panel a:not(.btn) { color: var(--navy); font-family: var(--font-display); font-weight: 700; padding: 12px 14px; border-radius: 10px; }
.nav-panel a:not(.btn):hover { background: var(--tint-soft); }
.nav-sub > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  color: var(--navy); font-family: var(--font-display); font-weight: 700;
  padding: 12px 14px; border-radius: 10px;
}
.nav-sub > summary::-webkit-details-marker { display: none; }
.nav-sub > summary::after {
  content: ""; width: 6px; height: 6px; border: solid currentColor;
  border-width: 0 2px 2px 0; transform: rotate(45deg); margin-top: -3px;
}
.nav-sub[open] > summary::after { transform: rotate(-135deg); margin-top: 2px; }
/* display:block explicito. O grid do .nav-panel so blocaliza os filhos DIRETOS,
   e por o <details> em grid nao resolve: o Chrome embrulha o conteudo depois do
   <summary> num slot anonimo, entao os <a> continuam inline la dentro e
   quebravam lado a lado ("Sobre nós  Lazer" na mesma linha). */
.nav-sub > a { display: block; padding-left: 30px; }
.nav-panel .btn { margin-top: 6px; padding: 15px 28px; border-radius: var(--r-pill); }

/* Corte medido: a 1260px o respiro entre marca/links/botoes chega ao piso de
   24px (o gap do header). Abaixo disso, hamburguer. */
@media (max-width: 1260px) {
  .nav, .nav-actions { display: none; }
  .nav-mobile { display: block; }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative; display: grid; align-items: center;
  min-height: clamp(520px, 72vh, 760px);
  padding-block: calc(var(--header-h) + 40px) 90px;
  padding-inline: max(var(--gut), calc((100% - var(--max)) / 2 + var(--gut)));
  border-end-start-radius: clamp(24px, 3vw, 44px); border-end-end-radius: clamp(24px, 3vw, 44px);
  overflow: hidden; text-align: left;
}
.media-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.scrim { position: absolute; inset: 0; pointer-events: none; }
/* scrim reforçado: garante contraste do texto branco sobre qualquer foto */
.scrim--bottom { background: linear-gradient(0deg, rgba(8, 44, 81, .94) 0%, rgba(8, 44, 81, .6) 40%, transparent 78%); }
/* Efeito confinado a esquerda (area do texto); a direita mostra a foto limpa.
   Compartilhado por hero e faixa para os dois serem identicos. */
.scrim--hero,
.scrim--side {
  background: linear-gradient(90deg, rgba(8, 44, 81, .94) 0%, rgba(8, 44, 81, .82) 40%, rgba(8, 44, 81, .7) 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 38%, transparent 72%);
          mask-image: linear-gradient(90deg, #000 0%, #000 38%, transparent 72%);
}
/* empilhado no mobile o texto ocupa a largura toda: o mask lateral sai de cena */
@media (max-width: 760px) {
  .scrim--hero,
  .scrim--side { -webkit-mask-image: none; mask-image: none; }
  /* faixa: o texto comeca no topo, entao o escuro precisa ser parelho */
  .scrim--side { background: linear-gradient(180deg, rgba(8, 44, 81, .9), rgba(8, 44, 81, .78)); }
  /* hero: com o texto ancorado embaixo (.hero abaixo), o escuro desce junto e a
     foto volta a aparecer no terco de cima — antes era .9/.78 parelho e a
     imagem virava textura. */
  .scrim--hero {
    background: linear-gradient(180deg,
      rgba(8, 44, 81, .52) 0%, rgba(8, 44, 81, .34) 28%,
      rgba(8, 44, 81, .84) 74%, rgba(8, 44, 81, .93) 100%);
  }
}

/* Mobile: 207px dos 585px da hero eram vazio acima do texto. Ancorar embaixo
   aproxima a chamada do formulario de reserva e devolve o topo para a foto.
   108px de respiro inferior porque a .booking sobe -64px por cima. */
@media (max-width: 760px) {
  .hero {
    align-items: end;
    min-height: clamp(440px, 62vh, 560px);
    padding-block: calc(var(--header-h) + 20px) 108px;
  }
}

.hero__inner { position: relative; max-width: 620px; margin-inline: 0; color: #fff; }
.hero__inner .h1 { color: #fff; text-shadow: 0 8px 40px rgba(11, 58, 107, .45); }
.hero__inner .lead { color: #fff; margin: 22px 0 0; max-width: 520px; }

.badge {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; padding: 9px 18px; border-radius: var(--r-pill);
  font-size: 12px; line-height: 1.2;   /* fixo: nao herda o corpo do bloco onde entra */
}
.badge--glass { background: rgba(255, 255, 255, .22); backdrop-filter: blur(4px); border: 1px solid rgba(255, 255, 255, .55); color: #fff; margin-bottom: 22px; }
.badge--orange { background: var(--orange); color: var(--on-orange); }
.badge--blue { background: var(--blue); color: #fff; }
.badge--float { position: absolute; left: 16px; top: 16px; z-index: 2; font-size: 12px; letter-spacing: 0; text-transform: none; padding: 7px 14px; }

/* --- Busca de reserva --------------------------------------------------- */
.booking { position: relative; z-index: 10; margin-top: -64px; }
.booking__form {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lift); padding: 16px;
  display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  align-items: stretch;
}
.field { background: var(--tint-soft); border-radius: var(--r-md); padding: 12px 18px; display: grid; gap: 4px; }
.field > label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--blue);
}
.field :is(input, select) {
  background: none; border: 0; font-family: var(--font-body); font-size: 16px;
  font-weight: 700; color: var(--navy); width: 100%; min-height: 26px;
}
.field select { appearance: none; }
.booking__form .btn { height: 100%; min-height: 62px; }
/* No mobile o botao caia numa celula de meia linha e o rotulo quebrava em duas
   linhas, com um vazio branco ao lado. Ocupa a linha inteira. */
@media (max-width: 760px) { .booking__form .btn { grid-column: 1 / -1; } }
.booking__note {
  text-align: center; font-family: var(--font-display); font-size: 13px;
  font-weight: 700; color: var(--blue); margin-top: 14px;
}

/* --- Cartões ------------------------------------------------------------ */
.card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.card__media { position: relative; aspect-ratio: 16 / 10; }
/* absolute (nao so height:100%): num pai de altura automatica a porcentagem nao
   resolve, vira auto, e a proporcao natural da foto vencia o aspect-ratio acima
   — cards com fotos 1:1 e 4:3 lado a lado ficavam com midias de alturas diferentes. */
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body > .btn { margin-top: auto; }

.tint-card { border-radius: 22px; padding: 28px 24px; display: grid; align-content: start; gap: 8px; }
.tint-card .h4 { font-size: 19px; }
.tint-card--blue { background: var(--tint-blue); }
.tint-card--warm { background: var(--tint-warm); }
.icon-box { width: 50px; height: 50px; border-radius: 15px; margin-bottom: 16px; display: grid; place-items: center; color: #fff; }
.icon-box--blue   { background: var(--blue); }
.icon-box--orange { background: var(--orange); color: var(--on-orange); }
.icon-box svg { width: 26px; height: 26px; }

.meta-row { display: flex; flex-wrap: wrap; gap: 10px; font-size: 13px; font-weight: 700; }
.meta-row li:not(:last-child)::after { content: "·"; color: var(--faint); margin-left: 10px; }

.feature-list { display: grid; gap: 9px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 600; color: #33475B; }
.feature-list li::before { content: ""; width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--blue); flex: none; }
/* alterna frio/quente ecoando os cards (azul, areia, azul, areia).
   nth-child em vez de classe por item: vale para lista de qualquer tamanho. */
.feature-list--alt li:nth-child(even)::before { background: var(--orange); }

.price { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: auto; }
/* "a partir de" acima, valor abaixo — spans inline ficavam na mesma linha */
.price__value { display: block; font-family: var(--font-display); font-size: 24px; font-weight: 800; line-height: 1; margin-top: 4px; }
.price__unit  { font-size: 13px; font-weight: 700; color: var(--muted); }
.price__from  { font-size: 12px; color: var(--muted); font-weight: 600; }

/* --- Carrossel (scroll-snap nativo: touch, teclado e trackpad de graça) -- */
.carousel { position: relative; }
.carousel__track {
  display: grid; grid-auto-flow: column; gap: 24px;
  grid-auto-columns: calc((100% - 48px) / 3);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-inline: 0; padding-bottom: 8px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }
@media (max-width: 1000px) { .carousel__track { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (max-width: 680px)  { .carousel__track { grid-auto-columns: 86%; } }

/* Variante de 4 por vez (galeria de imagens, sem texto). Precisa repetir os
   breakpoints porque `.carousel--4 .carousel__track` vence os seletores acima. */
.carousel--4 .carousel__track { grid-auto-columns: calc((100% - 72px) / 4); }
@media (max-width: 1100px) { .carousel--4 .carousel__track { grid-auto-columns: calc((100% - 48px) / 3); } }
@media (max-width: 860px)  { .carousel--4 .carousel__track { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (max-width: 560px)  { .carousel--4 .carousel__track { grid-auto-columns: 78%; } }
.carousel__nav { display: flex; gap: 12px; }
.carousel__btn {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--navy); font-size: 22px; font-weight: 800;
  display: grid; place-items: center; line-height: 1;
}
.carousel__btn:hover { background: var(--tint-soft); }
.carousel__btn[disabled] { color: #7E93A6; background: var(--tint-soft); cursor: default; }

/* --- Faixa larga com foto ---------------------------------------------- */
.band {
  position: relative; display: grid; align-items: center;
  min-height: clamp(380px, 42vw, 520px); border-radius: clamp(20px, 2.4vw, 32px);
  overflow: hidden; padding: clamp(32px, 4vw, 56px);
}
/* Mobile: a faixa vira o mesmo padrao do .split (texto em cima, foto embaixo).
   Sobreposta, ela dependia do scrim lateral; sem o mask no mobile o scrim virava
   cortina e a foto sumia atras do navy. Empilhando, a foto aparece inteira e o
   texto ganha fundo solido, sem depender de escurecer imagem nenhuma. */
@media (max-width: 760px) {
  .band {
    align-items: stretch; min-height: 0; padding: 0;
    background: var(--navy); grid-template-rows: auto auto;
  }
  .band .scrim { display: none; }
  .band__inner { order: 1; padding: 32px clamp(20px, 6vw, 30px); }
  .band .media-fill { order: 2; position: static; height: clamp(200px, 46vw, 260px); }
}

.band__inner { position: relative; max-width: 560px; color: #fff; display: grid; justify-items: start; gap: 18px; }
.band__inner .h2 { color: #fff; font-size: clamp(28px, 4vw, 54px); }
.band__inner > p:not([class]) { font-size: clamp(16px, 1.3vw, 18px); font-weight: 600; }

/* --- Mosaico de imagens ------------------------------------------------- */
.tile { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1; display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tile:hover img { transform: scale(1.04); }
.tile__label { position: absolute; left: 16px; right: 16px; bottom: 14px; color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 700; }

.mosaic { display: grid; gap: 16px; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 220px; }
.mosaic > :first-child { grid-row: span 2; }
/* o <li> é o item do grid e recebe a altura da linha; sem isto o .tile fica com
   altura automática e a <img height:100%> volta ao tamanho natural, estourando
   a linha e invadindo a seção de baixo. */
.mosaic > li { display: grid; }
.mosaic .tile { aspect-ratio: auto; height: 100%; }
@media (max-width: 900px) {
  .mosaic { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); grid-auto-rows: 220px; }
  .mosaic > :first-child { grid-row: span 1; grid-column: 1 / -1; }
}
.tile__caption { position: absolute; inset: auto 24px 22px; color: #fff; }
.tile__caption .eyebrow { color: var(--orange); margin-bottom: 6px; font-size: 11px; letter-spacing: .16em; }
.tile__caption h3 { font-size: clamp(18px, 2vw, 27px); font-weight: 800; color: #fff; }
.tile__caption p:not([class]) { font-size: 13.5px; color: rgba(255, 255, 255, .92); margin-top: 6px; line-height: 1.5; max-width: 360px; }

/* --- Bloco dividido (texto + foto) ------------------------------------- */
.split { background: var(--navy); border-radius: 28px; overflow: hidden; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }
.split__text { padding: clamp(32px, 4vw, 52px); color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.split__text .eyebrow { color: var(--orange); margin: 0; }
.split__text .h3 { color: #fff; }
.split__text > p:not([class]) { opacity: .9; line-height: 1.6; }
.split__media { position: relative; min-height: 320px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { background: rgba(255, 255, 255, .14); padding: 10px 18px; border-radius: var(--r-pill); font-weight: 700; font-size: 13px; }

/* --- Diferenciais / depoimentos ---------------------------------------- */
.panel { background: #fff; border-radius: 26px; padding: clamp(28px, 3.4vw, 44px) clamp(24px, 3vw, 40px); box-shadow: 0 24px 50px -38px rgba(11, 58, 107, .5); }
.panel--orange { background: var(--orange); color: var(--on-orange); box-shadow: none; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.bullets { display: grid; gap: 18px; }
.bullets li { display: flex; gap: 14px; }
.bullets .dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 6px; flex: none; }
.bullets strong { display: block; font-family: var(--font-display); font-size: 16px; }
.quote-mark { font-family: var(--font-display); font-size: 70px; line-height: .6; opacity: .5; }
.quote { font-family: var(--font-display); font-size: clamp(19px, 2vw, 24px); font-weight: 600; line-height: 1.35; margin: 10px 0 26px; }
.person { display: flex; align-items: center; gap: 14px; }
.person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
.person > :last-child { display: grid; }   /* nome acima, cidade abaixo */
.person strong { font-family: var(--font-display); font-size: 15px; }
.person span { font-size: 13px; }
.stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; }

/* --- Rodapé ------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(120deg, var(--blue), var(--navy));
  border-radius: clamp(20px, 2.4vw, 32px); padding: clamp(40px, 5vw, 60px) var(--gut);
  text-align: center; position: relative; overflow: hidden; color: #fff;
}
.final-cta .h2 { color: #fff; font-size: clamp(28px, 3.8vw, 44px); position: relative; }
.final-cta > p:not([class]) { position: relative; font-size: clamp(16px, 1.4vw, 18px); font-weight: 600; color: rgba(255, 255, 255, .92); margin: 16px 0 30px; }
.final-cta .btn { position: relative; }
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob--a { right: -40px; top: -40px; width: 220px; height: 220px; background: rgba(255, 255, 255, .13); }
.blob--b { left: -60px; bottom: -80px; width: 260px; height: 260px; background: rgba(255, 255, 255, .1); }

.site-footer { background: var(--navy); color: #fff; padding: clamp(36px, 4vw, 52px) var(--gut) 32px; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
/* colunas explícitas: repeat(auto-fit) não pode coexistir com uma track flexível
   (o 1.4fr) — o template inteiro fica inválido e o grid vira 1 coluna. */
.site-footer__grid { display: grid; gap: 36px; grid-template-columns: 1.5fr 1fr 1fr 1.35fr; max-width: var(--max); margin-inline: auto; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h2 { font-size: 24px; font-weight: 800; margin-bottom: 14px; color: #fff; }
.footer-brand { line-height: 0; }
.footer-brand img { width: 190px; height: auto; display: block; }
.footer-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { display: grid; gap: 10px; font-size: 14px; }
.site-footer address { font-style: normal; font-size: 14px; line-height: 1.7; }
/* Contato e endereco com icone. O seletor precisa de (0,2,0) para vencer
   .site-footer ul (0,1,1) — mesma armadilha de especificidade de sempre. */
.site-footer .contact-list a,
.site-footer .contact-line { display: flex; align-items: flex-start; gap: 10px; }
.site-footer .contact-list svg,
.site-footer .contact-line svg { width: 18px; height: 18px; flex: none; margin-top: 2px; opacity: .8; }

.site-footer .socials { display: flex; gap: 10px; margin-top: 20px; }
.site-footer .socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .12); transition: background-color .15s ease;
}
.site-footer .socials a:hover { background: rgba(255, 255, 255, .26); text-decoration: none; }
.site-footer .socials svg { width: 20px; height: 20px; }

.site-footer__legal {
  max-width: var(--max); margin: 32px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: 13px;
}
.site-footer .credit a { text-decoration: underline; text-underline-offset: 3px; }

/* --- Utilitários (evitam style="" nas próximas páginas) ----------------- */
.center   { text-align: center; }
.measure  { max-width: 560px; }
.mt-sm    { margin-top: 12px; }
.mt-md    { margin-top: 24px; }
.mt-lg    { margin-top: 34px; }
.mb-md    { margin-bottom: 24px; }
.gap-lg   { gap: 36px; }
.no-mb    { margin-bottom: 0; }
.card-title { font-size: 19px; }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--blue); }
.panel--sm { border-radius: 22px; }
.dot--blue   { background: var(--blue); }
.dot--orange { background: var(--orange); }
.site-footer .small { color: inherit; max-width: 240px; }
blockquote.small { color: #3C5568; margin: 12px 0 20px; }

/* --- Comodidades do quarto (grade 3x2 rente as bordas do card) ---------- */
.amenities {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); margin-top: auto;
}
.amenities li {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 8px; font-size: 12.5px; font-weight: 600; color: var(--navy);
}
.amenities li:not(:nth-child(3n))  { border-inline-end: 1px solid var(--line); }
.amenities li:nth-child(-n+3)      { border-block-end: 1px solid var(--line); }
.amenities svg { width: 19px; height: 19px; flex: none; color: var(--blue); }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
@media (max-width: 380px) { .amenities { grid-template-columns: repeat(2, 1fr); }
  .amenities li:not(:nth-child(3n)) { border-inline-end: 0; }
  .amenities li:nth-child(odd) { border-inline-end: 1px solid var(--line); }
  .amenities li:nth-child(-n+4) { border-block-end: 1px solid var(--line); } }

/* --- Linha texto + imagem (eventos, e reutilizavel nas paginas internas) - */
.feature-split {
  display: grid; gap: clamp(28px, 4vw, 56px); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
}
.feature-split__text { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 34rem; }
.media-round { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4 / 3; }
.media-round img { width: 100%; height: 100%; object-fit: cover; }

.btn svg { width: 20px; height: 20px; flex: none; }

/* ==========================================================================
   PAGINAS INTERNAS
   Tudo abaixo entrou junto com acomodacoes/lazer/gastronomia/eventos/park/
   onde-estamos/guarapari/pacotes/blog/contato. Sao 5 componentes; o resto das
   paginas reusa os blocos que ja existiam acima.
   ========================================================================== */

/* O header e' fixo: sem isto todo link com #ancora para com o titulo escondido
   atras dele. Vale para as ~40 ancoras das paginas internas. */
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

/* Hero das internas: mesmo componente da home, so mais baixo (a home precisa
   do impacto de tela cheia, as internas nao). */
/* 96px embaixo (nao 56): a .booking sobe -64px e comia a ultima linha do lead. */
.hero--page { min-height: clamp(380px, 46vh, 500px); padding-block: calc(var(--header-h) + 30px) 96px; }
.hero--page .h1 { font-size: clamp(30px, 3.8vw, 50px); }

/* Mapa embutido (onde-estamos, contato). Vira widget google_maps no Elementor. */
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 16 / 9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 700px) { .map-embed { aspect-ratio: 4 / 3; } }

/* Formulario empilhado (contato, eventos). Reusa .field do formulario de
   reserva; muda so a direcao e o textarea, que la nao existia. */
.form-stack { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lift); padding: 20px; display: grid; gap: 12px; }
.form-stack .grid--2 { gap: 12px; }
.field textarea {
  background: none; border: 0; font-family: var(--font-body); font-size: 16px;
  font-weight: 600; color: var(--navy); width: 100%; min-height: 96px; resize: vertical;
}
.field :is(input, select, textarea)::placeholder { color: var(--faint); font-weight: 600; }

/* Consentimento LGPD: obrigatorio em todo formulario que coleta dado pessoal. */
.consent { display: flex; gap: 10px; align-items: flex-start; padding: 2px 4px 6px; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--blue); }
.consent label { font-size: 13px; color: var(--muted); line-height: 1.45; }
.consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* Perguntas frequentes / politicas — <details> nativo, sem JS.
   Equivale ao widget accordion do Elementor free. */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 22px; }
.faq__item > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--blue); line-height: 1; flex: none; }
.faq__item[open] > summary::after { content: "–"; }
.faq__item > p { margin-top: 12px; color: var(--muted); line-height: 1.6; font-size: 15px; }

/* Ficha de dados (horarios, distancias, o que levar). Duas colunas de texto
   com regua entre as linhas — usada em park, onde-estamos e gastronomia. */
.spec-list { display: grid; gap: 0; }
.spec-list li {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list strong { font-family: var(--font-display); font-size: 15px; color: var(--navy); }
.spec-list span { font-size: 15px; color: var(--muted); text-align: right; }
