
/* ============================================================
   HAPPY VIAGENS · LIVRETE DE VIAGEM
   Punta Cana · Claudia, José Carlos e Victor · 14–19 Jun 2026
   ------------------------------------------------------------
   Template reutilizável. Pra uma nova viagem: duplique a pasta,
   troque a foto em assets/img/ e edite o conteúdo das seções.
   Logos em assets/logo-happy.svg (colorido) e
   assets/logo-happy-branco.svg (branco).
   ============================================================ */

/* ─── Museo (família Happy, exljbris) — usada pra display.
       Cai pra Fraunces (Google Fonts) se os .otf não carregarem.
       ----------------------------------------------------------------- */
@font-face {
  font-family: 'Museo';
  src: url('fonts/Museo100-Regular.otf') format('opentype');
  font-weight: 100; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Museo';
  src: url('fonts/Museo300-Regular.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Museo';
  src: url('fonts/Museo500-Regular.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Museo';
  src: url('fonts/Museo700-Regular.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Museo';
  src: url('fonts/Museo900-Regular.otf') format('opentype');
  font-weight: 900; font-style: normal; font-display: swap;
}

:root {
  /* Paleta Happy (do design-guide.md) */
  --teal:        #006969;
  --teal-deep:   #00484A;
  --teal-night:  #003234;
  --teal-soft:   #B8D6D5;
  --yellow:      #FFD200;
  --yellow-soft: #FFE680;
  --yellow-warm: #F7C400;

  /* Papel & tinta */
  --paper:       #FBF6EA;
  --paper-warm:  #F4EBD4;
  --paper-deep:  #ECDDB9;
  --ink:         #1B2424;
  --ink-soft:    #4C5959;
  --ink-mute:    #7B8585;
  --line:        rgba(27, 36, 36, 0.12);
  --line-soft:   rgba(27, 36, 36, 0.06);

  /* Tipografia */
  --font-display: 'Museo', 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-italic:  'Fraunces', 'Museo', Georgia, serif; /* italic expressivo (Museo não tem itálico) */
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Métricas */
  --maxw: 72rem;
  --readw: 38rem;
  --radius: 22px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ─────────────────────────────────────────────  reset & base  */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.015em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Itálicos expressivos usam Fraunces (Museo não tem italic).
   Aplica nos <em> dentro de elementos display + onde explicitar font-style: italic. */
h1 em, h2 em, h3 em, h4 em, h5 em,
.cover-title em, .menu-title em, .h3 em, .h4 em,
.brand, .cover-sig em, .signoff em, .menu-row .n,
.menu-card .num, .section-hero .num,
.section-bar .here, .place .info h4 em,
.hotel-hero .a h3 em, .sunset-hero h3 em,
.close-title em, .close-sig, .note p {
  font-family: var(--font-italic);
}

/* ────────────────────────────────────────  textura de papel  */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(rgba(27,36,36,0.04) 1px, transparent 1px),
    radial-gradient(rgba(255,210,0,0.05) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

/* ────────────────────────────────────────────────  router  */
.screen {
  position: fixed; inset: 0;
  display: none;
  opacity: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 2;
}
.screen.is-active {
  display: block;
  animation: screen-in 540ms var(--ease) forwards;
}
@keyframes screen-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .screen.is-active { animation: none; opacity: 1; }
}

/* ============================================================
   COVER  (capa do livrete) — foto + tipografia editorial
   ============================================================ */
#cover {
  background: var(--teal-night);
  color: var(--paper);
}
.cover-photo {
  position: fixed; top: 0; left: 0; right: 0;
  height: 100vh; height: 100dvh;
  background-image: var(--cover-photo);
  background-size: cover;
  background-position: center 55%;
  z-index: 0;
  animation: cover-zoom 24s ease-in-out infinite alternate;
}
@keyframes cover-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.cover-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,50,52,0.50) 0%,
      rgba(0,50,52,0.20) 22%,
      rgba(0,50,52,0.30) 45%,
      rgba(0,50,52,0.65) 65%,
      rgba(0,50,52,0.88) 82%,
      rgba(0,30,32,0.96) 100%),
    linear-gradient(90deg, rgba(0,50,52,0.55) 0%, transparent 50%);
}
.cover-wrap {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top:    calc(clamp(24px, 5vw, 56px) + env(safe-area-inset-top));
  padding-right:  calc(clamp(24px, 5vw, 56px) + env(safe-area-inset-right));
  padding-bottom: calc(clamp(24px, 5vw, 56px) + env(safe-area-inset-bottom));
  padding-left:   calc(clamp(24px, 5vw, 56px) + env(safe-area-inset-left));
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(20px, 4vw, 32px);
  z-index: 3;
}

