/* ============================================================
   FITOMED SUMMIT 2026 — Design System
   Paleta oficial: verde-escuro + dourado (PDF de patrocínio)
   ============================================================ */

:root {
  /* Cores da marca */
  --green-950: #1B231E;
  --green-900: #26312B;
  --green-800: #31423B;
  --green-700: #394034;
  --gold-600: #A87E22;
  --gold-700: #8F6A1D;
  --gold-500: #C4962C;
  --gold-300: #DAC483;
  --gold-100: #F5EDD8;
  --sage-100: #E7E8D3;
  --sage-200: #DDE0CC;
  --ink-900: #27272A;
  --ink-600: #5C5F55;
  --surface: #FFFFFF;

  /* Cores por cota */
  --tier-gold: #C4962C;
  --tier-silver: #8E959E;
  --tier-bronze: #B0714A;
  --tier-expo: #7E9077;

  /* Semânticos */
  --color-bg: var(--sage-100);
  --color-fg: var(--ink-900);
  --color-ring: var(--gold-500);

  /* Tipografia */
  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Espaçamento (spacious) */
  --space-xs: .25rem;
  --space-sm: .5rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Raios e sombras */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --radius-leaf: 7px 42px 7px 42px;      /* canto de folha (cards de destaque) */
  --radius-leaf-chip: 8px 22px 8px 8px;  /* echo contido (benefícios densos) */
  --shadow-sm: 0 1px 2px rgba(27, 35, 30, .06);
  --shadow-md: 0 4px 14px rgba(27, 35, 30, .10);
  --shadow-lg: 0 12px 32px rgba(27, 35, 30, .16);

  --header-h: 76px;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
summary { cursor: pointer; }
button { font: inherit; cursor: pointer; }

.icon {
  width: 1.25em; height: 1.25em;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}

/* ---------- Acessibilidade ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold-500); color: var(--green-950);
  padding: 12px 20px; font-weight: 700; z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Utilitários ---------- */
.container { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }
.muted { color: var(--ink-600); }
.gold { color: var(--gold-500); }

.eyebrow {
  color: var(--gold-500);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: var(--space-sm);
}
.section-title::after {
  content: "";
  display: block;
  width: 64px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  margin-top: var(--space-md);
}

.sub-title {
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.9rem);
  font-weight: 800;
  margin: var(--space-3xl) 0 var(--space-sm);
}

.lede { max-width: 68ch; margin-bottom: var(--space-lg); }
.lede p + p { margin-top: var(--space-md); }
.lede-strong { font-size: 1.15em; }

.statement {
  margin-top: var(--space-2xl);
  font-size: clamp(1.15rem, 1rem + 1vw, 1.5rem);
  font-weight: 700;
  color: var(--gold-300);
  text-align: center;
}

