/* ============================================================
   Hotel Centenário — folha de estilo do site
   ============================================================ */

/* ---------- Base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

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

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

body {
  margin: 0;
  background: var(--hc-bone);
  color: var(--hc-ink);
  font-family: var(--hc-font-ui);
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--hc-green);
  text-underline-offset: 3px;
  transition: color var(--hc-dur) var(--hc-ease);
}
a:hover { color: var(--hc-green-light); }

::selection { background: var(--hc-green-wash); }

:focus-visible {
  outline: 2px solid var(--hc-focus);
  outline-offset: 3px;
  border-radius: var(--hc-r-sm);
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -.045em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; }

:target, [id] {
  scroll-margin-top: clamp(84px, 10vw, 112px);
}

/* ---------- Utilitários de layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--hc-container);
  margin-inline: auto;
  padding-inline: var(--hc-gutter);
}

.section {
  position: relative;
  padding-block: var(--hc-section-y);
}
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.section--sand { background: linear-gradient(135deg, var(--hc-sand), #f2e9df); }
.section--wash { background: var(--hc-green-wash); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--hc-green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--hc-r-md) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--hc-mute);
  margin: 0;
}
.label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .68;
}
.label--light { color: var(--hc-on-green-mute); }
.label--accent { color: var(--hc-accent); }

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.66;
  color: var(--hc-body);
  max-width: 60ch;
}

.prose { color: var(--hc-body); max-width: 68ch; }
.prose > * + * { margin-top: 1.1em; }
.prose strong { color: var(--hc-ink); font-weight: 600; }

.h-display { font-size: clamp(3rem, 7.7vw, 6.9rem); line-height: .93; letter-spacing: -.07em; }
.h-1 { font-size: clamp(2.25rem, 4.8vw, 4.5rem); line-height: 1.02; letter-spacing: -.06em; }
.h-2 { font-size: clamp(1.875rem, 3.2vw, 3rem); line-height: 1.08; letter-spacing: -.05em; }
.h-3 { font-size: 1.375rem; line-height: 1.2; letter-spacing: -.035em; }

/* Citações e frases de acolhimento: Poppins Light, sem itálico postiço.
   O manual não define uma serifa — a família toda é Poppins. */
.quote {
  font-family: var(--hc-font-editorial);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: 1.18;
}

