/* The Forest Convention Center — protótipo v2 (pente fino)
   Sistema: escala de espaçamento única, hairlines no lugar de caixas, respiro generoso.
   Paleta e tipografia conforme Style Guide Sevenplace + Brand Guideline B2B v1.1.
   Tipografia: títulos 100% Lyon Display (instalação local, licença ok);
   Inter para o restante, variando peso. Playfair só como fallback. */

:root {
  --bege: #FFF2EE;
  --marrom-escuro: #33190E;
  --marrom-medio: #71381E;
  --verde-medio: #51A057;
  --verde-profundo: #0F3614;
  --verde-noite: #0A2A0E; /* um degrau abaixo: separa header/footer do conteúdo */
  --branco: #FFFFFF;
  --borda: rgba(51, 25, 14, 0.1);
  --borda-clara: rgba(255, 242, 238, 0.16);
  /* Lyon Display: carrega da instalação local (licença ok); Playfair é só fallback */
  --sans: 'Inter', system-ui, sans-serif;
  --serif: 'Lyon Display', 'Playfair Display', Georgia, serif;
  --max: 1140px;

  /* escala de respiro */
  --s2: 16px;
  --s3: 24px;
  --s4: 40px;
  --s5: 64px;
  --s6: 112px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Header fixo tem 96px: âncoras param com folga, sem ficar cobertas */
[id] { scroll-margin-top: 120px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--marrom-escuro);
  background: var(--bege);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Header ---------- */
header.site {
  background: var(--verde-noite);
  border-bottom: 1px solid var(--borda-clara);
  position: sticky;
  top: 0;
  z-index: 50;
}

header.site .wrap {
  display: flex;
  align-items: center;
  gap: var(--s3);
  height: 96px;
}

/* Logo ancora a esquerda; menu + CTA agrupados à direita
   (elimina a comparação visual entre texto do menu e texto do logo) */
header.site nav.main { margin-left: auto; }

header.site .header-actions { margin-left: 44px; }

/* Alinhamento óptico: a linha "The FOREST" fica 4px abaixo do centro
   da imagem (a folha é mais alta que o texto) — menu e CTA descem junto */
header.site nav.main, header.site .header-actions { transform: translateY(4px); }

/* Logo composto: folha em camadas (animável) + lettering — geometria idêntica
   ao lockup horizontal original (medida no arquivo da marca) */
.logo-anim {
  position: relative;
  display: block;
  aspect-ratio: 700 / 211;
}

.logo-anim .logo-leaf {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  aspect-ratio: 613 / 552;
}

.logo-leaf .camada { position: absolute; inset: 0; width: 100%; height: 100%; }

.logo-anim .logo-texto {
  position: absolute;
  left: 40.3%; top: 49.3%;
  height: 40.8%;
  width: auto;
}

.logo-leaf .folha-esq { transform-origin: 62% 76%; }
.logo-leaf .folha-dir { transform-origin: 70% 72%; }
.logo-leaf .hastes-l { transform-origin: 66% 70%; }

/* Brisa: sempre ativa no footer (.viva); no header, só ao passar o mouse no logo */
.logo-anim.viva .folha-esq, .logo-anim:hover .folha-esq, .logo-anim:focus-visible .folha-esq {
  animation: brisa-esq 6.8s ease-in-out infinite;
}

.logo-anim.viva .folha-dir, .logo-anim:hover .folha-dir, .logo-anim:focus-visible .folha-dir {
  animation: brisa-dir 5.3s ease-in-out -2.1s infinite;
}

.logo-anim.viva .hastes-l, .logo-anim:hover .hastes-l, .logo-anim:focus-visible .hastes-l {
  animation: brisa-hastes 8.5s ease-in-out -1.2s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .logo-anim .camada { animation: none !important; }
}

header.site .logo-anim { height: 48px; }

nav.main { display: flex; gap: 36px; align-items: center; }

nav.main a {
  color: var(--bege);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease;
}

nav.main a:hover, nav.main a.active { border-bottom-color: var(--verde-medio); }

/* Submenu de categorias (Realize seu Evento) */
.has-sub { position: relative; }

.has-sub > a::after { content: ' ▾'; font-size: 9px; opacity: .7; }

nav.main .submenu {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 26px; /* painel nasce na base do header (96px), não sob o texto */
  left: -28px; /* o texto dos itens (padding 28px) alinha com a esquerda do link-pai */
  background: var(--verde-noite);
  border: 1px solid var(--borda-clara);
  border-top: none;
  min-width: 300px;
  padding: 14px 0;
  z-index: 60;
}

/* Ponte de hover invisível entre o link e o painel */
nav.main .submenu::before {
  content: '';
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  height: 26px;
}

.has-sub:hover .submenu, .has-sub:focus-within .submenu { display: block; }

nav.main .submenu a {
  display: block;
  width: auto;
  padding: 13px 28px;
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  border-bottom: none;
  white-space: nowrap;
  transition: background .15s ease;
}

nav.main .submenu a:hover, nav.main .submenu a.active {
  background: rgba(255, 242, 238, 0.08);
  border-bottom: none;
}

.header-actions { display: flex; gap: var(--s2); align-items: center; }

.btn-tickets {
  background: var(--verde-medio);
  color: var(--branco);
  padding: 12px 24px;
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .18s ease;
}

.btn-tickets:hover { background: var(--bege); color: var(--verde-profundo); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--bege);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}

