/* ============================================================
   O Conselho — Clube TBA
   Design system extraído da página original (navy + dourado)
   ============================================================ */

:root {
  /* base */
  --bg: #051223;
  --bg-deep: #020b1b;
  --card: #0d1b2d;
  --card-2: #102036;
  --muted: #162537;
  --muted-fg: #a9a497;

  /* texto */
  --ivory: #f4f2ea;
  --ivory-2: #f7f1e3;

  /* dourado */
  --gold: #dbb155;
  --gold-soft: #eed59b;
  --gold-deep: #d79628;

  /* linhas e estados */
  --border: rgba(37, 52, 71, 0.6);   /* #25344799 */
  --border-strong: #253447;
  --ring: #dbb155;

  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --grad-hero: radial-gradient(ellipse at top, #0e2440 0%, #020b1b 60%, #010611 100%);
  --grad-gold: linear-gradient(135deg, #ebbd57, #d79628);

  --shadow-gold: 0 20px 60px -20px rgba(219, 177, 85, 0.35);
  --shadow-card: 0 30px 80px -30px rgba(0, 0, 0, 0.6);

  --maxw: 1120px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(219, 177, 85, 0.3); color: var(--ivory-2); }

/* ---------- helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.snum {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.8;
}

h1, h2, h3 { font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin: 0; }

.h-display {
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.h-section {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 700;
}

.lead {
  color: var(--muted-fg);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}

.gold-text { color: var(--gold); }
.ivory-text { color: var(--ivory); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-gold {
  background: var(--grad-gold);
  color: #1a1205;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 26px 70px -22px rgba(219, 177, 85, 0.55); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 18, 35, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 14px rgba(219, 177, 85, 0.7);
}
.brand-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--border), 0 6px 16px -8px rgba(0,0,0,.6);
}
.brand b { color: var(--ivory); }
.brand span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--muted-fg);
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ivory); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn { padding: 0.6rem 1.15rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  color: var(--ivory);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  padding-top: 72px;
  overflow: hidden;
}
.hero::after {
  /* brilho dourado sutil */
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(219, 177, 85, 0.12) 0%, transparent 62%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 620px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(219, 177, 85, 0.25);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 80px rgba(5, 18, 35, 0.5);
  pointer-events: none;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-soft);
  background: rgba(13, 27, 45, 0.5);
  margin-bottom: 2rem;
}
.hero .badge .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(219, 177, 85, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(219, 177, 85, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(219, 177, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(219, 177, 85, 0); }
}

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .title-gold {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-anchor {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 0.6rem;
  max-width: 640px;
}
.hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--muted-fg);
  margin: 0 0 2.4rem;
  max-width: 560px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  color: var(--muted-fg);
  font-size: 0.9rem;
}
.hero-meta .meta-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta svg { width: 16px; height: 16px; color: var(--gold); }
.hero-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }

/* ============================================================
   EXPERIÊNCIA (intro)
   ============================================================ */
.experience .x-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.experience .x-head h2 { margin-bottom: 0; }
.experience .x-body p { margin: 0 0 1.4rem; }
.experience .x-body p:last-child { margin-bottom: 0; }
.experience .x-body strong { color: var(--ivory); font-weight: 600; }

/* ============================================================
   CARDS (diferenciação)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.card {
  position: relative;
  padding: 2.4rem 2rem;
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--grad-gold);
  opacity: 0; transition: opacity 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(219, 177, 85, 0.4); box-shadow: var(--shadow-gold); }
.card:hover::before { opacity: 1; }

.card .icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(219, 177, 85, 0.1);
  border: 1px solid rgba(219, 177, 85, 0.25);
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; color: var(--ivory); }
.card p { color: var(--muted-fg); font-size: 0.98rem; margin: 0; }

/* ============================================================
   COMO VAI SER A TARDE (timeline)
   ============================================================ */
.tarde { background: linear-gradient(180deg, var(--bg) 0%, #061528 100%); }
.tarde .head { max-width: 640px; margin-bottom: 3.5rem; }

.timeline { position: relative; max-width: 760px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 23px; top: 14px; bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--border-strong) 100%);
  opacity: 0.5;
}
.step {
  position: relative;
  display: flex;
  gap: 1.6rem;
  padding: 1.3rem 0;
}
.step .num {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid rgba(219, 177, 85, 0.4);
  color: var(--gold);
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
}
.step .body { padding-top: 0.4rem; }
.step .body p { margin: 0; font-size: 1.15rem; color: var(--ivory); font-weight: 500; }
.step .body small { display: block; margin-top: 0.3rem; color: var(--muted-fg); font-size: 0.95rem; font-weight: 400; }

/* ============================================================
   PARA QUEM
   ============================================================ */