.fine-print {
  margin-top: var(--space-xl);
  font-size: .875rem;
  color: var(--ink-600);
  max-width: 90ch;
}
.fine-print a { color: var(--gold-700); font-weight: 600; }
.fine-print.on-dark { color: #C9CDBE; }
.fine-print.on-dark a { color: var(--gold-300); }

/* ---------- Seções ---------- */
.section { padding-block: var(--space-3xl); position: relative; }
.section-light { background: var(--surface); }
.section-sage { background: var(--sage-100); }
.section-dark {
  background:
    linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 55%, var(--green-950) 100%);
  color: #F4F5EC;
}
.section-dark .section-title { color: #fff; }
.section-dark .lede { color: #D8DCCB; }
.section-dark .muted { color: #B9BFAC; }

/* Textura de linhas diagonais (identidade do PDF) */
.texture::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, .028) 0 1px,
    transparent 1px 8px
  );
  pointer-events: none;
}
.texture > .container { position: relative; z-index: 1; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6em;
  min-height: 48px;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 60%);
  color: var(--green-950);
}
.btn-gold:hover { background: linear-gradient(135deg, #E5D49B, var(--gold-500) 70%); }

.btn-ghost {
  border-color: var(--gold-300);
  color: inherit;
}
.section-light .btn-ghost, .section-sage .btn-ghost { border-color: var(--gold-500); color: var(--green-700); }
.btn-ghost:hover { background: rgba(218, 196, 131, .12); }

.btn-lg { min-height: 56px; padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { min-height: 44px; padding: .55rem 1.25rem; font-size: .875rem; }
.btn-block { width: 100%; }

/* ---------- Badges ---------- */
.badge {
  display: inline-block;
  padding: .35em 1em;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.badge-gold { background: var(--gold-500); color: var(--green-950); }
.badge-outline {
  border: 1.5px solid var(--gold-500);
  color: var(--gold-600);
  background: var(--gold-100);
}
.section-dark .badge-outline { background: transparent; color: var(--gold-300); border-color: var(--gold-300); }
.badge-muted {
  border: 1.5px solid var(--sage-200);
  color: var(--ink-600);
  background: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(27, 35, 30, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(218, 196, 131, .18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-h);
}
.brand img { width: 170px; height: auto; }

.main-nav ul {
  display: flex; align-items: center; gap: .25rem;
}
.main-nav a:not(.btn) {
  display: inline-flex; align-items: center;
  min-height: 44px;
  padding: .4rem .8rem;
  color: #EDEFE2;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color .2s ease, background-color .2s ease;
}
.main-nav a { white-space: nowrap; }
.main-nav a:not(.btn):hover { color: var(--gold-300); background: rgba(255,255,255,.06); }
.main-nav a.active { color: var(--gold-300); }
.nav-login a { opacity: .85; }
.nav-cta { margin-left: .5rem; }

/* Troca de idioma: pílula discreta, sem competir com o CTA dourado */
.main-nav a.lang-switch {
  min-height: 32px;
  padding: .2rem .55rem;
  border: 1px solid rgba(218, 196, 131, .45);
  border-radius: var(--radius-pill);
  color: var(--gold-300);
  font-size: .75rem;
  letter-spacing: .08em;
}
.main-nav a.lang-switch:hover {
  color: var(--green-950);
  background: var(--gold-300);
}

/* O menu tem dez itens e o container trava em 1160px: acima de 1200px a largura
   disponível não cresce mais, então o respiro precisa vir do próprio menu. */
@media (min-width: 1024px) {
  .main-nav ul { gap: .15rem; }
  .main-nav a:not(.btn) { padding: .4rem .6rem; }
}

/* Faixa estreita do desktop: aperta mais, para o CTA caber na mesma linha */
@media (min-width: 1024px) and (max-width: 1199px) {
  .main-nav ul { gap: .05rem; }
  .main-nav a:not(.btn) { padding: .4rem .35rem; font-size: .82rem; }
  .main-nav a.lang-switch { padding-inline: .4rem; }
  .nav-cta { margin-left: .2rem; }
  .nav-cta .btn { padding-inline: .8rem; font-size: .82rem; }
}

.nav-toggle {
  display: none;
  background: none; border: 0;
  color: #EDEFE2;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--green-950);
    border-bottom: 1px solid rgba(218, 196, 131, .2);
    display: none;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav-open .main-nav { display: block; }
  .main-nav ul {
    flex-direction: column; align-items: stretch;
    padding: var(--space-md);
    gap: .35rem;
  }
  .main-nav a:not(.btn) { min-height: 48px; font-size: 1rem; }
  .nav-cta { margin: .5rem 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 50%, var(--green-950) 100%);
  color: #F4F5EC;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3.5rem, 7vw, 6rem);
}
@media (max-width: 1099px) {
  .gold-wave { display: none; }
  .hero::after {
    content: "";
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  }
}
.gold-wave {
  position: absolute; top: 0; right: 0; bottom: 0;
  /* Nunca mais larga que o espaço livre à direita do bloco de texto (860px, centrado),
     senão o título e o eyebrow passam por baixo da faixa entre ~900px e ~1200px.
     Acima de ~1250px o resultado é idêntico ao clamp original. */
  width: min(clamp(90px, 14vw, 220px), calc((100vw - 860px) / 2 - 28px));
  opacity: .9;
  pointer-events: none;
}
.gold-wave svg { width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 860px; }

.hero .eyebrow { font-size: clamp(.72rem, .6rem + .5vw, .875rem); }
.hero h1 {
  font-size: clamp(2.3rem, 1.4rem + 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: #fff;
}
.hero-logo { display: inline-flex; align-items: center; gap: .3em; flex-wrap: wrap; }
.hero-logo .nowrap { white-space: nowrap; }
.leaf-mark {
  width: .95em; height: .95em;
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.hero-tagline {
  margin-top: var(--space-md);
  font-size: clamp(1.05rem, .9rem + 1vw, 1.4rem);
  color: #E4E7D7;
  max-width: 56ch;
}
.hero-tagline strong { color: var(--gold-300); }

.hero-meta {
  display: flex; flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(218, 196, 131, .28);
}
.hero-meta li { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; line-height: 1.45; }
.hero-meta .icon { color: var(--gold-300); width: 1.4rem; height: 1.4rem; margin-top: .15rem; }
.hero-meta strong { color: #fff; }
.hero-meta .hero-day-lbl { color: var(--gold-300); font-weight: 700; margin-right: .3em; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* Countdown */
.countdown { margin-top: var(--space-2xl); }
.countdown-grid {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(72px, 96px));
  gap: var(--space-sm);
}
.cd-box {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(218, 196, 131, .3);
  border-radius: var(--radius-sm);
  padding: .7rem .5rem;
  text-align: center;
}
.cd-num {
  display: block;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.1rem);
  font-weight: 800;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.cd-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #C9CDBE;
}

/* ---------- Grids ---------- */
.grid-2 { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cards (sistema "Orgânico Folha") ---------- */
.card {
  position: relative;
  background: var(--surface);
  color: var(--ink-900);
  border-radius: var(--radius-leaf);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3, .card h4 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: .6rem;
  display: flex; align-items: center; gap: .5rem;
}
.card p { font-size: .95rem; color: #444740; }
.card-icon {
  width: 2.2rem; height: 2.2rem;
  color: var(--gold-500);
  margin-bottom: var(--space-sm);
}
/* a identidade agora é o canto de folha + semente; a antiga borda dourada some */
.card-gold-top, .card-gold-left { border-top: 0; border-left: 0; }
.card .icon:not(.card-icon) { color: var(--gold-500); }

/* ---- Semente dourada (marcador da marca) ---- */
.card::before,
.ticket-current::before,
.tier-card::before {
  content: "";
  position: absolute; z-index: 2;
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: 50% 50% 50% 4px;
  transform: rotate(45deg);
  box-shadow: 0 3px 9px rgba(143, 106, 29, .45);
}
.card::before { top: -9px; left: 26px; }
.ticket-current::before { top: -9px; left: 24px; }
.tier-card::before { top: 63px; right: 24px; background: linear-gradient(135deg, #fff, var(--gold-300)); }
/* a curadoria tem overflow hidden (foto) — dispensa semente */

/* Semente "brota" ao entrar na viewport (com JS); sem JS fica visível */
.js .card::before,
.js .ticket-current::before,
.js .tier-card::before {
  transform: rotate(45deg) scale(0); opacity: 0;
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1) .2s, opacity .25s ease .2s;
}
.js .card.in::before,
.js .ticket-current.in::before,
.js .tier-card.in::before {
  transform: rotate(45deg) scale(1); opacity: 1;
}

.cards-evento { margin-top: var(--space-xl); }

/* ---------- Listas ---------- */
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .55rem;
  font-size: .95rem;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .32em;
  width: 1.05rem; height: 1.05rem;
  border-radius: 50%;
  background: var(--gold-500);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / 78% no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / 78% no-repeat;
}
.section-dark .check-list li::before { background: var(--gold-300); }

.pill-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--space-md); }
.pill-list li {
  padding: .45em 1.1em;
  border-radius: var(--radius-pill);
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  color: var(--green-700);
  font-size: .85rem;
  font-weight: 600;
}

/* ---------- Benefícios (seção escura) ---------- */
.benefits-grid {
  display: grid; gap: var(--space-md);
  grid-template-columns: 1fr;
  margin-top: var(--space-xl);
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefits-grid li {
  display: flex; flex-direction: row; align-items: center; gap: .8rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(218, 196, 131, .22);
  border-radius: var(--radius-leaf-chip);
  padding: var(--space-md);
  font-size: .92rem;
  font-weight: 500;
  transition: background-color .2s ease, border-color .2s ease;
}
.benefits-grid li:hover { background: rgba(255, 255, 255, .085); border-color: rgba(218, 196, 131, .45); }
.benefits-grid .icon { width: 1.6rem; height: 1.6rem; color: var(--gold-300); }

.takeaways {
  display: grid; gap: var(--space-md);
  grid-template-columns: 1fr;
  margin-top: var(--space-2xl);
}
@media (min-width: 768px) { .takeaways { grid-template-columns: repeat(2, 1fr); } }
.takeaway-col {
  background: rgba(255, 255, 255, .05);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
.takeaway-col h3 { font-size: 1.05rem; font-weight: 700; color: var(--gold-300); margin-bottom: var(--space-md); }

/* ---------- Palestrantes ---------- */
/* Curador — card escuro (a foto dele já tem fundo verde e funde com o card),
   largura alinhada à grade dos palestrantes */

/* grade mais estreita = cards menores, sem mudar o corte da foto */
.speakers { margin-top: var(--space-md); max-width: 960px; margin-inline: auto; }
.speaker-card {
  background: var(--surface);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-leaf);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding-bottom: 1.1rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.speaker-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.speaker-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-bottom: 4px solid var(--sage-200);
  margin-bottom: .9rem;
}
.speaker-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-700); }
.speaker-card p { font-size: .82rem; line-height: 1.45; color: var(--ink-600); padding-inline: 1.1rem; }

/* Destaque: fundo verde e borda dourada nos nomes que puxam a inscrição */
.speaker-card--destaque {
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
  border-color: var(--gold-500);
  color: #F4F5EC;
  box-shadow: var(--shadow-md);
}
.speaker-card--destaque img { border-bottom-color: var(--gold-500); }
.speaker-card--destaque h3 { color: var(--gold-300); }
.speaker-card--destaque p { color: #D8DCCB; }
.speaker-card--destaque .speaker-tag { color: var(--gold-300); }
.speaker-card .speaker-tag { color: var(--gold-600); }

/* ---------- Programação (2 dias · timeline em 2 colunas) ---------- */
.prog-day { margin-top: var(--space-xl); }
.prog-day-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem .9rem;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xs);
  border-bottom: 1px solid var(--sage-200);
}
.prog-day-n {
  font-size: 1.35rem; font-weight: 800; color: var(--green-700);
  letter-spacing: -.01em;
}
.prog-day-date {
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-600);
}
.prog-day-tag {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: .3rem .8rem; border-radius: var(--radius-pill);
}
.prog-day-tag .icon { width: 1rem; height: 1rem; }
.prog-day-tag--online { color: var(--gold-700); background: var(--gold-100); border: 1px solid var(--gold-300); }
.prog-day-tag--hybrid { color: #fff; background: linear-gradient(135deg, var(--green-800), var(--green-700)); }
@media (max-width: 520px) { .prog-day-tag { margin-left: 0; } }

/* eixo temático do dia, logo abaixo do cabeçalho */
.prog-eixo {
  display: flex; align-items: flex-start; gap: .5rem;
  margin-top: var(--space-md);
  font-size: .88rem; line-height: 1.5; color: var(--ink-600);
}
.prog-eixo .icon { width: 1.05rem; height: 1.05rem; color: var(--gold-500); flex: none; margin-top: .15rem; }
.prog-eixo strong { color: var(--green-700); }

/* trilha paralela (odontologia), abaixo da grade principal do dia */
.prog-trilha {
  margin-top: var(--space-xl);
  border-top: 1px dashed var(--sage-200);
  padding-top: var(--space-lg);
}
.prog-trilha-head {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: var(--space-md);
}
.prog-trilha-head .icon { width: 1.15rem; height: 1.15rem; color: var(--gold-500); flex: none; }
.prog-trilha .tl { max-width: 44rem; }

/* placeholder do dia 13 (programação em breve) */
.prog-soon {
  display: flex; align-items: center; gap: var(--space-md);
  margin-top: var(--space-md);
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px dashed var(--gold-300);
  border-radius: var(--radius-leaf);
}
.prog-soon .icon { width: 2rem; height: 2rem; color: var(--gold-500); flex: none; }
.prog-soon p { font-size: .95rem; color: #444740; line-height: 1.5; margin: 0; }
.prog-soon strong { color: var(--green-700); }

.prog { margin-top: var(--space-md); }
.prog-2col { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); }
@media (min-width: 860px) {
  .prog-2col { grid-template-columns: 1fr 1fr; column-gap: var(--space-2xl); }
}
.prog-period {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--space-md);
}
.prog-period .icon { width: 1.15rem; height: 1.15rem; color: var(--gold-500); }

/* trilho vertical */
.tl { position: relative; border-left: 2px solid var(--gold-300); margin-left: 7px; }
.tl-item, .tl-break { position: relative; }
.tl-item { padding: .5rem 0 .5rem 1.5rem; }
.tl-item::before {
  content: ""; position: absolute; left: -8px; top: .8rem;
  width: 13px; height: 13px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 0 0 3px var(--sage-100);
}
.tl-magna::before {
  width: 15px; height: 15px; left: -9px;
  box-shadow: 0 0 0 3px var(--sage-100), 0 0 0 5px rgba(196, 150, 44, .26);
}
.tl-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem .55rem; margin: 0; }
.tl-time { font-size: .8rem; font-weight: 800; color: var(--gold-700); font-variant-numeric: tabular-nums; }
.tl-title { font-size: .98rem; font-weight: 700; color: var(--ink-900); line-height: 1.3; }
.tl-desc { margin: .2rem 0 0; font-size: .85rem; color: var(--ink-600); line-height: 1.45; }

/* intervalo / almoço — divisória fina */
.tl-break {
  display: flex; align-items: center; gap: .45rem;
  padding: .4rem 0 .4rem 1.5rem;
  font-size: .85rem; font-style: italic; color: var(--ink-600);
}
.tl-break::before {
  content: ""; position: absolute; left: -6px; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--sage-100); box-shadow: 0 0 0 2px var(--gold-300);
}
.tl-break .icon { width: 1rem; height: 1rem; color: var(--gold-700); }
.tl-break .tl-time { font-style: normal; }

/* sessão expansível */
.tl-session { padding: 0; }
.tl-session > summary {
  list-style: none; cursor: pointer;
  display: flex; flex-direction: column; gap: .3rem;
  padding: .5rem .5rem .5rem 1.5rem;
  min-height: 44px;
  border-radius: var(--radius-sm);
  transition: background-color .2s ease;
}
.tl-session > summary::-webkit-details-marker { display: none; }
.tl-session > summary:hover { background: rgba(196, 150, 44, .09); }
.tl-toggle {
  display: inline-flex; align-items: center; gap: .3rem;
  align-self: flex-start;
  font-size: .72rem; font-weight: 700;
  color: var(--gold-700);
  background: var(--surface);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-pill);
  padding: .12rem .65rem;
}
.tl-toggle .chev { width: .85rem; height: .85rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.tl-session[open] > summary .tl-toggle .chev { transform: rotate(180deg); }
.tl-sub {
  margin: 0 0 .5rem; padding: 0 0 0 1.5rem;
  display: grid; gap: .5rem;
}
.tl-sub li {
  font-size: .85rem; color: #444740; line-height: 1.45;
  padding-left: .8rem; border-left: 2px solid var(--gold-300);
}
.tl-sub strong { color: var(--gold-700); font-variant-numeric: tabular-nums; }

/* ---------- Local (split editorial: foto ampliada + lista + painel de formatos) ---------- */
.local-grid {
  display: grid; gap: var(--space-lg);
  grid-template-columns: 1fr;
  margin-top: var(--space-xl);
}
@media (min-width: 1024px) {
  /* a foto passa a ser a coluna dominante */
  .local-grid { grid-template-columns: 1.3fr 1fr; align-items: start; gap: var(--space-2xl); }
}
/* composição editorial: a fachada sobrepõe o canto da foto do auditório */
.local-photos { position: relative; display: block; margin: 0; }
.local-photos img {
  width: 100%; display: block;
  border-radius: var(--radius-leaf);
  border: 1px solid rgba(218, 196, 131, .35);
  box-shadow: var(--shadow-lg);
}
.local-photos .photo-main { aspect-ratio: 16 / 9; object-fit: cover; }
/* fachada: quadrada e ancorada no prédio (não no letreiro), com borda cor do fundo */
.local-photos .photo-sec {
  width: 46%; max-width: 190px;
  aspect-ratio: 1 / 1;
  object-fit: cover; object-position: center 58%;
  border: 4px solid #2c362f;
  margin-left: auto;      /* alinha à direita no mobile */
  margin-top: -12%;       /* sobrepõe o rodapé da foto principal */
}
@media (min-width: 1024px) {
  .local-photos { padding-bottom: 58px; }
  .local-photos .photo-sec {
    position: absolute; right: -28px; bottom: 0;
    width: 186px; max-width: none;
    margin: 0;
  }
}

.local-info { display: grid; gap: var(--space-lg); justify-items: start; }
.local-features { margin: 0; }
.local-features li { font-size: .92rem; }

/* Presencial | Virtual — mini painel dividido (mesmo padrão do Fale Conosco) */
.modes-panel {
  width: 100%;
  display: grid; grid-template-columns: 1fr;
  border: 1px solid rgba(218, 196, 131, .3);
  border-radius: var(--radius-leaf);
  overflow: hidden;
}
@media (min-width: 560px) { .modes-panel { grid-template-columns: 1fr 1fr; } }
.modes-panel > div { padding: var(--space-md); }
.modes-panel > div + div { border-top: 1px solid rgba(218, 196, 131, .3); }
@media (min-width: 560px) {
  .modes-panel > div + div { border-top: 0; border-left: 1px solid rgba(218, 196, 131, .3); }
}
.modes-panel h3 {
  display: flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: .35rem;
}
.modes-panel h3 .icon { width: 1rem; height: 1rem; flex: none; }
.modes-panel p { font-size: .85rem; line-height: 1.5; color: #C9CDBE; }

/* ---------- Ingressos ---------- */
.tickets { margin-top: var(--space-xl); align-items: stretch; }
.ticket-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-leaf);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.ticket-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ticket-card h3 { font-size: 1.3rem; font-weight: 800; margin-top: .6rem; }
.ticket-period { color: var(--ink-600); font-size: .9rem; margin-bottom: var(--space-md); }
/* picote de credencial */
.ticket-perf {
  position: relative; height: 0;
  border-top: 2px dashed var(--sage-200);
  margin: 0 calc(-1 * var(--space-lg)) var(--space-md);
}
.ticket-perf::before, .ticket-perf::after {
  content: ""; position: absolute; top: -9px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--sage-100);
}
.ticket-perf::before { left: -8px; }
.ticket-perf::after { right: -8px; }
.ticket-prices { margin-top: auto; display: grid; gap: .5rem; }
.ticket-prices li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .65rem .9rem;
  background: var(--sage-100);
  border-radius: var(--radius-sm);
  font-size: .92rem;
}
.ticket-prices strong {
  font-size: 1.05rem; font-weight: 800;
  color: var(--green-700);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ticket-card .btn { margin-top: var(--space-md); }
.ticket-current {
  border: 2px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
}
.ticket-current .ticket-prices li { background: var(--gold-100); }
/* lote já encerrado: mantém a referência de preço, sem competir com o lote atual
   (nada de opacity aqui — a classe .reveal controla opacity na entrada) */
.ticket-past {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
}
.ticket-past:hover { transform: none; box-shadow: none; }
.ticket-past h3, .ticket-past .ticket-period { color: var(--ink-600); }
.ticket-past .ticket-prices li { background: transparent; border: 1px solid var(--sage-200); }
.ticket-past .ticket-prices strong {
  color: var(--ink-600);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* ---------- Patrocínio ---------- */
/* ---------- Painel dividido (Fale Conosco + Público-alvo) ---------- */
/* Um bloco só, com finas divisórias douradas no lugar de vários cards */
.split-panel {
  display: grid; grid-template-columns: 1fr;
  margin-top: var(--space-xl);
  border-radius: var(--radius-leaf);
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(218, 196, 131, .3);
}
@media (min-width: 860px) { .split-panel { grid-template-columns: repeat(3, 1fr); } }
.split-col { padding: var(--space-lg); }
.split-col + .split-col { border-top: 1px solid rgba(218, 196, 131, .28); }
@media (min-width: 860px) {
  .split-col + .split-col { border-top: 0; border-left: 1px solid rgba(218, 196, 131, .28); }
}
.split-col h3, .split-col h4 {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1.02rem; font-weight: 700; color: #fff;
  margin-bottom: .2rem;
}
.split-col h3 .icon, .split-col h4 .icon { width: 1.2rem; height: 1.2rem; color: var(--gold-300); flex: none; }
.split-sub { font-size: .82rem; color: #AEB4A2; margin-bottom: var(--space-md); }

/* variante clara (Público-alvo, sobre a seção escura) */
.split-panel--light {
  background: var(--surface);
  border-color: var(--sage-200);
  box-shadow: var(--shadow-md);
  color: var(--ink-900);          /* não herdar o texto claro da seção escura */
}
.split-panel--light .split-col + .split-col { border-color: var(--sage-200); }
.split-panel--light h3, .split-panel--light h4 { color: var(--ink-900); }
.split-panel--light h3 .icon, .split-panel--light h4 .icon { color: var(--gold-500); }
.split-panel--light .split-sub { color: var(--ink-600); }
.split-panel--light .check-list li::before { background: var(--gold-500); }

/* ---------- Lista editorial numerada (Por que patrocinar) ---------- */
.editorial-list {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-lg) var(--space-2xl);
  margin-top: var(--space-xl);
  counter-reset: none;
}
@media (min-width: 768px) { .editorial-list { grid-template-columns: 1fr 1fr; } }
.editorial-list li { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md); align-items: start; }
.editorial-num {
  font-size: 2.7rem; font-weight: 800; line-height: .82;
  color: var(--gold-500);
  font-variant-numeric: tabular-nums;
}
@supports (-webkit-text-stroke: 1px black) {
  .editorial-num { color: transparent; -webkit-text-stroke: 1.5px var(--gold-500); }
}
.editorial-list h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.editorial-list p { font-size: .9rem; line-height: 1.55; color: #C9CDBE; }

.tiers { margin-top: var(--space-lg); align-items: start; }
.tier-card {
  position: relative;
  background: var(--surface);
  color: var(--ink-900);
  border-radius: var(--radius-leaf);
  padding: 0 var(--space-md) var(--space-md);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-head {
  display: flex; align-items: center; justify-content: center;
  height: 72px;
  margin: 0 calc(-1 * var(--space-md)) var(--space-md);
  border-radius: 7px 42px 0 0;
  color: #fff;
}
.tier-head .icon { width: 2rem; height: 2rem; }
.tier-gold .tier-head { background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); }
.tier-silver .tier-head { background: linear-gradient(135deg, #C3C9D0, #7C838C); }
.tier-bronze .tier-head { background: linear-gradient(135deg, #D29A6C, #96522F); }
.tier-expo .tier-head { background: linear-gradient(135deg, #A3B49A, #66785D); }

.tier-card h4 {
  font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
}
.tier-gold h4 { color: var(--gold-700); }
.tier-silver h4 { color: #6B727B; }
.tier-bronze h4 { color: #96522F; }
.tier-expo h4 { color: #5C7052; }

.tier-price {
  font-size: 1.7rem; font-weight: 800;
  color: var(--green-700);
  font-variant-numeric: tabular-nums;
  margin: .2rem 0;
}
.tier-availability {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold-700);
  margin-bottom: var(--space-md);
}
.tier-card .check-list { flex: 1; }
.tier-card .check-list li { font-size: .875rem; }

/* nota única do balcão (idêntico em todas as cotas) */
.tiers-balcao {
  display: flex; align-items: center; gap: .75rem;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(218, 196, 131, .3);
  border-radius: var(--radius-leaf);
  font-size: .875rem; line-height: 1.5; color: #D8DCCB;
}
.tiers-balcao .icon { width: 1.6rem; height: 1.6rem; color: var(--gold-300); flex: none; }
.tiers-balcao strong { color: var(--gold-300); }

/* Ações exclusivas — lista de preços (formato cardápio) */
.price-list { margin-top: var(--space-lg); display: grid; }
.price-list li {
  display: flex; align-items: baseline; gap: .75rem;
  padding: .95rem 0;
  border-bottom: 1px dashed rgba(218, 196, 131, .3);
}
.price-list li:last-child { border-bottom: 0; }
.price-list .icon {
  width: 1.15rem; height: 1.15rem; color: var(--gold-300);
  align-self: center; flex: none;
}
.price-name { font-size: 1rem; font-weight: 700; color: #fff; flex: none; }
.price-desc { font-size: .82rem; color: #AEB4A2; flex: 0 1 auto; white-space: nowrap; }
.price-dots {
  flex: 1; min-width: 1.5rem;
  border-bottom: 1px dotted rgba(218, 196, 131, .35);
  transform: translateY(-.28rem);
}
.price-value {
  font-size: 1.05rem; font-weight: 800; color: var(--gold-300);
  font-variant-numeric: tabular-nums; flex: none;
}
.price-note { margin-top: var(--space-md); font-size: .82rem; font-style: italic; }
@media (max-width: 639px) {
  .price-list li { flex-wrap: wrap; row-gap: .2rem; }
  .price-dots { display: none; }
  .price-value { margin-left: auto; }
  .price-desc { flex-basis: 100%; order: 3; white-space: normal; padding-left: 1.9rem; }
}

/* Parcerias */
.partnerships { margin-top: var(--space-lg); align-items: stretch; }
.partnerships .card { display: flex; flex-direction: column; gap: var(--space-sm); }
.partnerships .check-list { margin-top: .3rem; }
.partner-price { margin-top: auto; padding-top: var(--space-sm); font-size: .95rem; }
.partner-price strong { font-size: 1.25rem; color: var(--green-700); }
.convenio-list { display: grid; gap: var(--space-sm); margin-top: .3rem; }
.convenio-list li {
  background: var(--sage-100);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-size: .9rem;
}

/* CTA patrocínio */
.sponsor-cta {
  margin-top: var(--space-2xl);
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(218, 196, 131, .3);
  border-radius: var(--radius);
  padding: var(--space-2xl) var(--space-lg);
}
.sponsor-cta h3 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); font-weight: 800; color: #fff; }
.sponsor-cta p { color: #D8DCCB; margin: var(--space-sm) 0 var(--space-lg); }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center; }

/* O mesmo bloco de CTA em seção clara: o original é escrito para fundo escuro */
.sponsor-cta--light {
  background: rgba(255, 255, 255, .6);
  border-color: rgba(168, 126, 34, .35);
}
.sponsor-cta--light h3 { color: var(--ink-900); }
.sponsor-cta--light p { color: var(--ink-600); }
.sponsor-cta--light .btn-ghost { border-color: var(--gold-600); }

/* ---------- Mapa de expositores ---------- */
/* A planta é larga e cheia de detalhe: no celular ela fica ilegível reduzida,
   por isso a imagem inteira é um link que abre o arquivo em tamanho real. */
.mapa-expo {
  margin-top: var(--space-lg);
  background: var(--surface);
  border: 1px solid rgba(27, 35, 30, .1);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.mapa-expo img { display: block; width: 100%; height: auto; border-radius: var(--radius-sm); }
.mapa-expo figcaption {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: var(--space-sm);
  font-size: .85rem; font-weight: 700;
  color: var(--gold-600);
}

/* ---------- Apoiadores ---------- */
/* Ficha técnica: rótulo do papel à esquerda, logos à direita */
.logos-groups {
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--sage-200);
}
.logos-group {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--sage-200);
}
.logos-group-label {
  margin: 0;
  text-align: left;
  color: var(--gold-600);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  line-height: 1.4;
}

.logos-strip {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-lg);
  margin: 0;
}
/* Toda logo ocupa um espaço idêntico e é centralizada dentro dele. Sem isso, o
   tamanho na tela passa a depender da proporção do arquivo: a Green Roads (739×415)
   saía menor que a FAPERJ (2585×1012) só por ser menos alongada. */
.logos-strip li {
  display: grid;
  place-items: center;
  width: 162px; height: 78px;
}
.logos-strip img {
  /* limites em px, não em %: a porcentagem não estava sendo respeitada dentro do
     grid e logos quadradas estouravam a altura do slot */
  max-width: 162px; max-height: 78px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(.45);
  opacity: .85;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.logos-strip li:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.04); }

/* Realização e Patrocínio ganham mais peso visual */
.logos-group--lead .logos-strip li { width: 172px; height: 80px; }
.logos-group--lead .logos-strip img {
  max-width: 172px; max-height: 80px;
  filter: grayscale(.2); opacity: 1;
}

@media (max-width: 767px) {
  .logos-group {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
  }
  .logos-group-label { text-align: left; }
  .logos-strip { gap: var(--space-md); }
  .logos-strip li { width: 128px; height: 62px; }
  .logos-strip img { max-width: 128px; max-height: 62px; }
  .logos-group--lead .logos-strip li { width: 134px; height: 64px; }
  .logos-group--lead .logos-strip img { max-width: 134px; max-height: 64px; }
}

.quote {
  margin-top: var(--space-2xl);
  text-align: center;
  font-size: clamp(1.05rem, .95rem + .8vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  color: var(--green-700);
  max-width: 62ch;
  margin-inline: auto;
}

/* ---------- Contato ---------- */
.contact-list { margin-top: var(--space-md); display: grid; gap: .3rem; }
.contact-list a {
  display: flex; align-items: center; gap: .6rem;
  min-height: 44px;
  font-size: .92rem;
  font-weight: 600;
  color: #EDEFE2;                 /* painel escuro: texto claro */
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: .35rem .5rem;
  margin-left: -.5rem;            /* alinha com o título da coluna */
  transition: background-color .2s ease, color .2s ease;
}
.contact-list a:hover { background: rgba(196, 150, 44, .14); color: var(--gold-300); }
.contact-list .icon { color: var(--gold-300); flex: none; }

.final-cta { text-align: center; margin-top: var(--space-2xl); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950);
  color: #B9BFAC;
  padding-block: var(--space-2xl);
  font-size: .85rem;
  text-align: center;
}
.footer-inner { display: grid; gap: var(--space-sm); justify-items: center; }
.footer-inner img { width: 150px; opacity: .9; }
.site-footer nav { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.site-footer a { color: var(--gold-300); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.site-footer a:hover { text-decoration: underline; }

/* ---------- Animações de entrada ---------- */
/* Só oculta quando o JS marcou <html class="js"> — sem JS, tudo visível */
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.in,
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .55s ease-out, transform .55s ease-out;
}
.reveal.d-1.in { transition-delay: .08s; }
.reveal.d-2.in { transition-delay: .16s; }
.reveal.d-3.in { transition-delay: .24s; }
.reveal.d-4.in { transition-delay: .32s; }
.reveal.d-5.in { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .logos-strip img, .prog-details .chev,
  .card, .speaker-card, .tier-card, .ticket-card, .benefits-grid li { transition: none; }
  .btn:hover,
  .card:hover, .speaker-card:hover, .tier-card:hover, .ticket-card:hover { transform: none; }
  /* semente sempre visível, sem animação */
  .js .card::before,
  .js .ticket-current::before,
  .js .tier-card::before { transform: rotate(45deg) scale(1); opacity: 1; transition: none; }
}

/* ---------- Páginas legais (Política de Privacidade / Termos) ---------- */
.legal-header {
  background: var(--green-950);
  border-bottom: 1px solid rgba(218, 196, 131, .18);
}
.legal-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-h);
}
.legal-header .brand img { width: 170px; height: auto; }
.legal-header .btn-ghost { border-color: var(--gold-300); color: #F4F5EC; }

.legal { max-width: 78ch; }
.legal .section-title { margin-bottom: var(--space-lg); }
.legal h2 {
  font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem);
  font-weight: 800;
  color: var(--green-700);
  margin: var(--space-xl) 0 var(--space-sm);
}
.legal h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-800);
  margin: var(--space-lg) 0 var(--space-sm);
}
.legal p { margin-bottom: var(--space-md); }
.legal a { color: var(--gold-700); font-weight: 600; }
.legal a:hover { text-decoration: underline; }

.legal-list {
  margin: 0 0 var(--space-md);
  display: grid; gap: .4rem;
}
.legal-list li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.6;
}
.legal-list li::before {
  content: "";
  position: absolute; left: .35rem; top: .68em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

.legal-updated {
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--sage-200);
  font-size: .875rem;
  color: var(--ink-600);
  font-style: italic;
}

/* ==================================================================
   Páginas de conteúdo (palestrantes, patrocinadores, blog)
   Geradas por build.mjs — reaproveitam os componentes acima.
   ================================================================== */

/* ---------- Navegação de contexto ---------- */
.migalha {
  font-size: .8rem;
  color: var(--ink-600);
  margin-bottom: var(--space-md);
}
.migalha a { color: var(--gold-600); font-weight: 600; }
.voltar { margin-top: var(--space-xl); font-size: .9rem; font-weight: 600; }
.voltar a { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-600); }
.voltar .icon { width: 1rem; height: 1rem; transform: rotate(180deg); }

/* ---------- Cartão de palestrante quando leva a um perfil ---------- */
.speaker-link { display: block; color: inherit; text-decoration: none; }
.speaker-card .speaker-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: .5rem;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold-300);
}
.speaker-card .speaker-tag .icon { width: .85rem; height: .85rem; }
.speaker-sem-foto {
  display: grid; place-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  border-bottom: 4px solid var(--gold-500);
  margin-bottom: .9rem;
}
.speaker-sem-foto .icon { width: 3rem; height: 3rem; color: var(--gold-300); }

/* ---------- Perfil (palestrante e patrocinador) ---------- */
.perfil {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
@media (min-width: 768px) {
  .perfil { grid-template-columns: 300px minmax(0, 1fr); gap: var(--space-xl); align-items: start; }
}
.perfil-foto {
  width: 100%; max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius-leaf);
  border-bottom: 4px solid var(--gold-500);
}
.perfil-logo {
  width: 100%; max-width: 240px;
  height: 120px;
  object-fit: contain; object-position: left center;
}
.perfil-info h1 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: .35rem;
}
.perfil-titulo { color: var(--gold-600); font-weight: 700; font-size: .95rem; }
.perfil-resumo { color: var(--ink-600); margin-top: .35rem; }
.perfil-sem-bio { margin-top: var(--space-md); color: var(--ink-600); font-style: italic; }
.perfil-links { margin-top: var(--space-md); font-weight: 600; }
.perfil-links a { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-600); }
.perfil-marca .badge { margin-bottom: .6rem; }