/* ---------- Tipografia ---------- */
.eyebrow {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--verde-medio);
  margin-bottom: var(--s3);
}

h1, h2 { font-weight: 300; }

/* Títulos: Lyon Display por inteiro — sem mistura de famílias dentro do título.
   A itálica é nuance da própria Lyon, usada com parcimônia. */
.title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
  max-width: 20em;
}

.title em { font-style: italic; font-weight: 500; }

.lede {
  margin-top: var(--s3);
  font-size: 18.5px;
  line-height: 1.65;
  max-width: 540px;
  font-weight: 300;
}

/* ---------- Botões (CTA: Inter Light, caixa alta, tracking +100) ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
}

.btn-solid { background: var(--verde-profundo); color: var(--bege); }
.btn-solid:hover { background: var(--verde-medio); }

.btn-light { background: var(--bege); color: var(--verde-profundo); }
.btn-light:hover { background: var(--verde-medio); color: var(--bege); }

.btn-ghost { border-color: currentColor; color: var(--verde-profundo); background: transparent; }
.on-dark .btn-ghost { color: var(--bege); }
.btn-ghost:hover { background: var(--verde-medio); border-color: var(--verde-medio); color: var(--bege); }

.btn-link {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--verde-profundo);
  border-bottom: 1px solid var(--verde-medio);
  padding-bottom: 5px;
  transition: border-color .18s ease;
}

.btn-link:hover { border-bottom-color: var(--marrom-medio); }

section.dark .btn-link, footer.site .btn-link { color: var(--bege); }

.cta-row { display: flex; gap: var(--s2); margin-top: var(--s4); flex-wrap: wrap; align-items: center; }

/* ---------- Hero split: painel de cor + foto natural ---------- */
.hero2 {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 82vh;
  background: var(--verde-profundo);
  color: var(--bege);
}

.hero2.short { min-height: 58vh; }

.hero2-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s6) clamp(28px, 5vw, 88px);
}

.hero2-panel .title { font-size: clamp(26px, 3vw, 38px); }

.hero2-panel .lede { color: var(--bege); opacity: 0.9; }

/* Painel de madeira: textura oficial de tronco (p.19) pré-composta em luz suave
   sobre o marrom da marca — imagem pronta, como nas peças do manual */
.hero2-panel.madeira {
  background: #2F170D url('../painel-madeira.jpg') center/cover no-repeat;
}

.hero2-media { position: relative; overflow: hidden; min-height: 320px; }

.hero2-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- Divisória vitória-régia (entre seções de mesmo fundo) ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  padding: var(--s3) 28px;
}

.divider.dark { background: var(--verde-profundo); color: rgba(255, 242, 238, 0.5); }
.divider.light { background: var(--bege); color: rgba(51, 25, 14, 0.4); }

.divider::before, .divider::after {
  content: '';
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  flex: 1;
  max-width: 340px;
}