/* topo do cover: logo Happy + chip */
.cover-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  position: relative; z-index: 3;
}
.brand-logo {
  display: inline-flex; align-items: center; gap: 14px;
}
.brand-logo .img {
  width: clamp(72px, 9vw, 100px);
  height: auto;
  display: block;
}
.brand-logo .meta {
  display: flex; flex-direction: column; gap: 3px;
  border-left: 1px solid rgba(251,246,234,0.32);
  padding-left: 14px;
}
.brand-logo .meta .a {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(251,246,234,0.8); font-weight: 600;
}
.brand-logo .meta .b {
  font-family: var(--font-italic); font-style: italic; font-weight: 400;
  font-size: 14px; color: var(--yellow-soft);
  letter-spacing: 0;
}
.brand-logo--ink .meta { border-left-color: var(--line); }
.brand-logo--ink .meta .a { color: var(--ink-mute); }
.brand-logo--ink .meta .b { color: var(--teal); }

.cover-chip {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--paper); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(251,246,234,0.36);
  border-radius: 999px;
  background: rgba(0,50,52,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cover-chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
}

/* miolo do cover: tipografia hero */
.cover-hero {
  position: relative;
  display: grid;
  align-content: end;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(20px, 5vw, 56px) 0 0;
  z-index: 3;
  max-width: 900px;
}
.cover-eyebrow {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--yellow); font-weight: 700;
  display: inline-flex; align-items: center; gap: 14px;
}
.cover-eyebrow::after {
  content: ""; flex: 1; max-width: 120px; height: 1px; background: var(--yellow); opacity: 0.5;
}
.cover-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  color: var(--paper);
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,30,32,0.4);
}
.cover-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.cover-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(251,246,234,0.88);
  max-width: 42ch;
  line-height: 1.55;
}
.cover-sub strong { color: var(--paper); font-weight: 600; }

.cover-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(251,246,234,0.28);
  max-width: 760px;
}
.cover-meta dt {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--yellow); font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 1px 6px rgba(0,30,32,0.6);
}
.cover-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--paper);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 14px rgba(0,30,32,0.7);
}
.cover-sub {
  text-shadow: 0 1px 12px rgba(0,30,32,0.5);
}

/* rodapé do cover: CTA + assinatura */
.cover-bottom {
  position: relative; z-index: 3;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cover-cta {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 20px 28px 20px 32px;
  background: var(--yellow);
  color: var(--teal-night);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 18px 40px -12px rgba(255,210,0,0.4);
}
.cover-cta:hover { background: var(--yellow-warm); transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(255,210,0,0.55); }
.cover-cta .arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal-night); color: var(--yellow);
  display: grid; place-items: center;
  transition: transform .3s var(--ease);
}
.cover-cta:hover .arrow { transform: translateX(3px); }
.cover-cta .arrow svg { width: 14px; height: 14px; }

.cover-sig {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  font-family: var(--font-body); color: rgba(251,246,234,0.7);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.cover-sig em {
  font-family: var(--font-italic);
  font-style: italic; font-weight: 400;
  font-size: 24px; letter-spacing: -0.01em;
  color: var(--yellow); text-transform: none;
}

/* decorações sutis sobre a foto: nuvens flutuando */
.cover-clouds {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
}
.cloud {
  position: absolute;
  color: var(--paper);
  opacity: 0.18;
  animation: drift 22s ease-in-out infinite;
}
.cloud svg { width: 100%; height: 100%; }
.cloud--a { top: 12%; left: 8%; width: 120px; animation-delay: -2s; }
.cloud--b { top: 22%; right: 18%; width: 86px; animation-delay: -8s; opacity: 0.14; }
@keyframes drift {
  0%,100% { transform: translateX(0) translateY(0); }
  50%     { transform: translateX(18px) translateY(-8px); }
}

/* crédito da foto (canto inferior direito) */
.cover-credit {
  position: absolute; bottom: 12px; right: 16px;
  z-index: 4;
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251,246,234,0.4);
  font-weight: 500;
}

