/* ==========================================================================
   18ª Jornada Paraense de Dermatologia — 2026
   Design system: azul profundo, branco, vermelho-coral (bandeira do Pará)
   ========================================================================== */

:root {
  --navy-950: #001240;
  --navy-900: #002172;
  --navy-700: #0b3589;
  --navy-500: #1248b5;
  --navy-100: #e8ecf7;
  --coral: #ff2751;
  --coral-600: #e01340;
  --coral-300: #ff7c94;
  --white: #ffffff;
  --ink: #0d1230;
  --ink-soft: #4a5170;
  --bg: #ffffff;
  --bg-soft: #f5f7fc;   /* cinza-azulado claro */
  --bg-tint: #eaeffb;   /* azul claro */
  --bg-warm: #fff5f7;   /* rosé muito claro (derivado do coral) */
  --border: #e3e6f0;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 50px -20px rgba(0, 33, 114, 0.35);
  --shadow-card: 0 10px 30px -18px rgba(0, 33, 114, 0.5);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; line-height: 1.15; color: var(--navy-900); text-wrap: balance; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 1.05rem + 2.2vw, 2.6rem); }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--coral);
  margin-bottom: .75em;
}
.eyebrow--light { color: var(--coral-300); }

/* ---------- Seções e fundos ----------
   Cada seção tem uma cor de fundo própria para dar ritmo à página. */
.section { padding: 96px 0; }
/* impede que o cabeçalho fixo cubra o título ao pular por âncora */
section[id], div[id] { scroll-margin-top: 88px; }
.section--soft    { background: var(--bg-soft); }
.section--tint    { background: var(--bg-tint); }
.section--warm    { background: var(--bg-warm); }
.section--sponsors{ background: var(--white); }
.section--navy {
  background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-700) 100%);
  color: rgba(255,255,255,.86);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
/* ...mas cards claros dentro de seções escuras mantêm o texto azul */
.section--navy .pre-card h2,
.section--navy .pre-card h3 { color: var(--navy-900); }

/* ---------- Título de seção ----------
   Todas as seções do menu abrem com o MESMO cabeçalho: título grande e
   centralizado com o nome da seção (igual ao item do menu), um traço coral
   curto abaixo e, quando faz sentido, uma frase de apoio.
   A frase que antes ocupava o lugar do título virou o subtítulo (.lead) —
   isso corrige a hierarquia, que estava invertida.
   Para trocar a cor dos títulos, mude apenas --titulo-cor abaixo. */
:root { --titulo-cor: var(--navy-900); }

.section-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}
.section-title h2 {
  font-size: clamp(2.15rem, 1.35rem + 3.1vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--titulo-cor);
  margin: 0;
}
.title-rule {
  display: block;
  width: 68px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: var(--coral);
}
.section-title .lead {
  margin: 24px auto 0;
  max-width: 60ch;
  font-size: clamp(1.05rem, .96rem + .45vw, 1.28rem);
  line-height: 1.5;
  color: var(--ink-soft);
}
.section-title .lead-note {
  margin: 14px auto 0;
  max-width: 62ch;
  font-size: .98rem;
  color: var(--ink-soft);
}
.section--navy .section-title h2 { color: var(--white); }
.section--navy .section-title .lead,
.section--navy .section-title .lead-note { color: rgba(255,255,255,.82); }

/* Subtítulo dentro dos blocos (o que antes era h2 nas seções de duas colunas) */
.block-title {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  line-height: 1.2;
  color: var(--navy-900);
  margin: 0 0 .7em;
}

@media (max-width: 700px) {
  .section-title { margin-bottom: 44px; }
  .title-rule { margin-top: 18px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 17px 38px; font-size: 1rem; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.97); transition-duration: .1s; }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 26px -12px rgba(255, 39, 81, .85);
}
.btn-primary:hover { background: var(--coral-600); box-shadow: 0 16px 32px -14px rgba(255, 39, 81, .95); }
.btn-outline {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.75);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, .18); border-color: var(--white); }
.btn-navy { background: var(--navy-900); color: var(--white); box-shadow: 0 10px 26px -14px rgba(0,33,114,.9); }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost:hover { background: var(--navy-100); }