/* Isotipo oficial em 3 camadas (recortadas da arte original, sem redesenho):
   cada folha balança em período e fase próprios, ancorada no cruzamento dos
   caules; o X quase parado. É a dessincronia que faz parecer brisa real. */
.brisa {
  position: relative;
  display: inline-block;
  width: 76px;
  aspect-ratio: 613 / 552;
  opacity: 0.85;
  animation: brisa-corpo 11s ease-in-out infinite;
  transform-origin: 62% 85%;
}

.brisa .camada { position: absolute; inset: 0; width: 100%; height: 100%; }

.brisa .folha-esq {
  transform-origin: 62% 76%;
  animation: brisa-esq 6.8s ease-in-out infinite;
}

.brisa .folha-dir {
  transform-origin: 70% 72%;
  animation: brisa-dir 5.3s ease-in-out -2.1s infinite;
}

.brisa .hastes-l {
  transform-origin: 66% 70%;
  animation: brisa-hastes 8.5s ease-in-out -1.2s infinite;
}

@keyframes brisa-esq {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.2deg); }
}

@keyframes brisa-dir {
  0%, 100% { transform: rotate(1.9deg); }
  50% { transform: rotate(-1.3deg); }
}

@keyframes brisa-hastes {
  0%, 100% { transform: rotate(0.5deg); }
  50% { transform: rotate(-0.4deg); }
}

@keyframes brisa-corpo {
  0%, 100% { transform: rotate(0.4deg); }
  50% { transform: rotate(-0.4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .brisa, .brisa .camada { animation: none; }
}

/* ---------- Seções ---------- */
section { padding: var(--s6) 0; }

section.dark { background: var(--verde-profundo); color: var(--bege); }

section.tight { padding: calc(var(--s5) + 8px) 0; }

.section-head { margin-bottom: var(--s5); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s4), 6vw, 88px);
  align-items: center;
}

.framed { position: relative; }

.framed img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* Variante para colunas de texto altas: a foto estica até a altura do texto */
.split.fill { align-items: stretch; }

.split.fill .framed { display: flex; }

.split.fill .framed img { height: 100%; aspect-ratio: auto; min-height: 360px; }

/* ---------- Cards de evento ---------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s3);
}

.event-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  display: flex;
  flex-direction: column;
}

.event-card .poster {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--verde-profundo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card .poster .placeholder {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--bege);
  text-align: center;
  padding: 0 var(--s3);
}

.event-card .body {
  padding: var(--s3) var(--s3) 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-card .date {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marrom-medio);
}

.event-card h3 { font-size: 21px; font-weight: 500; line-height: 1.3; }

.event-card .venue { font-size: 14px; color: var(--marrom-medio); }

.event-card .btn { margin-top: auto; text-align: center; padding: 15px 24px; }

.event-card .btn + .btn { margin-top: 0; }

.chip {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  align-self: flex-start;
  margin-bottom: 2px;
}

.chip.on { background: var(--verde-medio); color: var(--branco); }
.chip.soon { background: transparent; color: var(--marrom-medio); border: 1px solid var(--borda); }
.chip.off { background: var(--marrom-escuro); color: var(--bege); }

/* Em seções escuras, o card precisa se destacar do fundo */
section.dark .event-card { border-color: var(--borda-clara); }
section.dark .event-card .poster { background-color: #1A4521; }

/* ---------- Números / proof points — sem caixas, só hairline e ar ---------- */
.numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--s4) var(--s5);
  border-top: 1px solid var(--borda);
  padding-top: var(--s4);
}

section.dark .numbers { border-top-color: var(--borda-clara); }

.numbers div { font-size: 14.5px; line-height: 1.6; }

.numbers .n {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.2;
  display: block;
  margin-bottom: 8px;
}

.numbers .l {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .75;
  display: block;
}

/* ---------- Blocos de ambiente (O Complexo) ---------- */
.ambiente {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(var(--s4), 6vw, 88px);
  align-items: center;
  padding: clamp(var(--s5), 8vw, 96px) 0;
  border-top: 1px solid var(--borda);
}

.ambiente:first-child { border-top: none; }

/* Linhas pares invertem o alinhamento mantendo a proporção foto : ficha */
.ambiente:nth-child(even) { grid-template-columns: 0.95fr 1.05fr; }