/* ─── ajustes mobile da capa pra caber tudo na viewport */
@media (max-width: 720px) {
  .cover-wrap { gap: 14px; overflow: hidden; }
  .cover-top { gap: 10px; }
  .brand-logo .img { width: 60px; }
  .brand-logo .meta { padding-left: 10px; }
  .brand-logo .meta .a { font-size: 9px; letter-spacing: 0.26em; }
  .brand-logo .meta .b { font-size: 12px; }
  .cover-chip { padding: 7px 12px; font-size: 10px; letter-spacing: 0.22em; }
  .cover-hero { gap: 14px; padding-top: 0; max-width: 100%; }
  .cover-eyebrow { font-size: 10px; letter-spacing: 0.3em; gap: 10px; }
  .cover-eyebrow::after { max-width: 60px; }
  .cover-title {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.92;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .cover-sub { font-size: 14px; line-height: 1.5; max-width: 100%; }
  .cover-meta {
    grid-template-columns: 1fr 1fr;  /* duas colunas estreitas no mobile */
    gap: 12px 18px;
    padding-top: 16px;
    max-width: 100%;
  }
  .cover-meta dt { font-size: 9px; letter-spacing: 0.22em; }
  .cover-meta dd { font-size: 13.5px; line-height: 1.2; }
  .cover-meta .full { grid-column: 1 / -1; }  /* item full-width quando precisar */
  .cover-bottom { gap: 14px; align-items: center; }
  .cover-cta { padding: 15px 20px 15px 22px; font-size: 12px; letter-spacing: 0.06em; }
  .cover-cta .arrow { width: 26px; height: 26px; }
  .cover-cta .arrow svg { width: 12px; height: 12px; }
  .cover-sig { font-size: 10px; gap: 2px; letter-spacing: 0.14em; }
  .cover-sig em { font-size: 20px; }
}
@media (max-width: 420px) {
  .cover-meta { grid-template-columns: 1fr; gap: 12px; }
  .cover-meta .full { grid-column: auto; }
}
@media (max-width: 360px) {
  .brand-logo .meta { display: none; }
  .cover-title { font-size: clamp(44px, 14vw, 60px); }
}

/* ============================================================
   MENU  (sumário visual)
   ============================================================ */
#menu {
  background: var(--paper);
  background-image:
    linear-gradient(135deg, rgba(0,105,105,0.04) 0%, transparent 40%),
    radial-gradient(800px 400px at 100% 0%, rgba(255,210,0,0.1), transparent 70%);
}
.menu-wrap {
  min-height: 100vh; min-height: 100dvh;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 56px);
  display: grid;
  gap: clamp(32px, 5vw, 56px);
}
.menu-brand {
  display: flex; align-items: center; gap: 18px;
  padding-bottom: 4px;
}
.menu-brand .img {
  width: clamp(78px, 8vw, 108px);
  height: auto; display: block;
}
.menu-brand .strip {
  flex: 1;
  display: flex; align-items: center; gap: 16px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.menu-brand .a {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
}
.menu-brand .b {
  margin-left: auto;
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px; color: var(--teal); letter-spacing: 0;
}
@media (max-width: 600px) {
  .menu-brand .a { display: none; }
}
.menu-head {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px;
  border-bottom: 1px solid var(--line); padding-bottom: 28px;
}
.menu-eyebrow {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 14px;
}
.menu-title {
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.95;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--teal-deep);
  letter-spacing: -0.03em;
}
.menu-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--teal);
}
.menu-back {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  transition: border-color .25s, color .25s, background .25s;
}
.menu-back:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,105,105,0.04); }
.menu-back svg { width: 14px; height: 14px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.menu-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  text-align: left;
  background: var(--paper-warm);
  border-radius: var(--radius);
  padding: 28px 26px;
  min-height: 220px;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s, border-color .3s, box-shadow .35s var(--ease);
  isolation: isolate;
}
.menu-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 80% at 100% 0%, rgba(255,210,0,0.18), transparent 55%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.menu-card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  box-shadow: 0 24px 40px -22px rgba(0,72,74,0.35);
}
.menu-card:hover::before { opacity: 1; }
.menu-card .num {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 16px; color: var(--teal);
  letter-spacing: 0; margin-bottom: 14px;
}
.menu-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,105,105,0.08);
  display: grid; place-items: center;
  color: var(--teal-deep);
  margin-bottom: auto;
  transition: background .3s, color .3s;
}
.menu-card:hover .icon { background: var(--teal); color: var(--paper); }
.menu-card .icon svg { width: 22px; height: 22px; }
.menu-card h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  color: var(--ink);
  margin-top: 18px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.menu-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.45;
}
.menu-card .arrow {
  position: absolute; top: 26px; right: 26px;
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.menu-card:hover .arrow { background: var(--yellow); color: var(--teal-deep); border-color: var(--yellow); transform: rotate(-45deg); }
.menu-card .arrow svg { width: 14px; height: 14px; }

/* Grid layout: hero card + outros */
.menu-card.is-hero {
  grid-column: span 12;
  background: var(--teal-deep);
  color: var(--paper);
  min-height: 280px;
  padding: 36px 36px;
}
.menu-card.is-hero::before {
  background: radial-gradient(120% 80% at 100% 0%, rgba(255,210,0,0.25), transparent 55%);
  opacity: 0.55;
}
.menu-card.is-hero:hover { box-shadow: 0 28px 50px -20px rgba(0,72,74,0.6); }
.menu-card.is-hero .num { color: var(--yellow); }
.menu-card.is-hero h3 { color: var(--paper); font-size: clamp(28px, 3.2vw, 40px); }
.menu-card.is-hero p { color: rgba(251,246,234,0.7); font-size: 14px; max-width: 40ch; }
.menu-card.is-hero .icon { background: rgba(255,210,0,0.18); color: var(--yellow); width: 52px; height: 52px; border-radius: 14px; }
.menu-card.is-hero:hover .icon { background: var(--yellow); color: var(--teal-deep); }
.menu-card.is-hero .arrow { border-color: rgba(251,246,234,0.3); color: rgba(251,246,234,0.7); }

.menu-card.size-md { grid-column: span 6; }
.menu-card.size-sm { grid-column: span 4; }

.menu-foot {
  padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em;
}
.menu-foot strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   SECTION  (página de cada seção)
   ============================================================ */
.section-wrap {
  min-height: 100vh; min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
}
.section-bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px clamp(16px, 5vw, 40px);
  background: rgba(251,246,234,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.section-bar .back, .section-bar .home {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
  padding: 8px 12px; border-radius: 999px;
  transition: background .25s, color .25s;
}
.section-bar .back:hover, .section-bar .home:hover { background: rgba(0,105,105,0.08); color: var(--teal); }
.section-bar .back svg, .section-bar .home svg { width: 14px; height: 14px; }
.section-bar .here {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-italic); font-style: italic; font-weight: 400;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--teal); letter-spacing: -0.01em;
  white-space: nowrap;
}
.section-bar .here img {
  width: 38px; height: 38px; display: block;
}
@media (max-width: 600px) {
  .section-bar .here .label-text { display: none; }
  .section-bar .here img { width: 34px; height: 34px; }
}