/* ---------- Vídeo-convite ---------- */
.video-convite { margin-top: var(--space-2xl); }
.video-convite h2 {
  font-size: 1.15rem; font-weight: 800;
  margin-bottom: var(--space-md);
}
.video-convite video {
  width: 100%; max-width: 420px; height: auto;
  border-radius: var(--radius-leaf);
  background: var(--green-950);
  display: block;
}

/* ---------- Texto corrido ---------- */
.prosa { margin-top: var(--space-md); max-width: 68ch; }
.prosa > * + * { margin-top: var(--space-md); }
.prosa h2 { font-size: 1.3rem; font-weight: 800; line-height: 1.3; }
.prosa h3 { font-size: 1.1rem; font-weight: 700; }
.prosa ul { padding-left: 1.2rem; list-style: disc; }
.prosa li + li { margin-top: .4rem; }
.prosa a { color: var(--gold-600); font-weight: 600; text-decoration: underline; }
.prosa blockquote {
  border-left: 3px solid var(--gold-500);
  padding-left: var(--space-md);
  font-size: 1.02em;
  color: var(--green-800);
}

/* ---------- Blog ---------- */
.container-artigo { max-width: 780px; }
.artigos { margin-top: var(--space-xl); align-items: stretch; }
.artigo-card { padding: 0; overflow: hidden; }
.artigo-card::before { content: none; }
.artigo-card a { display: block; color: inherit; text-decoration: none; padding-bottom: var(--space-lg); }
.artigo-capa {
  width: 100%; height: 200px;
  object-fit: cover; object-position: center 20%;
  margin-bottom: var(--space-md);
}
.artigo-card h3 { font-size: 1.05rem; line-height: 1.35; padding-inline: var(--space-lg); }
.artigo-card p { padding-inline: var(--space-lg); }
.artigo-data, .artigo-autor {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold-600);
}
.artigo-autor { margin-top: .6rem; color: var(--ink-600); }
.artigo-titulo {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -.01em;
}
.artigo-meta {
  margin-top: var(--space-md);
  font-size: .82rem; color: var(--ink-600);
  display: flex; gap: .6rem; flex-wrap: wrap;
}
.artigo-hero {
  width: 100%; max-width: 380px; height: auto;
  border-radius: var(--radius-leaf);
  margin-top: var(--space-lg);
  border-bottom: 4px solid var(--gold-500);
}
.artigo-fonte {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--sage-200);
  font-size: .85rem; color: var(--ink-600);
}
.artigo-fonte a { color: var(--gold-600); font-weight: 600; }