.paraquem .pq-box {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: radial-gradient(ellipse at top, rgba(14, 36, 64, 0.6), transparent 70%), var(--card);
}
.paraquem .pq-box h2 { margin-bottom: 1rem; }
.paraquem .pq-box p {
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  color: var(--ivory);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   AS MESAS
   ============================================================ */
.mesas { background: #061528; }
.mesas .head { max-width: 640px; margin-bottom: 3.5rem; }
.mesas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.mesa {
  position: relative;
  padding: 2.4rem 2.2rem;
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.mesa:hover { transform: translateY(-5px); border-color: rgba(219, 177, 85, 0.4); box-shadow: var(--shadow-gold); }
.mesa-num {
  position: absolute; top: 1.1rem; right: 1.6rem;
  font-size: 3.6rem; font-weight: 800; line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(219, 177, 85, 0.16);
}
.mesa-label {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: 0.7rem;
}
.mesa h3 { font-size: 1.5rem; color: var(--ivory); margin-bottom: 0.8rem; }
.mesa p { color: var(--muted-fg); font-size: 0.98rem; margin: 0; line-height: 1.6; }

/* ============================================================
   GALERIA / CLIMA
   ============================================================ */
.gallery { background: linear-gradient(180deg, #061528 0%, var(--bg) 100%); }
.gallery .head { max-width: 640px; margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }

/* ============================================================
   ANFITRIÕES
   ============================================================ */
.hosts .head { text-align: center; margin-bottom: 3.5rem; }
.hosts-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.hosts-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(219, 177, 85, 0.25);
}
.hosts-names { display: grid; gap: 1.5rem; }
.host-name { padding-left: 1.1rem; border-left: 2px solid var(--gold); }
.host-name h3 { font-size: 1.5rem; color: var(--ivory); margin-bottom: 0.3rem; }
.host-name .role { color: var(--muted-fg); font-size: 0.95rem; }
.host-name .handle { display: inline-block; color: var(--gold); font-size: 0.95rem; font-weight: 500; margin-top: 0.3rem; transition: color 0.2s ease; }
.host-name .handle:hover { color: var(--gold-soft); text-decoration: underline; }
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.host {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.host:hover { transform: translateY(-4px); border-color: rgba(219, 177, 85, 0.35); }
.host .photo {
  flex: 0 0 auto;
  width: 88px; height: 88px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(219, 177, 85, 0.18), rgba(13, 27, 45, 0.4));
  border: 1px solid rgba(219, 177, 85, 0.35);
  overflow: hidden;
}
.host .photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.host h3 { font-size: 1.25rem; color: var(--ivory); margin-bottom: 0.25rem; }
.host .role { color: var(--muted-fg); font-size: 0.9rem; }
.host .handle { color: var(--gold); font-size: 0.9rem; font-weight: 500; }

/* ============================================================
   INGRESSOS
   ============================================================ */
.tickets { background: linear-gradient(180deg, #061528 0%, var(--bg-deep) 100%); }
.tickets .head { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.6rem 2.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
}
.ticket.featured {
  border-color: rgba(219, 177, 85, 0.5);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(180deg, var(--card-2), var(--card));
}
.ticket .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(219, 177, 85, 0.4);
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.ticket .tname { font-size: 1.05rem; color: var(--muted-fg); font-weight: 500; margin-bottom: 0.5rem; }
.ticket .price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.4rem; }
.ticket .price .cur { font-size: 1.4rem; color: var(--ivory); font-weight: 600; }
.ticket .price .val { font-size: 3.4rem; font-weight: 800; color: var(--ivory); letter-spacing: -0.03em; line-height: 1; }
.ticket .note { color: var(--muted-fg); font-size: 0.9rem; margin: 0 0 1.6rem; }
.ticket ul { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 0.7rem; }
.ticket li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ivory); font-size: 0.95rem; }
.ticket li svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }
.ticket .btn { width: 100%; margin-top: auto; }
.tickets .limit { text-align: center; color: var(--muted-fg); font-size: 0.9rem; margin-top: 2.2rem; }

/* ============================================================
   FOOTER / CLOSING
   ============================================================ */
.closing {
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(14, 36, 64, 0.7), transparent 70%),
    var(--bg-deep);
  padding: clamp(5rem, 10vw, 8rem) 0 0;
}
.closing h2 { margin-bottom: 1.2rem; }
.closing p { color: var(--muted-fg); max-width: 520px; margin: 0 auto 2.4rem; font-size: 1.1rem; }
.closing .btn { margin-bottom: 4rem; }

.footer {
  border-top: 1px solid var(--border);
  padding: 2.4rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--muted-fg);
  font-size: 0.85rem;
}
.footer-inner a:hover { color: var(--gold); }

/* ============================================================
   DEPOIMENTO (vídeo)
   ============================================================ */
.depoimento { background: linear-gradient(180deg, var(--bg) 0%, #061528 100%); }
.depoimento .head { text-align: center; margin-bottom: 3rem; }
.video-wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(219, 177, 85, 0.25);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  background: #000;
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.wa-float svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.7); }
.wa-float::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: waPulse 2.6s infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Progressive enhancement: content is visible by default.
   It only starts hidden once JS confirms it's active (.js on <html>),
   so a JS/observer failure can never leave the page blank. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .pulse, .wa-float::after { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .experience .x-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }

  /* hero empilha: texto em cima, foto embaixo */
  .hero { min-height: auto; padding-top: 108px; padding-bottom: 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: 100%; }
  .hero-media img { aspect-ratio: 16 / 10; max-height: 360px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hosts-feature { grid-template-columns: 1fr; text-align: center; }
  .hosts-photo img { max-width: 320px; margin: 0 auto; aspect-ratio: 4 / 5; }
  .host-name { border-left: 0; border-top: 2px solid var(--gold); padding-left: 0; padding-top: 0.8rem; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(5, 18, 35, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }
  .nav.open .nav-links li { width: 100%; }
  .nav.open .nav-links a {
    display: block;
    padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
    width: 100%;
  }

  .tickets-grid, .hosts-grid, .mesas-grid { grid-template-columns: 1fr; }
  .host { flex-direction: row; }
  .timeline::before { left: 23px; }
}

@media (max-width: 420px) {
  .host { flex-direction: column; text-align: center; }
}