/* Cabeçalho de seção: rótulo + título + texto */
.sec-head { max-width: 68ch; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head .label { margin-bottom: 14px; }
.sec-head .lead { margin-top: 18px; }

.sec-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}
@media (min-width: 860px) {
  .sec-head--split { grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(64px, 9vw, 132px); }
  .sec-head--split .lead { margin-top: 0; padding-bottom: 6px; }
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--hc-r-pill);
  background: var(--hc-green);
  color: #fff;
  font: 600 .8125rem/1 var(--hc-font-ui);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(13, 44, 24, .12);
  transition: background var(--hc-dur) var(--hc-ease),
              color var(--hc-dur) var(--hc-ease),
              border-color var(--hc-dur) var(--hc-ease),
              transform var(--hc-dur) var(--hc-ease),
              box-shadow var(--hc-dur) var(--hc-ease);
}
.btn:hover { background: var(--hc-green-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(13, 44, 24, .2); }

.btn--ghost { background: transparent; border-color: rgba(46, 74, 31, .45); border-color: color-mix(in srgb, var(--hc-green) 45%, transparent); color: var(--hc-green); box-shadow: none; }
.btn--ghost:hover { background: var(--hc-green); color: #fff; }

.btn--accent { background: var(--hc-accent); color: #fff; box-shadow: 0 10px 28px rgba(134, 67, 30, .24); }
.btn--accent:hover { background: #7d350f; color: #fff; }

.btn--light { background: var(--hc-paper); color: var(--hc-green-deep); }
.btn--light:hover { background: var(--hc-green-wash); color: var(--hc-green-deep); }

.btn--outline-light { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .48); color: var(--hc-on-dark); box-shadow: none; backdrop-filter: blur(6px); }
.btn--outline-light:hover { background: #fff; border-color: #fff; color: var(--hc-green-deep); }

.btn--sm { min-height: 44px; padding: 0 22px; font-size: .75rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hc-green);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  border-bottom-color: color-mix(in srgb, currentColor 50%, transparent);
  padding-bottom: 3px;
}
.link-quiet:hover { color: var(--hc-green-light); }

/* ---------- Etiquetas ---------- */

.tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: var(--hc-r-pill);
  background: #f3ebe4;
  background: color-mix(in srgb, var(--hc-sand) 55%, #fff);
  color: var(--hc-body);
  font-size: .8125rem;
  font-weight: 500;
  white-space: nowrap;
}
.tag--wash { background: var(--hc-green-wash); color: #1f3a14; font-weight: 600; }
.tag--yellow { background: var(--hc-yellow); color: var(--hc-ink); font-weight: 600; }
.tag--sand { background: var(--hc-sand); color: var(--hc-brown); font-weight: 600; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Cabeçalho do site ---------- */

.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  width: min(calc(100% - 24px), calc(var(--hc-container) + 48px));
  margin: 12px auto 0;
  background: rgba(255, 253, 248, .9);
  background: color-mix(in srgb, var(--hc-paper) 90%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--hc-r-pill);
  box-shadow: 0 10px 40px rgba(13, 44, 24, .08);
  transition: border-color var(--hc-dur) var(--hc-ease),
              background var(--hc-dur) var(--hc-ease),
              box-shadow var(--hc-dur) var(--hc-ease),
              transform var(--hc-dur) var(--hc-ease);
}
.site-header.is-stuck {
  border-color: var(--hc-line);
  border-color: color-mix(in srgb, var(--hc-line) 72%, transparent);
  box-shadow: 0 14px 46px rgba(13, 44, 24, .14);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 8px 18px 8px 24px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 144px; }
@media (max-width: 480px) { .brand img { width: 132px; } }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 32px); }
.nav a {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  color: var(--hc-ink);
  text-decoration: none;
  padding-block: 4px;
  border-bottom: 0;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 2px;
  background: var(--hc-terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--hc-dur) var(--hc-ease);
}
.nav a:hover { color: var(--hc-green); }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--hc-green); }

/* O CTA dentro do <nav> só existe para o menu do celular.
   `.nav a` é mais específico que `.btn`, então a cor precisa ser repetida. */