.ambiente:nth-child(even) .photo { order: 2; }

.ambiente .photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Mini-galeria por ambiente: palco com setas + thumbs-capa que trocam a imagem */
.stage { position: relative; }

.stage img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

.main-ph {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--verde-profundo);
}

.main-ph span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--bege);
  text-align: center;
  padding: 0 var(--s4);
}

.gal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(10, 42, 14, 0.55);
  color: var(--bege);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease;
}

.gal-nav.prev { left: 0; }
.gal-nav.next { right: 0; }
.gal-nav:hover { background: var(--verde-medio); }

.thumbs { display: flex; gap: 10px; margin-top: 10px; }

.thumb {
  flex: 1;
  aspect-ratio: 4/3;
  border: 1px solid var(--borda);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 0;
  min-width: 0;
}

.thumb.active { outline: 2px solid var(--verde-medio); outline-offset: -2px; }

.thumb.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--verde-profundo);
  cursor: default;
}

.thumb.ph span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 11.5px;
  color: var(--bege);
  text-align: center;
  padding: 0 6px;
}

.ambiente h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0;
  margin-bottom: var(--s2);
}

.ambiente h3 em { font-style: italic; }

.ambiente p { line-height: 1.65; margin-bottom: var(--s3); max-width: 460px; }

.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-bottom: var(--s3);
}

.spec td { padding: 12px 0; border-bottom: 1px solid var(--borda); vertical-align: top; }

.spec td:first-child {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--marrom-medio);
  width: 38%;
  padding-right: var(--s2);
}

/* ---------- Cards informativos com imagem (Agenda) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--s3);
}

.info-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  display: flex;
  flex-direction: column;
}

.info-card .pic {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--verde-profundo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card .pic span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--bege);
  text-align: center;
  padding: 0 var(--s3);
}

.info-card .body {
  padding: var(--s3) var(--s3) 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.info-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.3;
}

.info-card p { font-size: 14.5px; line-height: 1.6; flex: 1; }

.info-card .btn-link { font-size: 11.5px; align-self: flex-start; }

/* ---------- Listas informativas (Agenda) ---------- */
.info-block { border-top: 1px solid var(--borda); padding: var(--s5) 0; }

.info-block:last-child { padding-bottom: 0; }

.info-block h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0;
  margin-bottom: var(--s2);
}

.info-block h3 em { font-style: italic; }

.info-block p { line-height: 1.65; max-width: 620px; margin-bottom: 12px; }

.info-block .btn-link { display: inline-block; margin-top: 6px; }

/* ---------- Persona cards ---------- */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s3); }

.persona {
  background: var(--branco);
  border: 1px solid var(--borda);
  padding: var(--s4) 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.persona h3 { font-size: 21px; font-weight: 500; line-height: 1.35; }

.persona p { font-size: 15px; line-height: 1.65; flex: 1; }

.persona .btn { align-self: flex-start; padding: 15px 28px; }

.badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--marrom-medio);
  color: var(--bege);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.badge-icon svg { width: 25px; height: 25px; }

/* ---------- Passos ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s5); }

.steps .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  color: var(--verde-medio);
  display: block;
  margin-bottom: var(--s2);
}

.steps h4 { font-size: 17px; font-weight: 500; margin-bottom: 10px; letter-spacing: 0.02em; }

.steps p { font-size: 15px; line-height: 1.65; opacity: .92; }

/* ---------- Formulário ---------- */
form.proto { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); max-width: 760px; }

form.proto .full { grid-column: 1 / -1; }

form.proto label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--marrom-medio);
}

form.proto input, form.proto select, form.proto textarea {
  width: 100%;
  padding: 15px 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  border: 1px solid var(--borda);
  background: var(--branco);
  color: var(--marrom-escuro);
}

form.proto input:focus, form.proto select:focus, form.proto textarea:focus {
  outline: none;
  border-color: var(--verde-medio);
}

/* Consentimento LGPD: checkbox + texto (registra o opt-in no RD) */
form.proto .lgpd, .newsletter-lgpd {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--marrom-medio);
  cursor: pointer;
  max-width: 620px;
}