.section-hero {
  padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 64px) clamp(28px, 5vw, 56px);
  max-width: var(--maxw); margin: 0 auto; width: 100%;
}
.section-hero .num {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--teal);
  margin-bottom: 18px;
  display: inline-flex; align-items: baseline; gap: 14px;
}
.section-hero .num::after {
  content: ""; display: inline-block;
  width: 50px; height: 1px; background: var(--teal); opacity: 0.5;
  transform: translateY(-5px);
}
.section-hero h2 {
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--teal-deep);
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-wrap: balance;
}
.section-hero h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--teal);
}
.section-hero .lede {
  margin-top: 24px;
  font-size: clamp(17px, 1.8vw, 21px);
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.4;
}

.section-body {
  padding: 0 clamp(20px, 5vw, 64px) clamp(60px, 10vw, 120px);
  max-width: var(--maxw); margin: 0 auto; width: 100%;
}

/* Blocos reutilizáveis dentro das seções */
.card {
  background: var(--paper-warm);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.card--teal { background: var(--teal-deep); color: var(--paper); }
.card--teal .label { color: var(--yellow); }
.card--yellow { background: var(--yellow); color: var(--teal-deep); }

.label {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 14px;
}

.h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.h3 em { font-style: italic; color: var(--teal); }
.h4 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.rule {
  height: 1px; background: var(--line); margin: clamp(32px, 5vw, 48px) 0;
}

.text { font-size: clamp(15px, 1.4vw, 16.5px); line-height: 1.65; color: var(--ink-soft); max-width: 60ch; }
.text strong { color: var(--ink); font-weight: 600; }

/* lista refinada */
.list { display: grid; gap: 12px; max-width: 56ch; }
.list li {
  display: grid; grid-template-columns: 18px 1fr; gap: 14px; align-items: baseline;
  font-size: 15.5px; color: var(--ink-soft); line-height: 1.5;
}
.list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow);
  transform: translateY(7px);
}
.list--ink li::before { background: var(--teal); }
.list--big li { font-family: var(--font-display); font-size: clamp(17px, 1.6vw, 20px); color: var(--ink); font-weight: 500; }