.nav > a.btn { display: none; color: #fff; border-bottom-color: transparent; }
.nav > a.btn:hover { color: #fff; background: var(--hc-green-deep); border-bottom-color: transparent; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-r-pill);
  background: transparent;
  color: var(--hc-ink);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }

@media (max-width: 900px) {
  .site-header { top: 8px; width: calc(100% - 16px); margin-top: 8px; }
  .site-header__inner { padding-inline: 16px 10px; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .nav {
    position: fixed;
    inset: 82px 8px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--hc-gutter) 28px;
    background: var(--hc-paper);
    border: 1px solid var(--hc-line);
    border-radius: var(--hc-r-lg);
    box-shadow: var(--hc-shadow-2);
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
  }
  .nav[hidden] { display: none; }
  .nav a {
    font-size: 1.125rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--hc-line);
  }
  .nav a::after { display: none; }
  .nav a:hover,
  .nav a[aria-current="page"] { border-bottom-color: var(--hc-line); }
  .nav > a.btn {
    display: inline-flex;
    margin-top: 24px;
    align-self: flex-start;
    font-size: .875rem;
    padding: 0 22px;
  }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  position: relative;
  z-index: 3;
  height: 0;
  padding-top: 0;
  transform: translateY(42px);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .72);
}
.breadcrumb ol li { display: flex; align-items: center; gap: 4px; }
.breadcrumb ol li + li::before { content: "\203A"; color: rgba(255, 255, 255, .4); font-size: 1rem; }
.breadcrumb a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: #fff; font-weight: 500; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(640px, 88svh, 920px);
  width: calc(100% - 24px);
  margin: -78px auto 0;
  overflow: hidden;
  border-radius: 0 0 var(--hc-r-xl) var(--hc-r-xl);
  background: var(--hc-green-deep);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 25, 14, .78) 0%, rgba(8, 25, 14, .42) 48%, rgba(8, 25, 14, .08) 74%),
    linear-gradient(to top, rgba(8, 25, 14, .8) 0%, transparent 52%, rgba(8, 25, 14, .2) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  padding-top: 180px;
  padding-bottom: clamp(56px, 7vw, 92px);
}
.hero__content { max-width: 850px; }
.hero__title { color: #fff; margin: 20px 0 26px; max-width: 11ch; }
.hero__text { color: var(--hc-on-dark); font-size: clamp(1.0625rem, 1.7vw, 1.25rem); line-height: 1.6; max-width: 52ch; }
.hero .btn-row { margin-top: 36px; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .82);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof span + span::before { content: "•"; color: var(--hc-yellow); }
.hero__proof strong { color: #fff; font-size: 1rem; }

.hero--page {
  min-height: clamp(480px, 64svh, 680px);
  margin-top: -78px;
}
.hero--page .hero__inner { padding-bottom: clamp(48px, 6vw, 76px); }
.hero--page .hero__content { max-width: 760px; }
.hero--page .hero__title { margin-bottom: 16px; }

@media (max-width: 700px) {
  .hero { width: calc(100% - 12px); margin-top: -74px; min-height: 760px; border-radius: 0 0 26px 26px; }
  .hero__inner { padding-top: 160px; padding-bottom: 44px; }
  .hero__media img { object-position: center; }
  .hero__media::after { background: linear-gradient(to top, rgba(8, 25, 14, .94) 0%, rgba(8, 25, 14, .52) 58%, rgba(8, 25, 14, .2) 100%); }
  .hero .btn-row { flex-direction: column; align-items: stretch; }
  .hero .btn { width: 100%; }
  .hero__proof { gap: 8px 14px; }
  .hero__proof span + span::before { display: none; }
  .hero--page { min-height: 560px; }
}

/* ---------- Faixa de dados sob o hero ---------- */

.strip {
  background: var(--hc-bone);
  color: var(--hc-ink);
  position: relative;
  overflow: hidden;
}
.strip__leaf {
  position: absolute;
  width: 320px;
  right: -90px;
  top: -110px;
  opacity: .06;
  filter: invert(18%) sepia(20%) saturate(1200%);
  pointer-events: none;
}
.strip__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  padding-block: clamp(40px, 5vw, 64px);
}
.strip__item { padding: 6px clamp(18px, 3vw, 40px); border-left: 1px solid var(--hc-line); }
.strip__item:first-child { padding-left: 0; border-left: 0; }
.strip__item .label { color: var(--hc-terracotta); margin-bottom: 12px; }
.strip__item p { font-size: .9375rem; line-height: 1.6; color: var(--hc-body); }
.strip__item a { color: var(--hc-green-deep); font-weight: 600; }
.strip__item a:hover { color: var(--hc-green-light); }

@media (max-width: 740px) {
  .strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .strip__item:nth-child(odd) { padding-left: 0; border-left: 0; }
}
@media (max-width: 460px) {
  .strip__grid { grid-template-columns: 1fr; }
  .strip__item { padding: 0 0 22px; border-left: 0; border-bottom: 1px solid var(--hc-line); }
  .strip__item:last-child { padding-bottom: 0; border-bottom: 0; }
}

/* ---------- Grades ---------- */

.grid { display: grid; gap: clamp(18px, 2.2vw, 30px); }
.grid--cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--wide { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Para conjuntos de exatamente 4 itens. Com auto-fit o container cabe 3
   colunas e sobra um card órfão na segunda linha; aqui as quebras são
   explícitas: 1 → 2×2 → 4 em linha. */
.grid--four { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 560px) { .grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.grid--split { grid-template-columns: minmax(0, 1fr); gap: clamp(44px, 8vw, 112px); align-items: center; }
@media (min-width: 900px) {
  .grid--split { grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); }
  .grid--split.is-reversed > *:first-child { order: 2; }
  .grid--split.is-reversed { grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr); }
}

/* ---------- Cards ---------- */

.card {
  background: var(--hc-paper);
  border: 1px solid var(--hc-line);
  border: 1px solid color-mix(in srgb, var(--hc-line) 68%, transparent);
  border-radius: var(--hc-r-lg);
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.card__body { padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card__meta { font-size: .9375rem; color: var(--hc-mute); }
.card__text { font-size: .9375rem; line-height: 1.6; color: var(--hc-body); }
.card__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--hc-line); }

.card--photo {
  box-shadow: var(--hc-shadow-1);
  transition: box-shadow var(--hc-dur) var(--hc-ease), transform var(--hc-dur) var(--hc-ease), border-color var(--hc-dur) var(--hc-ease);
}
.card--photo:hover {
  box-shadow: var(--hc-shadow-2);
  transform: translateY(-6px);
  border-color: var(--hc-green-wash);
  border-color: color-mix(in srgb, var(--hc-green) 28%, transparent);
}
.card--photo .card__media {
  overflow: hidden;
}
.card--photo .card__media img {
  transition: transform .7s var(--hc-ease);
}
.card--photo:hover .card__media img {
  transform: scale(1.045);
}
/* A proporção vai na própria <img>: em um wrapper de altura automática,
   `height:100%` no filho não resolve e a foto retrata estoura a caixa. */
.card--photo .card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.card--plain { background: transparent; border: none; }

/* Card com número (diferenciais) */
.card--note {
  background: var(--hc-paper);
  border: 1px solid var(--hc-line);
  border: 1px solid color-mix(in srgb, var(--hc-line) 72%, transparent);
  border-radius: var(--hc-r-lg);
  padding: clamp(26px, 3.2vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card--note .card__icon { width: 30px; height: auto; margin-bottom: 12px; }

/* Card verde com folhagem */
.card--leaf {
  position: relative;
  overflow: hidden;
  border-radius: var(--hc-r-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(108, 150, 63, .28), transparent 38%),
    var(--hc-green-deep);
  color: #fff;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 300px;
  box-shadow: var(--hc-shadow-1);
}
.card--leaf img.leaf {
  position: absolute;
  width: 260px;
  right: -80px;
  bottom: -90px;
  opacity: .15;
  pointer-events: none;
}
.card--leaf > * { position: relative; }
.card--leaf .quote { font-size: clamp(1.375rem, 2.2vw, 1.75rem); color: #fff; margin-top: 14px; }

/* Variante larga: texto e botão lado a lado, para fechar uma linha inteira. */
.card--leaf.card--leaf-wide { min-height: 0; }
@media (min-width: 780px) {
  .card--leaf.card--leaf-wide {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
  .card--leaf.card--leaf-wide > div { max-width: 56ch; }
  .card--leaf.card--leaf-wide img.leaf { right: 4%; bottom: -120px; width: 320px; }
}

/* ---------- Figuras e galeria ---------- */

.figure { margin: 0; min-width: 0; }
.figure img {
  width: 100%;
  height: auto;
  border-radius: var(--hc-r-lg);
  object-fit: cover;
  box-shadow: var(--hc-shadow-1);
  transition: transform .7s var(--hc-ease), box-shadow var(--hc-dur) var(--hc-ease);
}
.figure:hover img { transform: translateY(-4px); box-shadow: var(--hc-shadow-2); }
.figure figcaption {
  margin-top: 14px;
  padding-inline: 4px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .035em;
  color: var(--hc-mute);
}
.ratio-43 { aspect-ratio: 4 / 3; }
.ratio-32 { aspect-ratio: 3 / 2; }
.ratio-169 { aspect-ratio: 16 / 9; }
.ratio-34 { aspect-ratio: 3 / 4; }
.ratio-11 { aspect-ratio: 1 / 1; }

/* Galeria em 6 colunas: as peças declaram quanto ocupam, para as linhas
   fecharem sem buracos (auto-fit deixava sobra na última linha). */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.gallery > * { grid-column: span 2; }

@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .gallery > * { grid-column: span 3; }
  .gallery .span-2 { grid-column: span 2; }
  .gallery .span-3 { grid-column: span 3; }
  .gallery .span-4 { grid-column: span 4; }
  .gallery .span-6 { grid-column: span 6; }
}

/* Bloco de imagem sangrando ao lado de texto */
.media-block img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5.25;
  object-fit: cover;
  border-radius: var(--hc-r-lg);
  box-shadow: var(--hc-shadow-2);
}
.media-block { position: relative; isolation: isolate; }
.media-block::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42%;
  aspect-ratio: 1;
  right: -18px;
  bottom: -18px;
  border: 1px solid var(--hc-terracotta);
  border: 1px solid color-mix(in srgb, var(--hc-terracotta) 40%, transparent);
  border-radius: 50%;
}
.media-block--wide img { aspect-ratio: 3 / 2; }

/* ---------- Divisor com folha ---------- */

.leaf-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-block: clamp(48px, 7vw, 80px);
}
.leaf-divider span { flex: 1; height: 1px; background: var(--hc-line); }
.leaf-divider img { width: 22px; opacity: .85; }

/* ---------- Faixa editorial ---------- */

.band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(108, 150, 63, .1), transparent 54%),
    var(--hc-green-deep);
  color: #fff;
}
.band--brown { background: linear-gradient(120deg, #4a2f25, var(--hc-brown)); }
.band__leaf {
  position: absolute;
  width: 460px;
  left: -140px;
  bottom: -180px;
  opacity: .1;
  pointer-events: none;
}
.band__inner { position: relative; padding-block: clamp(72px, 10vw, 132px); }
.band .quote { font-size: clamp(2rem, 4.5vw, 4.25rem); color: #fff; max-width: 20ch; }
.band__attr { margin-top: 24px; color: var(--hc-on-green-mute); font-size: .9375rem; }

/* ---------- Lista de comodidades ---------- */

.amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 clamp(24px, 4vw, 64px);
  border-top: 1px solid var(--hc-line);
}
.amenities li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hc-line);
  font-size: 1rem;
  color: var(--hc-ink);
}
.amenities li img { width: 17px; margin-top: 5px; flex: 0 0 auto; opacity: .88; }
.amenities--sparse li { border-bottom: none; padding: 10px 0; }