form.proto .lgpd input[type="checkbox"], .newsletter-lgpd input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--verde-medio);
  cursor: pointer;
}

/* Formulários sobre fundo escuro: rótulos e consentimento legíveis */
section.dark form.proto label { color: rgba(255, 242, 238, 0.75); }

section.dark form.proto .lgpd { color: rgba(255, 242, 238, 0.8); }

/* ---------- Página de evento (modelo Suhai: conteúdo + box fixo) ---------- */
.event-hero {
  background: var(--verde-profundo);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38vh;
  overflow: hidden;
}

.event-hero img { width: 100%; max-height: 62vh; object-fit: cover; }

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(var(--s4), 6vw, 88px);
  align-items: start;
}

.event-body h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.18;
  margin-bottom: 10px;
}

.event-body .meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--marrom-medio);
  margin-bottom: var(--s4);
}

.event-body p { line-height: 1.7; max-width: 620px; margin-bottom: var(--s2); }

.event-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: var(--s5) 0 var(--s2);
}

.servico { list-style: none; max-width: 620px; }

.servico li {
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
  padding: 13px 0;
  border-bottom: 1px solid var(--borda);
  font-size: 15px;
}

.servico li span:first-child {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--marrom-medio);
  padding-top: 2px;
}

.servico li span:last-child { text-align: right; }

.mapa-evento {
  background: var(--branco);
  border: 1px solid var(--borda);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 620px;
}

.mapa-evento span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--marrom-medio);
}

.aside-box {
  position: sticky;
  top: 104px;
  background: var(--branco);
  border: 1px solid var(--borda);
  padding: 28px;
}

.aside-box .when {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.aside-box .where { font-size: 14px; color: var(--marrom-medio); margin-bottom: var(--s3); }

.aside-box dl { margin-bottom: var(--s3); }

.aside-box dt {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--marrom-medio);
  margin-top: 12px;
}

.aside-box dd { font-size: 14.5px; margin-top: 2px; }

.aside-box .btn { display: block; text-align: center; padding: 16px 20px; }

.aside-box .btn + .btn { margin-top: 10px; }

.aside-box .como-chegar {
  display: block;
  text-align: center;
  margin-top: var(--s2);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde-profundo);
  text-decoration: none;
  border-bottom: none;
}

.aside-box .como-chegar:hover { text-decoration: underline; }

/* ---------- Linha do tempo de premiações (Greenvalley, página Sobre) ----------
   Medalhões circulares ecoam a forma redonda do infográfico oficial.
   Desktop: faixa completa; mobile: rolagem horizontal com scroll-snap. */
.premios {
  background: var(--verde-profundo);
  color: var(--bege);
  padding: var(--s4) 0 var(--s3);
  overflow: hidden;
}

.premios-strip {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 2vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: var(--s3) 28px;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.premios-strip::-webkit-scrollbar { display: none; }

.medal {
  flex: none;
  scroll-snap-align: center;
  text-align: center;
}

/* Dois níveis apenas: o 1º lugar em destaque; todo o resto uniforme e menor */
.medal .disco {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 242, 238, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.medal .pos {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
}

.medal .ano {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  opacity: 0.65;
}

/* Anos de nº 1: medalhão maior, preenchido em bege, com estrela */
.medal.ouro .disco {
  width: 88px;
  height: 88px;
  background: var(--bege);
  border: none;
  color: var(--verde-profundo);
}

.medal.ouro .pos { font-size: 30px; }

.medal.ouro .pos::after {
  content: '★';
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 3px;
  font-style: normal;
}

.medal.ouro .ano { opacity: 1; font-weight: 500; }

.premios-fonte {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  padding: 0 28px;
}

/* ---------- FAQ (páginas de categoria) ---------- */
.faq { max-width: 720px; }

.faq details { border-top: 1px solid var(--borda); }

.faq details:last-child { border-bottom: 1px solid var(--borda); }

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 16.5px;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s3);
}

.faq summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--verde-medio); }

.faq details[open] summary::after { content: '–'; }

.faq details p { padding: 0 0 20px; line-height: 1.65; max-width: 620px; }

