/* ==========================================================================
   Conversão Extrema — Landing pages de check-in (Mind / Black)
   Tokens derivados do design system (DESIGN.md). Tema por [data-theme].
   ========================================================================== */

@property --gradient-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }

:root {
  /* Neutros (tema claro — MIND) — DESIGN.md §A.1 */
  --c-canvas: 250 250 250;
  --c-surface: 255 255 255;
  --c-elevated: 245 245 245;
  --c-ink: 23 23 23;
  --c-body: 38 38 38;
  --c-mute: 82 82 82;
  --c-faint: 161 161 161;
  --c-hairline: 236 236 236;
  --c-hairline-strong: 212 212 212;
  --c-inverse: 23 23 23;
  --c-on-inverse: 255 255 255;

  /* Acento da marca — esmeralda (igual nos dois temas) */
  --accent: #10b981;
  --accent-strong: #047857;
  --accent-soft: #34d399;
  --accent-rgb: 16 185 129;
  --brand-grad-from: #10b981; /* emerald-500 */
  --brand-grad-to: #34d399;   /* emerald-400 */

  --dot-r: 0.75px; --dot-r-fade: 1.2px;

  --radius-md: 12px; --radius-lg: 16px; --radius-xl: 24px; --radius-2xl: 32px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1280px;
}

html[data-theme="black"] {
  --c-canvas: 10 10 10;
  --c-surface: 23 23 23;
  --c-elevated: 38 38 38;
  --c-ink: 250 250 250;
  --c-body: 209 209 209;
  --c-mute: 168 168 168;
  --c-faint: 115 115 115;
  --c-hairline: 38 38 38;
  --c-hairline-strong: 64 64 64;
  --c-inverse: 250 250 250;
  --c-on-inverse: 10 10 10;

  --dot-r: 1px; --dot-r-fade: 1.6px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: rgb(var(--c-body));
  background: rgb(var(--c-canvas));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }

h1, h2, h3, h4 { margin: 0; color: rgb(var(--c-ink)); font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.dot-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle at 0.5px 0.5px, rgb(var(--c-ink) / 0.05) var(--dot-r), transparent var(--dot-r-fade));
  background-size: 24px 24px;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: 72px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section--tight { padding-top: 40px; }