/* ---------- Contato ---------- */

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 560px) { .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .contact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Variante para conjuntos de exatamente 3 itens (ver .grid--four acima:
   mesmo raciocínio — quebras explícitas em vez de auto-fit, pra não sobrar
   card órfão em nenhuma largura). */
.contact-grid--three { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 560px) { .contact-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .contact-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid var(--hc-line);
  border: 1px solid color-mix(in srgb, var(--hc-line) 72%, transparent);
  border-radius: var(--hc-r-lg);
  background: var(--hc-paper);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--hc-dur) var(--hc-ease),
              box-shadow var(--hc-dur) var(--hc-ease),
              transform var(--hc-dur) var(--hc-ease);
}
a.contact-card:hover {
  border-color: var(--hc-green-wash);
  border-color: color-mix(in srgb, var(--hc-green) 40%, transparent);
  box-shadow: var(--hc-shadow-2);
  transform: translateY(-6px);
  color: inherit;
}
.contact-card__icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hc-r-pill);
  background: var(--hc-green-wash);
  color: var(--hc-green-deep);
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__icon--accent {
  background: #f2e1ca;
  background: color-mix(in srgb, var(--hc-tan) 45%, #fff);
  color: var(--hc-terracotta);
}
.contact-card__value { font-size: 1.1875rem; font-weight: 600; letter-spacing: -.01em; overflow-wrap: anywhere; }
/* E-mails são longos: um corpo menor evita a quebra no meio do endereço. */
.contact-card__value--email { font-size: 1rem; letter-spacing: 0; }
.contact-card__note { font-size: .9375rem; color: var(--hc-body); }

.map-embed {
  border: 1px solid var(--hc-line);
  border: 1px solid color-mix(in srgb, var(--hc-line) 72%, transparent);
  border-radius: var(--hc-r-lg);
  overflow: hidden;
  background: var(--hc-sand);
  box-shadow: var(--hc-shadow-1);
}
.map-embed iframe { display: block; width: 100%; height: clamp(320px, 46vh, 460px); border: 0; }

/* ---------- Rodapé ---------- */

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(108, 150, 63, .16), transparent 30%),
    var(--hc-green-deep);
  color: var(--hc-on-dark);
}
.site-footer__leaf {
  position: absolute;
  width: 380px;
  left: -110px;
  top: -140px;
  opacity: .07;
  pointer-events: none;
}
.site-footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 44px;
  padding-block: clamp(64px, 8vw, 104px);
}
.site-footer img.footer-logo { width: 210px; margin: 0 0 24px -8px; }
.site-footer p { color: var(--hc-on-dark-mute); font-size: .9375rem; line-height: 1.65; }
.site-footer .label { color: var(--hc-on-dark-mute); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--hc-on-dark); font-size: .9375rem; text-decoration: none; width: fit-content; }
.footer-links a:hover { color: var(--hc-green-wash); }