/* grids específicos */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.fact {
  display: grid; gap: 6px;
  padding: 22px; border-radius: var(--radius-sm);
  background: rgba(255,210,0,0.14);
  border: 1px solid rgba(255,210,0,0.4);
}
.fact dt {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); font-weight: 700;
}
.fact dd {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink); letter-spacing: -0.01em; line-height: 1.2;
}
.fact dd small {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: 13px; color: var(--ink-soft); margin-top: 4px; letter-spacing: 0;
}

/* ============================================================
   HOSPEDAGEM  (tipo de bloco específico)
   ============================================================ */
.hotel-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 860px) { .hotel-hero { grid-template-columns: 1fr; } }
.hotel-hero .a {
  background: var(--teal-deep);
  color: var(--paper);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}
.hotel-hero .a::before {
  content: ""; position: absolute; bottom: -40px; right: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle at center, rgba(255,210,0,0.25), transparent 60%);
}
.hotel-hero .a .eyebrow {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--yellow); font-weight: 700; margin-bottom: 18px;
}
.hotel-hero .a h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px); font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--paper);
}
.hotel-hero .a h3 em { font-style: italic; color: var(--yellow-soft); }
.hotel-hero .a .room {
  margin-top: 20px;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--yellow-soft);
}
.hotel-hero .b {
  background: var(--paper-warm);
  padding: clamp(28px, 4vw, 48px);
  display: grid; gap: 18px; align-content: center;
}
.hotel-hero .b p {
  font-size: 15.5px; color: var(--ink-soft); line-height: 1.6;
}
.hotel-hero .b p strong { color: var(--ink); font-weight: 600; }

.amenity-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px;
}
.amenity {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  font-size: 14px; color: var(--ink); font-weight: 500;
}
.amenity svg {
  width: 18px; height: 18px;
  color: var(--teal); flex-shrink: 0;
}

/* ============================================================
   TRANSFER  (steps)
   ============================================================ */
.transfer-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--paper-warm);
}
@media (max-width: 860px) { .transfer-card { grid-template-columns: 1fr; } }
.transfer-card .info {
  padding: clamp(28px, 4vw, 44px);
}
.transfer-card .info .h4 { margin-bottom: 8px; }
.transfer-card .info .text { margin-bottom: 22px; }
.contact-block {
  background: var(--teal-deep); color: var(--paper);
  padding: clamp(28px, 4vw, 44px);
  display: grid; gap: 16px; align-content: center;
}
.contact-block .label { color: var(--yellow); margin: 0; }
.contact-block .company {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px); font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  letter-spacing: -0.015em;
}
.contact-block .phone {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--yellow-soft);
  letter-spacing: 0.02em;
}

.steps { display: grid; gap: 16px; counter-reset: step; margin-top: 8px; }
.step {
  display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: start;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--teal); font-weight: 500;
}
.step p { font-size: 14.5px; color: var(--ink); line-height: 1.5; }