/* ---------- "Ver todos" nas seções da home ---------- */
.ver-mais { margin-top: var(--space-lg); font-size: .9rem; font-weight: 700; }
.ver-mais a { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-600); }
.ver-mais .icon { width: 1rem; height: 1rem; }
.section-dark .ver-mais a { color: var(--gold-300); }

/* ---------- Nota sobre o que cada ingresso cobre ---------- */
.acessos-nota {
  margin-top: var(--space-lg);
  font-size: .9rem;
  color: var(--ink-600);
  max-width: 80ch;
}
}

/* ---------- Catálogo de produtos do patrocinador ---------- */
.catalogo { margin-top: var(--space-2xl); }
.catalogo h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}
.catalogo-grade {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px)  { .catalogo-grade { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .catalogo-grade { grid-template-columns: repeat(3, 1fr); } }

.produto {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-leaf);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.produto:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.produto-foto {
  width: 100%; height: 200px;
  object-fit: contain;
  background: var(--sage-100);
  padding: var(--space-md);
}
.produto-info { padding: var(--space-md); }
/* Sem foto, o texto desce para alinhar com o dos cards que têm imagem. */
.produto-info:only-child { margin-top: auto; }
.produto-info h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .4rem;
}
.produto-info p { font-size: .88rem; line-height: 1.55; color: var(--ink-600); }
.produto-link { margin-top: .7rem; }
.produto-link a { color: var(--gold-600); font-weight: 600; font-size: .85rem; }