/* Botões cujo link oficial ainda não existe continuam com a COR CHEIA da marca
   (nada de opacidade/aparência apagada) — a pendência fica só no atributo
   aria-disabled, para leitores de tela. */
.btn[disabled] { cursor: not-allowed; }
.btn-ghost.is-pending { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}
/* o cabeçalho usa uma faixa mais larga que o conteúdo, para o menu
   de 9 itens caber em uma linha ao lado do botão de inscrição */
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; max-width: 1300px;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -16px rgba(0, 33, 114, .4);
  padding: 8px 0;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 42px; width: 135px; flex-shrink: 0; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); transition: filter .2s ease; }
.site-header.is-scrolled .brand img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .77rem;
  font-weight: 600;
  color: var(--white);
  transition: color .2s ease;
  flex-wrap: nowrap;
  min-width: 0;
}
.site-header.is-scrolled .nav-links { color: var(--navy-900); }
.nav-links a { position: relative; opacity: .9; white-space: nowrap; transition: opacity .2s ease, color .2s ease; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { opacity: 1; color: var(--coral); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-cta .btn-primary { padding: 11px 22px; font-size: .82rem; }
.nav-toggle {
  display: none;
  position: relative;
  z-index: 110;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}
.site-header.is-scrolled .nav-toggle { color: var(--navy-900); }

@media (max-width: 1200px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px;
    color: var(--white);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .header-cta .btn-primary { padding: 10px 18px; font-size: .85rem; }
}

@media (max-width: 480px) {
  /* Evita duplicar CTA com a barra fixa inferior (.sticky-cta) em telas muito estreitas */
  .header-cta .btn-primary { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-700) 100%);
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video,
.hero-media .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video { z-index: 1; }
.hero-media .hero-fallback { z-index: 0; }
.hero-fallback {
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(255,39,81,.35), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(18,72,181,.55), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 60%, var(--navy-700));
  background-size: 160% 160%, 160% 160%, 100% 100%;
  background-position: 0% 0%, 100% 100%, 0 0;
  animation: hero-drift 20s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { background-position: 0% 0%, 100% 100%, 0 0; }
  to { background-position: 16% 22%, 82% 76%, 0 0; }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,18,64,.6) 0%, rgba(0,18,64,.4) 40%, rgba(0,18,64,.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 110px;
  padding-bottom: 100px;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  width: 380px; max-width: 74vw;
  margin-bottom: 34px;
  filter: brightness(0) invert(1);
  animation: hero-rise .8s cubic-bezier(.16,1,.3,1) both;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .01em;
  animation: hero-rise .8s cubic-bezier(.16,1,.3,1) .1s both;
}
.hero-meta-sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 500;
  font-family: var(--font-body);
  opacity: .9;
  max-width: 34ch;
  margin: 0 auto 40px;
  animation: hero-rise .9s cubic-bezier(.16,1,.3,1) .2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  animation: hero-rise .8s cubic-bezier(.16,1,.3,1) .34s both;
}

/* indicador de rolagem */
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 999px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px; height: 8px;
  border-radius: 999px;
  background: var(--white);
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  70% { opacity: 0; transform: translateY(12px); }
}
@media (max-width: 700px) { .hero-scroll { display: none; } }

/* ---------- Faixa da contagem regressiva ---------- */
.countdown-band {
  position: relative;
  background: linear-gradient(120deg, var(--navy-950) 0%, #011a52 45%, var(--navy-900) 100%);
  color: var(--white);
  padding: 58px 0 62px;
  text-align: center;
  overflow: hidden;
}
/* fio marajoara (mesma faixa do site) nas bordas da barra, em branco translúcido */
.countdown-band::before,
.countdown-band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 34px;
  background-image: url('../img/pattern/marajoara-strip.png');
  background-repeat: repeat-x;
  background-size: auto 34px;
  filter: brightness(0) invert(1);
  opacity: .16;
  pointer-events: none;
}
.countdown-band::before { top: 0; }
.countdown-band::after { bottom: 0; }