.site-footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: space-between;
  align-items: center;
}
.site-footer__bottom p { font-size: .8125rem; color: var(--hc-on-dark-mute); }

/* ---------- Depoimentos ---------- */
.testimonials { list-style: none; margin: 0; padding: 0; }
.testimonial {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: var(--hc-paper);
  border: 1px solid var(--hc-line);
  border: 1px solid color-mix(in srgb, var(--hc-line) 70%, transparent);
  border-radius: var(--hc-r-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--hc-shadow-1);
}
.testimonial::before {
  content: "“";
  position: absolute;
  right: 24px;
  top: 8px;
  color: var(--hc-green-wash);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}
.testimonial__stars {
  color: var(--hc-yellow);
  font-size: 1.125rem;
  letter-spacing: 2px;
}
.testimonial__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--hc-body);
  font-weight: 400;
}
.testimonial__author {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--hc-mute);
}

/* ---------- WhatsApp flutuante ---------- */

.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 24px 0 19px;
  border-radius: var(--hc-r-pill);
  background: #1f7a43;
  color: #fff;
  font: 600 .8125rem/1 var(--hc-font-ui);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(13, 44, 24, .28);
  transition: background var(--hc-dur) var(--hc-ease), transform var(--hc-dur) var(--hc-ease);
}
.wa-float:hover { background: var(--hc-green-deep); color: #fff; transform: translateY(-3px); }
.wa-float svg { width: 22px; height: 22px; flex: 0 0 auto; }
@media (max-width: 560px) {
  .wa-float { height: 52px; width: 52px; padding: 0; justify-content: center; }
  .wa-float > span:not(.wa-float__dot) { display: none; }
}

/* Indicador online/offline */
.wa-float__dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aaa;
  border: 2px solid var(--hc-green);
  transition: background var(--hc-dur) var(--hc-ease);
}
.wa-float__dot.is-online {
  background: #4ade80;
  border-color: var(--hc-green);
}
@media (max-width: 560px) {
  .wa-float__dot { top: 4px; right: 4px; width: 9px; height: 9px; }
}