/* ============================================================
   GASTRONOMIA  (menu de restaurantes)
   ============================================================ */
.menu-card-set {
  display: grid; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--line);
}
.menu-row {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 18px; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
  transition: background .25s;
}
.menu-row:last-child { border-bottom: 0; }
.menu-row:hover { background: var(--paper); }
.menu-row .n {
  font-family: var(--font-display); font-style: italic;
  color: var(--teal); font-size: 14px; font-weight: 500;
}
.menu-row .name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(17px, 1.8vw, 21px);
  font-variation-settings: "opsz" 72, "SOFT" 40;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1.15;
}
.menu-row .tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0,105,105,0.08);
  white-space: nowrap;
}
@media (max-width: 540px) {
  .menu-row { grid-template-columns: 28px 1fr; }
  .menu-row .tag { grid-column: 2; justify-self: start; padding: 4px 10px; }
}

.allinc {
  margin-top: clamp(36px, 5vw, 56px);
}
.allinc h3.h3 { margin-bottom: 28px; }
.allinc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px;
}
.allinc-item {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: baseline;
  padding: 14px 16px;
  background: var(--paper-warm);
  border-radius: 12px;
  font-size: 13.5px; color: var(--ink); line-height: 1.45;
}
.allinc-item::before {
  content: "✓"; color: var(--teal); font-weight: 700; font-size: 14px;
  transform: translateY(1px);
}

/* ============================================================
   PASSEIOS / PRAIAS  (cards de destino)
   ============================================================ */
.place-stack { display: grid; gap: 20px; }
.place {
  display: grid; grid-template-columns: 280px 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.place:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -22px rgba(0,72,74,0.25); }
@media (max-width: 860px) { .place { grid-template-columns: 1fr; } }
.place .vis {
  background: var(--teal-deep);
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: grid; place-items: center;
  color: var(--yellow);
}
.place .vis::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 50%, rgba(255,210,0,0.25), transparent 60%);
}
.place .vis svg { width: 86px; height: 86px; position: relative; z-index: 1; opacity: 0.85; }
.place .info {
  padding: clamp(22px, 3vw, 32px);
  display: grid; gap: 14px; align-content: center;
}
.place .info .kicker {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); font-weight: 700;
}
.place .info h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  font-variation-settings: "opsz" 72, "SOFT" 40;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.1;
}
.place .info h4 em { font-style: italic; color: var(--teal); }
.place .info p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; max-width: 50ch; }
.place .info .chips {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px;
}
.place .info .chip {
  font-size: 12px; padding: 6px 12px; border-radius: 999px;
  background: rgba(0,105,105,0.08); color: var(--teal-deep); font-weight: 500;
}

/* ============================================================
   PÔR DO SOL
   ============================================================ */
.sunset-hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 50%, var(--yellow-warm) 110%);
  color: var(--paper);
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.sunset-hero::before {
  content: ""; position: absolute; right: -80px; bottom: -160px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow), var(--yellow-warm) 60%, transparent 70%);
  opacity: 0.7;
}
.sunset-hero .label { color: var(--yellow); margin: 0 0 16px; }
.sunset-hero h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3.4vw, 38px);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: -0.02em; line-height: 1.15;
  position: relative; z-index: 1;
}
.sunset-hero h3 em { font-style: italic; color: var(--yellow-soft); }
.sunset-spots {
  display: grid; gap: 14px; margin-top: clamp(28px, 4vw, 36px);
}
.sunset-spot {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center;
  padding: 18px 22px;
  background: var(--paper-warm);
  border-radius: var(--radius-sm);
}
.sunset-spot .o {
  width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--yellow-soft), var(--yellow) 70%);
  position: relative;
}
.sunset-spot .o::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26px;
  background: var(--paper-warm); border-radius: 0 0 999px 999px / 0 0 100% 100%;
}
.sunset-spot .nm {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 2vw, 22px); color: var(--ink);
  font-variation-settings: "opsz" 72, "SOFT" 40;
  letter-spacing: -0.015em;
}

/* ============================================================
   DICAS DA PRI  (carta pessoal)
   ============================================================ */