/* --------------------------------------------------------------------------
   Tipografia
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 12px; line-height: 1; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgb(var(--c-ink)); font-weight: 400;
}
.display { font-size: 40px; line-height: 1.05; letter-spacing: -0.03em; }
@media (min-width: 768px) { .display { font-size: 56px; letter-spacing: -0.035em; } }
@media (min-width: 1024px) { .display { font-size: 60px; } }
/* Variante compacta: headline longa em no máximo 4 linhas */
.display--compact { font-size: 34px; }
@media (min-width: 768px) { .display--compact { font-size: 44px; } }
@media (min-width: 1024px) { .display--compact { font-size: 40px; } }
@media (min-width: 1280px) { .display--compact { font-size: 48px; } }
.h2 { font-size: 28px; line-height: 1.15; letter-spacing: -0.02em; }
@media (min-width: 768px) { .h2 { font-size: 36px; } }
.h3 { font-size: 22px; line-height: 1.25; letter-spacing: -0.017em; }
.h4 { font-size: 18px; line-height: 1.3; letter-spacing: -0.013em; }
.lead { font-size: 18px; color: rgb(var(--c-mute)); }
@media (min-width: 768px) { .lead { font-size: 20px; } }
.muted { color: rgb(var(--c-mute)); }
.small { font-size: 14px; line-height: 1.55; }
.caption { font-size: 12px; line-height: 1.4; color: rgb(var(--c-faint)); }
.measure { max-width: 640px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.text-brand-gradient {
  background-image: linear-gradient(to right, var(--brand-grad-from), var(--brand-grad-to));
  /* 100% esmeralda, só no trecho destacado (DESIGN.md §3.5) */
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section-header { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; margin-bottom: 48px; }
.section-header .h2 { max-width: 720px; }
.section-header .lead { max-width: 620px; font-size: 17px; }

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: 9999px;
  font: inherit; font-size: 15px; font-weight: 500; letter-spacing: -0.006em; line-height: 1.2;
  text-decoration: none; cursor: pointer; text-transform: uppercase;
  border: 0; white-space: nowrap;
}
.btn--lg { padding: 18px 40px; font-size: 15px; }
.btn--sm { padding: 12px 22px; font-size: 13px; }

/* CTA primário — borda giratória + pontos (DESIGN.md §A.2) */
.shiny-cta {
  --gradient-angle: 0deg;
  position: relative; overflow: hidden; isolation: isolate;
  color: #fff;
  background:
    linear-gradient(#232323, #0a0a0a) padding-box,
    conic-gradient(from var(--gradient-angle),
      transparent 0%, var(--accent-strong) 5%, var(--accent-soft) 15%, var(--accent-strong) 30%, transparent 40%, transparent 100%) border-box;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.15), inset 0 -2px 6px rgba(0,0,0,0.2), 0 12px 24px -8px rgba(0,0,0,0.5);
  transition: box-shadow 300ms ease, transform 300ms ease;
  animation: border-spin 2.5s linear infinite;
}
.shiny-cta:hover { box-shadow: inset 0 1px 1px rgba(255,255,255,0.25), inset 0 -2px 6px rgba(0,0,0,0.25), 0 16px 32px -8px rgb(var(--accent-rgb) / 0.55); }
.shiny-cta:active { transform: translateY(1px); }
@keyframes border-spin { to { --gradient-angle: 360deg; } }

.shiny-dots {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; border-radius: inherit;
  background-size: 5px 5px;
  background-image: radial-gradient(circle at 1px 1px, rgb(var(--accent-rgb) / 0.6) 0.5px, transparent 0);
  --dots-mask: linear-gradient(125deg, transparent 54%, rgba(0,0,0,0.85) 66%, rgba(0,0,0,0.85) 74%, transparent 85%);
  -webkit-mask-image: var(--dots-mask); mask-image: var(--dots-mask);
}
.shiny-cta-content { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; }

/* Variante de marca — pílula no acento com brilho branco */
.shiny-brand {
  background:
    linear-gradient(#10b981, #047857) padding-box,
    conic-gradient(from var(--gradient-angle), transparent 0%, rgba(255,255,255,0.35) 5%, #fff 15%, rgba(255,255,255,0.35) 30%, transparent 40%, transparent 100%) border-box;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.35), inset 0 -2px 6px rgba(0,0,0,0.15), 0 12px 24px -8px rgb(var(--accent-rgb) / 0.55);
}
.shiny-brand .shiny-dots { background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.5) 0.5px, transparent 0); }
.shiny-brand:hover { box-shadow: inset 0 1px 1px rgba(255,255,255,0.45), inset 0 -2px 6px rgba(0,0,0,0.15), 0 16px 32px -8px rgb(var(--accent-rgb) / 0.7); }

/* Secundário — anel giratório no hover (DESIGN.md §A.3) */
.btn--secondary {
  position: relative; overflow: hidden;
  background: linear-gradient(to bottom, #fff, #fafafa);
  color: #171717;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05), inset 0 1px 1px #fff, 0 8px 20px -4px rgba(0,0,0,0.12);
}
html[data-theme="black"] .btn--secondary { background: transparent; color: rgb(var(--c-ink)); box-shadow: inset 0 0 0 1px rgb(var(--c-hairline-strong)); }
html[data-theme="black"] .btn--secondary:hover { background: #fff; color: #171717; box-shadow: none; }
.btn--secondary::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--gradient-angle), transparent 0%, var(--accent-strong) 5%, var(--accent-soft) 15%, var(--accent-strong) 30%, transparent 40%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude;
  opacity: 0; transition: opacity 300ms ease; pointer-events: none;
  animation: border-spin 2.5s linear infinite;
}
.btn--secondary:hover::after { opacity: 1; }

.btn .arrow { transition: transform 300ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Barra de prazo + contagem regressiva
   -------------------------------------------------------------------------- */
.deadline-bar {
  position: sticky; top: 0; z-index: 50;
  background: rgb(var(--c-surface) / 0.85);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(var(--c-hairline));
}
.deadline-bar__inner { display: flex; align-items: center; justify-content: center; gap: 16px 28px; flex-wrap: wrap; padding: 10px 0; }
.deadline-bar__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgb(var(--c-ink)); }
.deadline-bar__label strong { color: var(--accent-strong); font-weight: 600; }
html[data-theme="black"] .deadline-bar__label strong { color: var(--accent-soft); }
.countdown { display: flex; align-items: flex-start; gap: 6px; }
.countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: 44px; }
.countdown__num { font-size: 22px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: rgb(var(--c-ink)); font-variant-numeric: tabular-nums; }
.countdown__lbl { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgb(var(--c-faint)); margin-top: 4px; }
.countdown__sep { font-size: 20px; line-height: 1; color: rgb(var(--c-faint)); padding-top: 1px; }
.countdown.is-over .countdown__unit, .countdown.is-over .countdown__sep { display: none; }
.countdown__over { display: none; font-size: 13px; font-weight: 500; color: var(--accent); }
.countdown.is-over .countdown__over { display: block; }
.countdown__over { color: var(--accent-strong); }
html[data-theme="black"] .countdown__over { color: var(--accent-soft); }

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: rgb(var(--c-ink)); }
.logo svg { width: 30px; height: 30px; color: var(--accent); flex: none; }
.logo__word { font-size: 22px; letter-spacing: -0.03em; line-height: 1; font-weight: 500; }
.logo__word b { font-weight: 700; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; padding: 56px 0 0; overflow: hidden; }
@media (min-width: 1024px) { .hero { padding-top: 80px; } }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: -1; display: none;
  background: radial-gradient(60% 55% at 70% 20%, rgb(var(--accent-rgb) / 0.22), transparent 70%);
}
html[data-theme="black"] .hero__glow { display: block; }
.hero__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.2fr 0.8fr; gap: 56px; } }
.hero__content { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.hero__content .display { max-width: 720px; }
.hero__content .lead { max-width: 560px; }
.hero__media { position: relative; }
.hero__media .photo { aspect-ratio: 4 / 5; max-height: 560px; }
@media (min-width: 1024px) { .hero__media .photo { aspect-ratio: 5 / 6; } }

.meta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid rgb(var(--c-hairline-strong));
  background: rgb(var(--c-surface) / 0.7);
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; color: rgb(var(--c-ink));
}
.meta-pill svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* Card de local sobreposto ao hero */
.venue { margin-top: 48px; position: relative; z-index: 2; }
@media (min-width: 1024px) { .venue { margin-top: 64px; } }
.venue__card { display: grid; gap: 0; overflow: hidden; }
@media (min-width: 768px) { .venue__card { grid-template-columns: 1fr 1fr; } }
.venue__body { padding: 32px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
@media (min-width: 768px) { .venue__body { padding: 40px; } }
.venue__body .h3 span { display: block; color: var(--accent); }
.venue__card .photo { border: 0; border-radius: 0; min-height: 240px; height: 100%; }
.venue__map { position: relative; min-height: 280px; background: rgb(var(--c-elevated)); }
.venue__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
html[data-theme="black"] .venue__map iframe { filter: invert(0.92) hue-rotate(180deg) saturate(0.7); }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgb(var(--c-hairline));
  background: rgb(var(--c-surface));
  transition: transform 300ms ease;
}
html[data-theme="black"] .card { background: transparent; }
.card--hover:hover { transform: translateY(-2px); }
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: radial-gradient(220px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgb(var(--accent-rgb) / 0.9), rgb(var(--accent-rgb) / 0.35) 45%, transparent 72%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude;
  opacity: 0; transition: opacity 400ms ease;
}
.card--hover:hover::before { opacity: 1; }
.card--solid {
  background-image: linear-gradient(135deg, rgb(var(--c-surface)) 0%, rgb(var(--c-canvas)) 100%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.6), 0 8px 30px rgb(23 23 23 / 0.06);
}
html[data-theme="black"] .card--solid {
  background-image: radial-gradient(115% 115% at 100% 100%, rgb(var(--accent-rgb) / 0.08) 0%, transparent 58%), linear-gradient(135deg, rgb(var(--c-elevated)) 0%, rgb(var(--c-surface)) 100%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.07), 0 10px 28px rgb(0 0 0 / 0.3);
}
.card__body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }

.icon-seal {
  width: 44px; height: 44px; border-radius: 9999px; flex: none;
  background: rgb(var(--accent-rgb) / 0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgb(var(--c-ink));
}
.icon-seal svg { width: 20px; height: 20px; }

/* Fotos com placeholder quando o arquivo ainda não existe */
.photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgb(var(--c-hairline));
  background:
    linear-gradient(135deg, rgb(var(--c-elevated)) 0%, rgb(var(--c-surface)) 100%);
}
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.photo.is-missing img { display: none; }
.photo__label {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: rgb(var(--c-faint)); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 16px;
}
.photo__label svg { width: 28px; height: 28px; opacity: 0.5; }
.photo--sq { aspect-ratio: 1; }
.photo--wide { aspect-ratio: 16 / 10; }
.photo--tall { aspect-ratio: 4 / 5; }
.photo--flat { border-radius: 0; border: 0; }

/* --------------------------------------------------------------------------
   Seções específicas
   -------------------------------------------------------------------------- */
/* Sobre */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split__content { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.split__content .h2 { max-width: 560px; }
.split--reverse .split__content { order: 1; }
@media (min-width: 1024px) { .split--reverse .split__content { order: 2; } .split--reverse .split__media { order: 1; } }

.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; color: rgb(var(--c-body)); }
.checklist svg { width: 20px; height: 20px; flex: none; color: var(--accent); margin-top: 2px; }