.countdown-label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}
.countdown-units {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 14px 52px;
}
.cd-unit { display: flex; align-items: baseline; gap: 8px; }
.cd-unit strong {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  line-height: .95;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  color: var(--white);
}
.cd-unit span {
  font-size: clamp(.75rem, 1.4vw, 1rem);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  font-weight: 400;
}
@media (max-width: 700px) {
  .countdown-band { padding: 44px 0 48px; }
  .countdown-units { gap: 10px 26px; }
}

/* ---------- Divider marajoara ---------- */
/* É EXATAMENTE a imagem que Daniel enviou (a faixa marajoara com as linhas
   contínuas em cima e embaixo). O arquivo marajoara-strip.png é um recorte
   de um período completo do desenho dela — o corte cai no meio da barra
   vertical do padrão, então a faixa se repete sem emenda visível. Nada foi
   redesenhado, redimensionado fora de proporção nem deformado.
   Faixa estática (sem animação) e background-size com "auto" na largura,
   para a imagem manter a proporção original. */
.divider {
  position: relative;
  height: 90px;
  background-color: var(--white);
  background-image: url('../img/pattern/marajoara-strip.png');
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: auto 90px;
}
.divider--soft { background-color: var(--bg-soft); }
.divider--tint { background-color: var(--bg-tint); }
.divider--warm { background-color: var(--bg-warm); }

/* ---------- Palavra da presidente ---------- */
.president-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.president-photo { position: relative; margin: 0; }
.president-photo img:not(.president-seal),
.president-photo .photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.photo-placeholder {
  background: linear-gradient(150deg, var(--navy-700), var(--navy-950));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px 46px;
  color: rgba(255,255,255,.8);
}
.photo-initials {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--white);
  line-height: 1;
}
.photo-note {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
}
/* chancela: selo redondo marajoara sobreposto à foto */
.president-seal {
  position: absolute;
  right: -34px;
  bottom: -28px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 14px 34px -14px rgba(0,33,114,.55);
}
.president-text .president-quote {
  margin: 0 0 28px;
  padding: 0 0 0 26px;
  border-left: 3px solid var(--coral);
}
.president-quote p { color: var(--ink-soft); font-size: 1.04rem; }
.president-quote strong { color: var(--navy-900); }
.president-call {
  font-family: var(--font-display);
  font-size: 1.3rem !important;
  color: var(--navy-900) !important;
  margin-bottom: 0 !important;
}
.president-sign { line-height: 1.4; }
.president-sign strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-900);
}
.president-sign span { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 900px) {
  .president-grid { grid-template-columns: 1fr; gap: 56px; }
  .president-photo { max-width: 340px; margin: 0 auto; }
  .president-seal { right: -10px; bottom: -22px; width: 104px; height: 104px; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}
.about-lede { font-size: 1.2rem; color: var(--navy-900); font-weight: 500; }
.about-support {
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.stat-list { display: grid; gap: 20px; }
.stat-card {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 22px 26px;
  border-left: 4px solid var(--coral);
}
.stat-card strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--navy-900); }
.stat-card span { color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Destaques científicos (quadros coloridos) ---------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.highlight-card {
  border-radius: var(--radius-lg);
  padding: 34px 22px 30px;
  text-align: center;
  color: var(--white);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.highlight-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -22px rgba(0,18,64,.65); }
.highlight-card .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 14px;
  color: rgba(255,255,255,.55);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), color .3s ease;
}
.highlight-card:hover .num { transform: scale(1.12); color: rgba(255,255,255,.95); }
.highlight-card h3 { font-size: 1.02rem; margin: 0; color: var(--white); }