/* ---------- Widget de Consulta Rápida de Reserva ---------- */

.booking-widget {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(108, 150, 63, .24), transparent 32%),
    var(--hc-green-deep);
  color: var(--hc-on-dark);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--hc-r-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--hc-shadow-2);
  margin-block: clamp(40px, 6vw, 64px);
}
.booking-widget__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 24px;
  margin-bottom: 30px;
}
.booking-widget__head .h-3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #fff;
  margin-top: 8px;
}
.booking-widget__badge {
  font-size: .75rem;
  font-weight: 500;
  color: var(--hc-on-green-mute);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--hc-r-pill);
}
.booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: end;
}
@media (min-width: 640px) {
  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1040px) {
  .booking-form {
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  }
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-field label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hc-on-green-mute);
}
.booking-input,
.booking-select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  font: 500 1rem/1 var(--hc-font-ui);
  color: var(--hc-ink);
  background: var(--hc-paper);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--hc-r-md);
  transition: border-color var(--hc-dur) var(--hc-ease),
              box-shadow var(--hc-dur) var(--hc-ease),
              background var(--hc-dur) var(--hc-ease);
}
.booking-input:focus,
.booking-select:focus {
  outline: none;
  background: #fff;
  border-color: var(--hc-green);
  box-shadow: 0 0 0 3px rgba(46, 74, 31, .18);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hc-green) 18%, transparent);
}
.booking-form .btn {
  width: 100%;
  white-space: nowrap;
  min-height: 52px;
}
@media (max-width: 420px) {
  .booking-form .btn {
    white-space: normal;
    padding: 0 14px;
    font-size: .8125rem;
    line-height: 1.25;
  }
}