.mosaic { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mosaic .photo:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (min-width: 640px) {
  .mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
  .mosaic .photo:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .mosaic .photo { aspect-ratio: 1; }
}

/* Grid de cards (o que esperar) */
.features { display: grid; gap: 16px; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature .photo { border: 0; border-radius: 0; border-bottom: 1px solid rgb(var(--c-hairline)); aspect-ratio: 4 / 3; }
.feature .card__body { gap: 8px; }

/* Cronograma */
.schedule { display: grid; gap: 0; overflow: hidden; }
@media (min-width: 900px) { .schedule { grid-template-columns: 1.05fr 0.95fr; } }
.schedule__body { padding: 32px; display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 768px) { .schedule__body { padding: 40px; } }
html[data-theme="black"] .timeline time { color: var(--accent-soft); }
.schedule__day { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgb(var(--c-mute)); }
.schedule__block { display: flex; flex-direction: column; gap: 12px; }
.schedule__block + .schedule__block { padding-top: 20px; border-top: 1px solid rgb(var(--c-hairline)); }
.schedule__block .h4 { color: rgb(var(--c-ink)); }
.schedule__tag { display: inline-block; margin-left: 8px; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: rgb(var(--accent-rgb) / 0.12); color: var(--accent-strong); vertical-align: middle; }
html[data-theme="black"] .schedule__tag { color: var(--accent-soft); }
.timeline { display: flex; flex-direction: column; gap: 10px; }
.timeline li {
  display: flex; align-items: baseline; gap: 14px; padding: 12px 16px;
  border-radius: var(--radius-md); border: 1px solid rgb(var(--c-hairline));
  border-left: 3px solid var(--accent);
  background: rgb(var(--c-canvas) / 0.6);
}
.timeline time { font-weight: 600; color: var(--accent-strong); white-space: nowrap; font-variant-numeric: tabular-nums; min-width: 92px; }
.timeline span { color: rgb(var(--c-body)); }
.schedule .photo { border: 0; border-radius: 0; min-height: 320px; height: 100%; }
.schedule__badge {
  position: absolute; right: 0; bottom: 0; z-index: 2;
  padding: 12px 22px; background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-top-left-radius: var(--radius-lg);
}

/* Avisos / destaques */
.notice {
  border-radius: var(--radius-lg);
  border: 1px solid rgb(var(--accent-rgb) / 0.35);
  background: rgb(var(--accent-rgb) / 0.07);
  padding: 20px 24px; display: flex; gap: 14px; align-items: flex-start;
}
.notice svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.notice strong { color: rgb(var(--c-ink)); }
.notice p + p { margin-top: 6px; }

/* Happy hour — card com foto */
.hh { display: grid; overflow: hidden; }
@media (min-width: 768px) { .hh { grid-template-columns: 0.9fr 1.1fr; } }
.hh__body { padding: 32px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
@media (min-width: 768px) { .hh__body { padding: 40px; } }
.hh .photo { border: 0; border-radius: 0; min-height: 220px; height: 100%; }

/* Inclusos — lista de benefícios */
.perks { display: grid; gap: 16px; }
@media (min-width: 640px) { .perks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .perks { grid-template-columns: repeat(3, 1fr); } }
.perk .card__body { flex-direction: row; align-items: flex-start; gap: 16px; padding: 24px; }
.perk__text { display: flex; flex-direction: column; gap: 4px; }
.perk__text strong { color: rgb(var(--c-ink)); font-weight: 600; }

/* Regras de convidado */
.rules { display: grid; gap: 16px; }
@media (min-width: 768px) { .rules { grid-template-columns: 1fr 1fr; } }
.rules .card__body { gap: 16px; }
.rules__title { display: flex; align-items: center; gap: 10px; }
.rules__title .dot { width: 10px; height: 10px; border-radius: 50%; }
.rules__title .dot--ok { background: #10b981; }
.rules__title .dot--no { background: #ef4444; }
.rules li { display: flex; gap: 10px; align-items: flex-start; }
.rules li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }
.rules li .ok { color: #10b981; }
.rules li .no { color: #ef4444; }
.rules li small { display: block; color: rgb(var(--c-mute)); font-size: 13px; }

/* Hospedagem / translado */
.hotel { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .hotel { grid-template-columns: 1fr 1fr; gap: 56px; } }
.hotel .photo { aspect-ratio: 4 / 3; }

/* Depoimentos */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 4px; margin: -4px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__item { flex: 0 0 78%; scroll-snap-align: start; }
@media (min-width: 640px) { .carousel__item { flex-basis: calc(50% - 8px); } }
@media (min-width: 1024px) { .carousel__item { flex-basis: calc(25% - 12px); } }
@media (min-width: 1024px) { .carousel__item { flex-basis: calc(33.333% - 11px); } }
.tcard { display: flex; flex-direction: column; width: 100%; padding: 0; text-align: left; font: inherit; color: inherit; cursor: pointer; border: 1px solid rgb(var(--c-hairline)); }
.tcard__thumb { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: rgb(var(--c-elevated)); border-bottom: 1px solid rgb(var(--c-hairline)); }
.tcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.tcard:hover .tcard__thumb img { transform: scale(1.04); }
.tcard__result { position: absolute; left: 12px; top: 12px; z-index: 2; padding: 5px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: #fff; background: linear-gradient(to right, var(--brand-grad-from), var(--brand-grad-to)); }
.tcard__body { display: flex; flex-direction: column; gap: 2px; padding: 16px 18px 18px; }
.tcard__body strong { color: rgb(var(--c-ink)); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.carousel__more { text-align: center; margin-top: 20px; font-size: 14px; }
.carousel__more a { color: var(--accent-strong); font-weight: 500; text-decoration: none; }
html[data-theme="black"] .carousel__more a { color: var(--accent-soft); }
.carousel__more a:hover { text-decoration: underline; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,0.85); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lightbox.is-open { display: flex; }
.lightbox__frame { position: relative; width: min(960px, 100%); aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox__close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.5); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.lightbox__close svg { width: 18px; height: 18px; }
.lightbox__title { position: absolute; left: 0; right: 0; bottom: -40px; text-align: center; color: rgba(255,255,255,0.8); font-size: 14px; }
body.has-lightbox { overflow: hidden; }
.carousel__nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 24px;
}
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgb(var(--c-hairline-strong)); background: rgb(var(--c-surface));
  color: rgb(var(--c-ink)); display: inline-flex; align-items: center; justify-content: center;
  transition: background 200ms ease, color 200ms ease;
}
html[data-theme="black"] .carousel__btn { background: transparent; }
.carousel__btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.carousel__btn svg { width: 18px; height: 18px; }
.play-badge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(to right, var(--brand-grad-from), var(--brand-grad-to));
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 8px 24px -6px rgb(var(--accent-rgb) / 0.6);
}
.play-badge svg { width: 20px; height: 20px; margin-left: 2px; }

/* FAQ */
.faq { display: grid; gap: 40px; }
@media (min-width: 1024px) { .faq { grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; } }
.faq__intro { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 96px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq details {
  border-radius: var(--radius-lg); border: 1px solid rgb(var(--c-hairline));
  background: rgb(var(--c-surface));
  transition: border-color 200ms ease, background 200ms ease;
}
html[data-theme="black"] .faq details { background: transparent; }
.faq details[open] { border-color: rgb(var(--accent-rgb) / 0.5); background: rgb(var(--accent-rgb) / 0.05); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-weight: 500; color: rgb(var(--c-ink)); font-size: 15px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 28px; height: 28px; flex: none; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--accent); transition: transform 300ms var(--ease-out); }
.faq summary .plus svg { width: 14px; height: 14px; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq__answer { padding: 0 22px 20px; color: rgb(var(--c-mute)); font-size: 15px; }
.faq__answer p + p { margin-top: 8px; }

/* CTA final */
.final { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.final .h2 { max-width: 640px; }

/* Rodapé */
.footer { padding: 32px 0 40px; border-top: 1px solid rgb(var(--c-hairline)); text-align: center; }
.footer p { font-size: 12px; color: rgb(var(--c-faint)); }
.footer a { color: rgb(var(--c-mute)); text-decoration: none; }
.footer a:hover { color: var(--accent); }

/* Divisor decorativo entre seções */
.divider { display: flex; justify-content: center; }
.divider span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgb(var(--accent-rgb) / 0.12); }
/* Linha sutil entre seções, dentro do container */
.divider--line { height: 1px; background: rgb(var(--c-hairline)); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .shiny-cta, .btn--secondary::after { animation: none; }
  html { scroll-behavior: auto; }
}