/* ---------- Newsletter ---------- */
.newsletter { display: flex; gap: var(--s2); max-width: 560px; margin-top: var(--s4); }

.newsletter input {
  flex: 1;
  padding: 16px;
  border: 1px solid var(--borda);
  background: var(--branco);
  color: var(--marrom-escuro);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
}

.newsletter input:focus { outline: none; border-color: var(--verde-medio); }

/* ---------- Footer ---------- */
footer.site {
  background: var(--verde-noite);
  border-top: 1px solid var(--borda-clara);
  color: var(--bege);
  padding: var(--s6) 0 var(--s4);
}

footer.site .cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: var(--s5);
  margin-bottom: var(--s5);
}

footer.site .sig {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  margin-top: var(--s3);
  max-width: 300px;
  line-height: 1.45;
}

footer.site h5 {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: var(--s3);
  color: var(--verde-medio);
}

footer.site ul { list-style: none; }

footer.site li { margin-bottom: 12px; font-size: 14px; font-weight: 300; line-height: 1.55; }

footer.site a { color: var(--bege); text-decoration: none; }
footer.site a:hover { text-decoration: underline; }

footer.site .legal {
  border-top: 1px solid var(--borda-clara);
  padding-top: var(--s3);
  font-size: 12.5px;
  opacity: .65;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  :root { --s6: 72px; --s5: 52px; }

  header.site .wrap { height: 76px; }

  header.site .header-actions { margin-left: auto; transform: translateY(3px); }

  nav.main {
    display: none;
    position: absolute;
    transform: none;
    top: 76px; left: 0; right: 0;
    background: var(--verde-noite);
    flex-direction: column;
    gap: 0;
    padding: 8px 28px 24px;
    border-top: 1px solid var(--borda-clara);
  }

  nav.main a { padding: 16px 0; font-size: 14px; border-bottom: 1px solid rgba(255,242,238,.08); width: 100%; }

  .has-sub { width: 100%; }
  .has-sub > a::after { content: ''; }
  nav.main .submenu {
    display: block;
    position: static;
    transform: none;
    margin-top: 0;
    left: auto;
    background: transparent;
    border: none;
    padding: 0 0 8px;
    min-width: 0;
  }
  nav.main .submenu::before { content: none; }
  nav.main .submenu a { width: 100%; padding: 13px 0; font-size: 13px; opacity: .85; border-bottom: none; white-space: normal; }
  nav.main .submenu a:hover { background: transparent; }

  body.nav-open nav.main { display: flex; }

  .hamburger { display: block; }

  header.site .logo-anim { height: 38px; }

  .btn-tickets { padding: 11px 16px; font-size: 11px; }

  .hero2 { grid-template-columns: 1fr; min-height: 0; }
  .hero2-media { order: -1; min-height: 46vh; }
  .hero2-panel { padding: var(--s5) 28px; }

  .split, .ambiente { grid-template-columns: 1fr; gap: var(--s4); }
  .split.fill .framed img { height: auto; aspect-ratio: 4/3; min-height: 0; }
  .ambiente:nth-child(even) .photo { order: 0; }

  footer.site .cols { grid-template-columns: 1fr; gap: var(--s4); }

  form.proto { grid-template-columns: 1fr; }

  .cta-row .btn { flex: 1 1 100%; text-align: center; }

  .newsletter { flex-direction: column; }

  .numbers { gap: var(--s3) var(--s4); }

  .event-layout { grid-template-columns: 1fr; }
  .aside-box { position: static; order: -1; }
}

/* ---------- WP compat ----------
   Ajustes mínimos para o tema de blocos; nada aqui reescreve o design. */
.wp-site-blocks { padding: 0; }
.wp-site-blocks > * + * { margin-block-start: 0; }
.wp-block-post-content > .alignfull,
.entry-content > .alignfull { margin-left: 0; margin-right: 0; width: 100%; max-width: none; }
figure.wp-block-image { margin: 0; }
h1.wp-block-post-title, h2.wp-block-post-title { font-weight: 500; }

/* WP compat: sem vão entre seções (block gap zerado; o protótipo controla o ritmo) */
:where(.wp-site-blocks) main.wp-block-group > * { margin-block-start: 0; }