.catalogo-nota {
  margin-top: var(--space-md);
  font-size: .82rem;
  color: var(--ink-600);
  font-style: italic;
}

.perfil-estande {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: var(--space-md);
  padding: .45rem .9rem;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-pill);
  background: var(--gold-100);
  font-size: .85rem; font-weight: 600;
  color: var(--green-700);
}
.perfil-estande .icon { width: 1rem; height: 1rem; color: var(--gold-600); }

.perfil-links { display: flex; flex-wrap: wrap; gap: var(--space-md); }

/* ---------- Expositores e Patrocinadores (home e índice) ---------- */
.marcas-grade {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
@media (min-width: 600px)  { .marcas-grade { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .marcas-grade { grid-template-columns: repeat(3, 1fr); } }

.marca-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-leaf);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.marca-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.marca-card > a { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.marca-logo {
  display: grid; place-items: center;
  height: 84px;
  margin-bottom: var(--space-md);
}
.marca-logo img { max-width: 100%; max-height: 84px; width: auto; height: auto; object-fit: contain; }
.marca-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .35rem;
}
.marca-card p { font-size: .88rem; line-height: 1.55; color: var(--ink-600); }
.marca-mais {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: auto; padding-top: var(--space-md);
  color: var(--gold-600); font-weight: 700; font-size: .85rem;
}
.marca-mais .icon { width: 1rem; height: 1rem; }

/* ---------- Cotas de patrocínio ---------- */
/* O card é branco e a seção de patrocínio é escura: sem cor explícita o <h3>
   herda o #F4F5EC da .section-dark e o nome da marca some dentro do card. */
.marca-card { color: var(--ink-900); }

.cotas { margin-top: var(--space-xl); }
.cota-grupo + .cota-grupo { margin-top: var(--space-xl); }
.cotas .marcas-grade { margin-top: 0; }
.cota-label {
  margin: 0 0 var(--space-md);
  color: var(--gold-300);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}

/* ---------- Tema da palestra ---------- */
.perfil-tema {
  margin-top: var(--space-md);
  padding-left: var(--space-md);
  border-left: 3px solid var(--gold-500);
  font-size: .95rem;
  line-height: 1.5;
}
.perfil-tema span {
  display: block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold-600);
  margin-bottom: .2rem;
}

/* Rótulo do papel no card do palestrante (hoje: Coordenação) */
.speaker-papel {
  font-size: .68rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold-500) !important;
  margin-bottom: .25rem;
}