.tips-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 720px) { .tips-grid { grid-template-columns: 1fr; } }
.tip {
  padding: 22px 24px;
  background: var(--paper-warm);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--yellow);
}
.tip dt {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 8px;
}
.tip dd { margin: 0; font-size: 14.5px; color: var(--ink); line-height: 1.5; }

.note {
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper-warm);
  border-radius: var(--radius);
  position: relative;
}
.note::before {
  content: "“";
  position: absolute; top: -32px; left: 24px;
  font-family: var(--font-display); font-style: italic;
  font-size: 120px; line-height: 1; color: var(--yellow);
  opacity: 0.9;
}
.note p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--ink); line-height: 1.5;
  max-width: 50ch;
}
.signoff {
  margin-top: 28px;
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: var(--ink-soft); letter-spacing: 0.18em; text-transform: uppercase;
}
.signoff em {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 26px; color: var(--teal); letter-spacing: -0.01em; text-transform: none;
}

/* ============================================================
   ENCERRAMENTO
   ============================================================ */
#encerramento {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(255,210,0,0.15), transparent 60%),
    var(--teal-night);
  color: var(--paper);
}
.close-wrap {
  min-height: 100vh; min-height: 100dvh;
  display: grid; place-items: center;
  padding: clamp(28px, 6vw, 72px); text-align: center;
  position: relative;
}
.close-bar {
  position: absolute; top: 18px; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 clamp(20px, 4vw, 40px);
  gap: 16px;
}
.close-bar .brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px; color: var(--yellow-soft); font-weight: 400;
}
.close-bar .brand img {
  width: 42px; height: 42px;
}
.close-bar .nav { display: inline-flex; gap: 8px; }
.close-bar a {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251,246,234,0.7); font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  transition: background .25s, color .25s;
}
.close-bar a:hover { background: rgba(251,246,234,0.08); color: var(--paper); }

.close-inner { max-width: 720px; display: grid; gap: 28px; position: relative; z-index: 2; }
.close-eyebrow {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--yellow); font-weight: 700;
  display: inline-flex; align-items: center; gap: 14px; justify-content: center;
}
.close-eyebrow::before, .close-eyebrow::after {
  content: ""; width: 40px; height: 1px; background: var(--yellow); opacity: 0.5;
}
.close-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 6vw, 60px);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: -0.025em; line-height: 1.1;
  color: var(--paper);
}
.close-title em { font-style: italic; color: var(--yellow-soft); }
.close-text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(251,246,234,0.85);
  line-height: 1.5;
  max-width: 52ch; margin: 0 auto;
}
.close-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255,210,0,0.4);
  border-radius: 999px;
  color: var(--yellow); font-weight: 600; font-size: 13px; letter-spacing: 0.08em;
  margin: 0 auto;
}
.close-sig {
  margin-top: 20px;
  font-family: var(--font-display); font-style: italic;
  font-size: 32px; color: var(--yellow);
}
.close-foot {
  position: absolute; bottom: 24px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(251,246,234,0.45); font-weight: 600;
}
.close-foot .sep { opacity: 0.5; }

/* sol grande no encerramento */
.close-sun {
  position: absolute; bottom: -180px; left: 50%; transform: translateX(-50%);
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, var(--yellow-soft), var(--yellow) 50%, var(--yellow-warm) 80%);
  opacity: 0.2;
  filter: blur(6px);
}

/* ============================================================
   RESPONSIVE menu grid
   ============================================================ */
@media (max-width: 900px) {
  .menu-card.size-md, .menu-card.size-sm { grid-column: span 6; }
  .menu-card.is-hero { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .menu-card.size-md, .menu-card.size-sm, .menu-card.is-hero { grid-column: span 12; }
  .menu-grid { gap: 14px; }
  .menu-card { min-height: 180px; padding: 22px 22px; }
  .menu-card .arrow { top: 22px; right: 22px; }
}

/* ============================================================
   reveal on scroll dentro de cada section
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* utilitários */
.stack-lg > * + * { margin-top: clamp(32px, 5vw, 48px); }
.stack-md > * + * { margin-top: clamp(20px, 3vw, 28px); }
.stack-sm > * + * { margin-top: 12px; }