/* ---------- Banner LGPD ---------- */
.lgpd-banner {
  position: fixed;
  left: clamp(12px, 3vw, 32px);
  right: auto;
  bottom: clamp(12px, 3vw, 32px);
  z-index: 110;
  width: min(720px, calc(100% - 24px));
  background: rgba(13, 44, 24, .97);
  color: var(--hc-on-dark);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--hc-r-lg);
  box-shadow: 0 22px 64px rgba(8, 25, 14, .34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(calc(100% + 48px));
  transition: transform .5s var(--hc-ease), opacity .35s var(--hc-ease);
}
.lgpd-banner.is-visible {
  transform: none;
  opacity: 1;
}
.lgpd-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}
.lgpd-banner__text {
  font-size: .875rem;
  line-height: 1.55;
  max-width: 64ch;
  color: var(--hc-on-dark-mute);
}
.lgpd-banner__text strong {
  color: var(--hc-on-dark);
  font-weight: 600;
}
.lgpd-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .lgpd-banner__inner { align-items: stretch; }
  .lgpd-banner__actions,
  .lgpd-banner__actions .btn { width: 100%; }
  body.has-lgpd .wa-float,
  body:has(.lgpd-banner.is-visible) .wa-float {
    bottom: 152px;
  }
  body.has-lgpd .back-to-top,
  body:has(.lgpd-banner.is-visible) .back-to-top {
    bottom: 152px;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .wa-float, .back-to-top,
  .nav-toggle, .lgpd-banner, .hero__media::after,
  .btn-row, .booking-widget, .lightbox { display: none !important; }

  body { background: #fff; color: #000; font-size: 11pt; }
  .hero { min-height: auto; background: #fff; }
  .hero__content { color: #000; }
  .hero__title { color: #000 !important; }
  .hero__text { color: #333; }
  .label { color: #666; }

  .band, .strip { background: #fff !important; color: #000; }
  .band .quote, .strip p { color: #333; }

  .section--sand, .section--wash { background: #fff; }
  .card, .card--note, .card--leaf { border: 1px solid #ccc; break-inside: avoid; }
  .card--leaf { background: #f5f5f5 !important; color: #000; }

  a { color: #000; text-decoration: underline; }
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }

  img { max-height: 300px; }
  .figure img, .media-block img { border-radius: 0; box-shadow: none; }
}
@media (min-width: 1040px) {
  .booking-form .btn {
    width: auto;
  }
}
.booking-widget__foot {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  color: var(--hc-on-green-mute);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.booking-widget__foot strong {
  color: #fff;
}

/* ---------- Lightbox ---------- */
.lightbox {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  margin: auto;
  overflow: visible;
}
.lightbox::backdrop {
  background: rgba(18, 32, 12, 0.9);
  backdrop-filter: blur(4px);
}
.lightbox__img {
  display: block;
  max-width: 90vw;
  max-height: 85vh; /* Less than 90vh to leave room for close button on mobile */
  object-fit: contain;
  border-radius: var(--hc-r-lg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: -44px;
  right: -10px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 10px;
}
.lightbox__close:hover {
  color: var(--hc-green-light);
}
@media (max-width: 720px) {
  .lightbox__img {
    max-width: 95vw;
    border-radius: var(--hc-r-md);
  }
  .lightbox__close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.55);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    padding: 0;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
}
.faq-item {
  background: var(--hc-paper);
  border: 1px solid var(--hc-line);
  border: 1px solid color-mix(in srgb, var(--hc-line) 72%, transparent);
  border-radius: var(--hc-r-lg);
  overflow: hidden;
}
.faq-item summary {
  padding: clamp(22px, 3vw, 30px);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hc-ink);
  cursor: pointer;
  list-style: none; /* Hide default marker */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  color: var(--hc-terracotta);
  transition: transform 0.25s var(--hc-ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px);
  color: var(--hc-body);
}
.faq-body p {
  margin: 0;
  line-height: 1.6;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--hc-ease), transform .6s var(--hc-ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Voltar ao topo ---------- */
.back-to-top {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--hc-r-pill);
  background: rgba(255, 253, 248, .92);
  border: 1px solid var(--hc-line);
  border: 1px solid color-mix(in srgb, var(--hc-line) 72%, transparent);
  color: var(--hc-ink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--hc-shadow-1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: opacity var(--hc-dur) var(--hc-ease),
              visibility var(--hc-dur) var(--hc-ease),
              background var(--hc-dur) var(--hc-ease),
              transform var(--hc-dur) var(--hc-ease);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--hc-green-wash);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
}