/* linha 1 — família azul; linha 2 — família coral */
.hc-1 { background: linear-gradient(160deg, #001240, #002a80); }
.hc-2 { background: linear-gradient(160deg, #002172, #0b3589); }
.hc-3 { background: linear-gradient(160deg, #0b3589, #1248b5); }
.hc-4 { background: linear-gradient(160deg, #1248b5, #2f6ae0); }
.hc-5 { background: linear-gradient(160deg, #8f0b28, #b30f33); }
.hc-6 { background: linear-gradient(160deg, #b30f33, #d4123c); }
.hc-7 { background: linear-gradient(160deg, #d4123c, #ff2751); }
.hc-8 { background: linear-gradient(160deg, #ff2751, #ff6079); }

@media (max-width: 980px) { .highlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .highlight-grid { grid-template-columns: 1fr; } .highlight-card { min-height: 0; } }

/* ---------- Programação ---------- */
.badge-preliminary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,39,81,.12);
  color: var(--coral-600);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.day-tabs {
  display: inline-flex;
  background: var(--bg-tint);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 32px;
  gap: 6px;
}
.day-tab {
  border: none;
  background: transparent;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background-color .25s cubic-bezier(.4,0,.2,1), color .25s ease, transform .2s ease;
}
.day-tab[aria-selected="true"] { background: var(--navy-900); color: var(--white); }
.day-tab:hover:not([aria-selected="true"]) { color: var(--navy-900); transform: translateY(-1px); }
.day-panel { display: none; }
.day-panel.is-active { display: block; animation: fade-in .5s cubic-bezier(.16,1,.3,1); }
@keyframes fade-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.track {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--white);
}
.track-head {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 20px 26px;
}
.track-head h3 { color: var(--white); margin-bottom: 4px; font-size: 1.08rem; }
.track-head h3 small { font-weight: 400; opacity: .8; }
.track-head .hosts { font-size: .85rem; color: rgba(255,255,255,.75); }
/* Grade da programação: hoje apenas HORÁRIO + TEMA.
   Quando os nomes dos palestrantes forem confirmados, eles voltam como uma
   TERCEIRA COLUNA — basta acrescentar 220px aqui e o <span class="speaker">
   no fim de cada linha. */
.track-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 15px 26px;
  border-top: 1px solid var(--border);
  align-items: baseline;
  transition: background-color .2s ease;
}
.track-row:first-child { border-top: none; }
.track-row:hover { background: var(--bg-soft); }
/* Padrão único para os horários — mesma fonte, peso, cor, espaçamento e
   alinhamento em todas as linhas, inclusive nas de intervalo. */
.track-row .time {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: .9rem;
  letter-spacing: .01em;
  color: var(--navy-900);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.track-row .topic { color: var(--ink); }
.track-row .topic .tbd { color: var(--ink-soft); font-style: italic; }
.track-row .speaker { color: var(--coral-600); font-size: .92rem; text-align: right; font-weight: 600; }
/* ---- Faixas de intervalo (Coffee Break, almoço, credenciamento) ----
   Não são conteúdo científico, então ficam FORA do bloco (ou o atravessam,
   quando caem no meio dele) e usam o tom coral da marca, bem mais claro,
   só para marcar visualmente que ali existe uma pausa. */
.interval-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 26px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: #ffeef2;
  border: 1px solid #ffd3dd;
  color: var(--coral-600);
}
.interval-bar .ib-time {
  flex: 0 0 150px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.interval-bar .ib-label { font-weight: 600; font-size: .95rem; }

/* quando o intervalo cai no meio de um bloco, ele atravessa o card
   de ponta a ponta, sem cantos arredondados nem margem */
.track-rows .interval-bar {
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* faixa institucional (posse da diretoria) — mesmo formato, tom da marca */
.interval-bar--solene {
  background: var(--navy-100);
  border-color: #cfd8ef;
  color: var(--navy-900);
}

@media (max-width: 700px) {
  .interval-bar { flex-direction: column; align-items: flex-start; gap: 4px; padding: 13px 18px; }
  .interval-bar .ib-time { flex: none; font-size: .82rem; }
  .interval-bar .ib-label { font-size: .9rem; }
}
@media (max-width: 700px) {
  .track-row { grid-template-columns: 104px 1fr; gap: 14px; padding: 14px 18px; }
  .track-row .time { font-size: .82rem; }
}

.programme-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

/* ---------- Pré-Congresso ----------
   Seção em azul-escuro para ler como "outro evento", com um card branco
   dentro. A inscrição é separada da Jornada, então isso aparece três vezes:
   no menu, num aviso logo no banner e no selo coral aqui em cima do card. */
.hero-note {
  margin: 22px 0 0;
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  animation: hero-rise .8s cubic-bezier(.16,1,.3,1) .46s both;
}
.hero-note a {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 1px;
  transition: color .2s ease;
}
.hero-note a:hover { color: var(--coral-300); }

.pre-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 46px 52px 42px;
  box-shadow: 0 26px 60px -30px rgba(0,0,0,.7);
}
.pre-card p { color: var(--ink-soft); }
.pre-card .block-title { margin-bottom: .6em; }
.pre-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.pre-horarios {
  display: grid;
  gap: 8px;
  margin: 26px 0 28px;
}
.ph-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 13px 22px;
  border-radius: var(--radius);
  background: var(--bg-tint);
}
.ph-time {
  flex: 0 0 130px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy-900);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ph-label { font-weight: 600; color: var(--navy-900); }
/* o intervalo usa o mesmo tom das pausas da programação */
.ph-row--intervalo { background: #ffeef2; border: 1px solid #ffd3dd; }
.ph-row--intervalo .ph-time,
.ph-row--intervalo .ph-label { color: var(--coral-600); }

.pre-vagas {
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  font-weight: 500;
  color: var(--navy-900) !important;
}
.pre-local {
  display: grid;
  gap: 3px;
  margin: 30px 0;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.pre-local-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.pre-local strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy-900); }
.pre-local span:not(.pre-local-label) { font-size: .92rem; color: var(--ink-soft); }
.pre-local-link {
  justify-self: start;
  margin-top: 8px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--coral-600);
  border-bottom: 1px solid currentColor;
}
.pre-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }
.pre-pending {
  margin: 24px 0 0 !important;
  font-size: .86rem;
  font-style: italic;
}
@media (max-width: 700px) {
  .pre-card { padding: 34px 24px 30px; }
  .ph-row { flex-direction: column; align-items: flex-start; gap: 2px; padding: 13px 18px; }
  .ph-time { flex: none; }
  .pre-actions .btn { width: 100%; }
}

/* ---------- Inscrições: as duas opções lado a lado ---------- */
.reg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.reg-option {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 32px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.reg-option--main { border-top: 4px solid var(--coral); }
.reg-option:not(.reg-option--main) { border-top: 4px solid var(--navy-900); }
.reg-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral-600);
}
.reg-tag--alt { color: var(--navy-900); }
.reg-option h3 { font-size: 1.15rem; margin: 0; }
.reg-option p { font-size: .92rem; color: var(--ink-soft); margin: 0 0 6px; }
.reg-option .btn { margin-top: auto; }
.reg-hint { font-size: .82rem; color: var(--ink-soft); }
.reg-hint a { color: var(--coral-600); font-weight: 600; border-bottom: 1px solid currentColor; }
.reg-split-note {
  margin: 0 0 44px;
  font-size: .92rem;
  color: var(--ink-soft);
}
.reg-table-title { margin-bottom: .8em; }
@media (max-width: 760px) {
  .reg-split { grid-template-columns: 1fr; }
  .reg-option .btn { width: 100%; }
}

/* ---------- Trabalhos científicos ---------- */
.works-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 54px 56px 48px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.works-card h2 { margin-bottom: .6em; }
.works-card p { color: var(--ink-soft); font-size: 1.02rem; max-width: 66ch; margin-left: auto; margin-right: auto; }
.works-deadline {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin: 14px 0 30px;
  padding: 11px 24px;
  border-radius: 999px;
  background: #ffeef2;
  border: 1px solid #ffd3dd;
  color: var(--coral-600);
}
.works-deadline span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.works-deadline strong { font-size: .98rem; font-weight: 700; }
.works-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.works-pending { margin: 26px auto 0 !important; font-size: .84rem; font-style: italic; }
@media (max-width: 760px) {
  .works-card { padding: 36px 24px 32px; }
  .works-actions { width: 100%; }
  .works-actions .btn { width: 100%; }
}

/* ---------- Palestrantes ---------- */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
  align-items: start;
}
.speaker-card {
  border-radius: var(--radius-lg);
  padding: 26px 20px 22px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 6px 22px -14px rgba(0,33,114,.4);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.speaker-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.speaker-card.is-open { box-shadow: var(--shadow-soft); }
/* Foto do palestrante: PNG com fundo removido, recorte padronizado
   (mesma altura de cabeça em todos), sobre um círculo azul da marca. */
.speaker-photo {
  width: 128px; height: 128px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  object-position: top center;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-950));
  display: block;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.speaker-card:hover .speaker-photo { transform: scale(1.05); box-shadow: 0 10px 22px -12px rgba(0,33,114,.7); }
.speaker-card h3 { font-size: 1.02rem; margin-bottom: 2px; }
.speaker-card .uf {
  display: block;
  color: var(--coral);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .08em;
}
.bio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.bio-toggle::after { content: "▾"; font-size: .7rem; transition: transform .25s ease; }
.bio-toggle:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.speaker-card.is-open .bio-toggle { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.speaker-card.is-open .bio-toggle::after { transform: rotate(180deg); }
.bio-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .25s ease, margin-top .3s ease;
}
.speaker-card.is-open .bio-panel { max-height: 700px; opacity: 1; margin-top: 14px; }
/* mini currículo — texto oficial enviado pela organização */
.bio-text {
  font-size: .83rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.speaker-note {
  margin-top: 32px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--ink-soft);
  font-size: .92rem;
  background: var(--white);
}

/* ---------- Inscrições ---------- */
.pricing-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); background: var(--white); }
table.pricing {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
  background: var(--white);
}
table.pricing th, table.pricing td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
table.pricing thead th {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  font-weight: 700;
}
table.pricing thead th small { font-weight: 400; opacity: .8; }
table.pricing tbody tr:last-child td { border-bottom: none; }
table.pricing tbody tr:hover { background: var(--bg-soft); }
table.pricing td.category { font-weight: 700; color: var(--navy-900); }
table.pricing td.price { font-variant-numeric: tabular-nums; }
table.pricing td.free { color: var(--coral-600); font-weight: 700; }
.pricing-note { margin-top: 18px; font-size: .85rem; color: var(--ink-soft); }
.pricing-cards { display: none; }
@media (max-width: 700px) {
  .pricing-table-wrap { display: none; }
  .pricing-cards { display: grid; gap: 16px; }
  .price-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-card); }
  .price-card h3 { font-size: 1rem; margin-bottom: 12px; color: var(--navy-900); }
  .price-card dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; margin: 0; font-size: .9rem; }
  .price-card dt { color: var(--ink-soft); }
  .price-card dd { margin: 0; text-align: right; font-weight: 700; }
}

/* ---------- Local ---------- */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.venue-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.venue-map iframe { width: 100%; height: 100%; border: 0; }
.venue-address { color: var(--ink-soft); margin-bottom: 24px; }
.venue-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) { .venue-grid { grid-template-columns: 1fr; } .venue-map { order: -1; } }

/* galeria de fotos do hotel */
.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.hg-item { margin: 0; }
.hg-item--wide { grid-column: span 3; }
.hg-item img, .hg-item .ph {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px -18px rgba(0,33,114,.55);
  display: block;
}
.hg-item--wide img, .hg-item--wide .ph { aspect-ratio: 21/9; }
.hg-item .ph {
  background: linear-gradient(150deg, var(--navy-700), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
}
.hg-item figcaption {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--ink-soft);
  text-align: center;
}
@media (max-width: 760px) {
  .hotel-gallery { grid-template-columns: 1fr; }
  .hg-item--wide { grid-column: span 1; }
}

/* ---------- Belém ---------- */
.destino-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.destino-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 26px -18px rgba(0,33,114,.5);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.destino-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.destino-media {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  text-align: center;
  padding: 16px;
  letter-spacing: .03em;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.destino-card:hover .destino-media { transform: scale(1.05); }
.destino-card h3 { padding: 20px 20px 0; font-size: 1.05rem; }
.destino-card p { padding: 0 20px 20px; color: var(--ink-soft); font-size: .9rem; margin: 0; }
@media (max-width: 860px) { .destino-grid { grid-template-columns: 1fr; } }

/* ---------- Patrocinadores (carrossel) ---------- */
.sponsor-rows { display: grid; grid-template-columns: minmax(0, 1fr); gap: 34px; }
.sponsor-row { min-width: 0; overflow: hidden; }
.tier-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.sponsor-row--diamante .tier-label { color: var(--navy-900); }
.sponsor-row--ouro     .tier-label { color: #a67a12; }
.sponsor-row--prata    .tier-label { color: #6b7280; }
.sponsor-row--bronze   .tier-label { color: #97552a; }

.marquee {
  overflow: hidden;
  /* esmaece as bordas para o carrossel "entrar e sair" da tela suavemente */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-track--rev { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sponsor-logo {
  flex: 0 0 auto;
  width: 210px;
  height: 108px;
  margin: 0 14px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 20px -14px rgba(0,33,114,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.sponsor-logo img { max-height: 100%; width: auto; object-fit: contain; }
.sponsor-logo.is-empty {
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  box-shadow: none;
  color: #b9bed2;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.sponsor-row--diamante .sponsor-logo { width: 250px; height: 128px; }
.sponsor-row--bronze .sponsor-logo,
.sponsor-row--prata .sponsor-logo { width: 180px; height: 96px; }
.sponsor-pending {
  margin-top: 34px;
  text-align: center;
  font-size: .85rem;
  color: var(--ink-soft);
}

/* faixa CTA (seja patrocinador) */
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-band p { color: rgba(255,255,255,.82); }
@media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-item { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: 0 6px 20px -16px rgba(0,33,114,.5); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-q .icon { transition: transform .25s ease; flex-shrink: 0; color: var(--coral); font-size: 1.3rem; line-height: 1; }
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--ink-soft); margin: 0; }
.faq-item.is-open .faq-a { max-height: 320px; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 8px 26px -18px rgba(0,33,114,.5);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.contact-card h3 { font-size: .95rem; margin-bottom: 8px; }
.contact-card .value { color: var(--ink-soft); font-size: .9rem; }
.contact-card .value.pending { font-style: italic; color: #b45309; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.75);
  padding: 0 0 32px;
}
/* faixa de créditos: realização + produção */
.footer-credits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 40px 0;
  margin-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
/* logos em versão branca, direto sobre o azul — sem caixas brancas */
.credit-block {
  padding: 8px 44px;
  text-align: center;
  min-width: 220px;
}
.credit-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.72);
  margin-bottom: 18px;
}
.credit-logo { display: flex; align-items: center; justify-content: center; height: 92px; }
.credit-logo img { max-height: 92px; width: auto; }
/* a logo da Ocean é horizontal e larga: um pouco menor para as duas
   ficarem com o mesmo peso visual ao lado da SBD-PA */
.credit-block:nth-child(2) .credit-logo img { max-height: 66px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 24px;
}
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; max-width: 34ch; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 10px; font-size: .9rem; }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.55); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -12px 24px -12px rgba(0,33,114,.25);
}
.sticky-cta .btn { width: 100%; }
@media (max-width: 700px) {
  .sticky-cta { display: block; }
  .site-footer { padding-bottom: 100px; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  max-width: 620px;
  margin: 0 auto;
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.4);
  transform: translateY(140%);
  transition: transform .4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.85); flex: 1 1 260px; }
.cookie-banner .btn { padding: 10px 20px; font-size: .82rem; }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--stagger, 0) * 80ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.count { font-variant-numeric: tabular-nums; }

@media (max-width: 700px) {
  .section { padding: 68px 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  /* botões longos passam a quebrar linha e ocupar a largura toda,
     em vez de estourar a lateral da tela */
  .btn { white-space: normal; text-align: center; }
  .programme-actions .btn,
  .venue-actions .btn,
  .cta-band-action .btn { width: 100%; }
  .programme-actions, .venue-actions { width: 100%; }
}
