/* ══════════════════════════════════════════════════════════════
   BRAIN WEEK 2027 — Porto Alegre, a Capital do Cérebro
   Design editorial — Brain Week 2027
   Identidade: navy #242a5a (KV) · roxo #392562 · verde #008f7a
               lilás #cca5ce · coral #ef4b6b (campanha)
   ══════════════════════════════════════════════════════════════ */

:root {
  --roxo: #392562;
  --roxo-2: #4b3180;
  --roxo-deep: #2a1a4d;
  --navy: #242a5a;        /* tom exato da arte 2027 */
  --navy-deep: #1b1f45;
  --coral: #ef4b6b;
  --rosa: #ff5f7e;
  --teal: #008f7a;
  --verde: #008f7a;
  --lilas: #cca5ce;
  --holo-a: #5eead4;
  --holo-b: #cca5ce;
  --holo-c: #ff8fa8;
  --ink: #3a3357;
  --grey: #6b6584;
  --grey-2: #9a94ae;
  --line: rgba(36, 42, 90, .14);
  --line-light: rgba(255, 255, 255, .14);
  --bg-soft: #f5f3fb;
  --bg-soft-2: #faf8fe;
  --grad: linear-gradient(90deg, #008f7a 0%, #6f42c1 50%, #008f7a 100%);
  --grad-holo: linear-gradient(92deg, #5eead4 0%, #cca5ce 45%, #ff8fa8 100%);
  --ff-title: 'Inter', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
  --header-h: 112px;
  --ease: cubic-bezier(.22, .68, .32, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

section { scroll-margin-top: calc(var(--header-h) + 6px); }

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 22px;
}

::selection { background: var(--lilas); color: var(--navy); }

/* ══ Tipografia editorial ══ */
.sec-label {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--ff-title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 26px;
}
.sec-label .idx {
  font-size: 12px;
  color: var(--grey-2);
  letter-spacing: .1em;
}
.sec-label::after {
  content: '';
  align-self: center;
  width: 54px;
  height: 1.5px;
  background: currentColor;
  opacity: .5;
}
.sec-label.on-dark { color: var(--rosa); }
.sec-label.on-dark .idx { color: rgba(255, 255, 255, .45); }

.sec-title {
  font-family: var(--ff-title);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(38px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 22px;
}
.sec-title.sm { font-size: clamp(32px, 4.4vw, 62px); }
.sec-desc {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--grey);
  max-width: 640px;
}

/* reveal por palavra (máscara editorial) — aplicado via JS */
.lw { display: inline-block; overflow: hidden; vertical-align: bottom; }
.lwi {
  display: inline-block;
  transform: translateY(115%);
  transition: transform .9s var(--ease);
  transition-delay: calc(var(--i, 0) * .045s);
  will-change: transform;
}
.lines-in .lwi { transform: translateY(0); }

/* gradientes de destaque */
.grad-text {
  background-image: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 6s linear infinite;
}
.grad-holo {
  background-image: var(--grad-holo);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 7s linear infinite;
}
@keyframes gradShift { to { background-position: 200% center; } }

/* ── elemento de marcação: marca-texto que "pinta" ao entrar ── */
.mark {
  background-image: linear-gradient(100deg, rgba(204, 165, 206, .55), rgba(94, 234, 212, .45));
  background-repeat: no-repeat;
  background-size: 0% 42%;
  background-position: 0 78%;
  transition: background-size .9s var(--ease) .25s;
  border-radius: 3px;
  padding: 0 .08em;
}
.in-view .mark, .mark.in-view { background-size: 100% 42%; }

/* ── elemento de marcação: círculo desenhado à mão ── */
.circled { position: relative; display: inline-block; white-space: nowrap; }
.circled svg {
  position: absolute;
  inset: -18% -9%;
  width: 118%;
  height: 136%;
  overflow: visible;
  pointer-events: none;
}
.circled svg path {
  fill: none;
  stroke: var(--rosa);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.in-view .circled svg path, .circled.in-view svg path {
  animation: drawCircle 1.2s var(--ease) .35s forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }

/* ══ Botões (cores da logo) ══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 18px 34px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  white-space: nowrap;
  will-change: transform;
}
.btn svg { transition: transform .25s ease; flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-roxo { background: var(--roxo); color: #fff; }
.btn-roxo:hover { background: var(--verde); color: #fff; box-shadow: 0 12px 34px rgba(0, 143, 122, .35); }

.btn-verde { background: var(--verde); color: #fff; }
.btn-verde:hover { background: #fff; color: var(--roxo); }

.btn-ghost { background: transparent; color: var(--roxo); border-color: rgba(57, 37, 98, .35); }
.btn-ghost:hover { border-color: var(--roxo); background: var(--roxo); color: #fff; }

.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); }

/* ══ Barra de progresso ══ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--holo-a), var(--holo-b), var(--holo-c));
  z-index: 1002;
}

/* ══ Header — cartão branco flutuante (estilo 2026) ══ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-top: 22px;
  transition: transform .4s var(--ease);
}
.header.is-hidden { transform: translateY(-115%); }
.header > .container { max-width: 1560px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 59px 2px rgba(0, 0, 0, .07);
  padding: 24px 22px 24px 34px;
  transition: box-shadow .35s ease;
}
.header.is-scrolled .header-inner {
  box-shadow: 0 12px 40px rgba(36, 42, 90, .16);
}
.header-logo { display: inline-flex; }
.header-logo img { height: 48px; width: auto; }

.header-nav { display: none; flex: 1; justify-content: center; }
.header-nav ul { display: flex; gap: clamp(18px, 2.6vw, 44px); }
.header-nav a {
  font-family: var(--ff-title);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--roxo);
  position: relative;
  padding: 8px 0;
  transition: color .25s ease;
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.header-nav a:hover { color: var(--verde); }
.header-nav a:hover::after, .header-nav a.active::after { transform: scaleX(1); }
.header-nav a.active { color: var(--verde); }


.header-cta { display: none; }
.header-right { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color .25s ease, background .25s ease;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.menu-toggle:hover { border-color: var(--coral); }
body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile fullscreen */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 30px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--ff-title);
  font-size: clamp(30px, 7.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  padding: 7px 0;
  transform: translateY(28px);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .55s ease, color .25s ease;
}
.mobile-nav a .n {
  font-size: 13px;
  font-weight: 700;
  color: var(--rosa);
  letter-spacing: .1em;
}
body.nav-open .mobile-nav a { transform: translateY(0); opacity: 1; }
.mobile-nav li:nth-child(1) a { transition-delay: .06s; }
.mobile-nav li:nth-child(2) a { transition-delay: .12s; }
.mobile-nav li:nth-child(3) a { transition-delay: .18s; }
.mobile-nav li:nth-child(4) a { transition-delay: .24s; }
.mobile-nav li:nth-child(5) a { transition-delay: .3s; }
.mobile-nav li:nth-child(6) a { transition-delay: .36s; }
.mobile-nav li:nth-child(7) a { transition-delay: .42s; }
.mobile-nav a:hover { color: var(--lilas); }
.mobile-nav-footer {
  margin-top: 44px;
  color: rgba(255,255,255,.5);
  font-family: var(--ff-title);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 52px) 0 60px;
  background: #3b006a;
  color: #fff;
  overflow: hidden;
}
.hero .container { width: 100%; }
.hero .container { position: relative; z-index: 2; }
.hero-content {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.hero-lockup { margin-bottom: 28px; }
.hero-lock1 {
  display: inline-block;
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(20px, 3.2vw, 34px);
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
  color: var(--rosa);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(255, 95, 126, .85);
}
.hero-lock2 {
  display: block;
  font-family: var(--ff-title);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(12px, 1.5vw, 16px);
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 8px;
}
.hero-lock3 {
  display: block;
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(80px, 14vw, 160px);
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--rosa);
  text-shadow: 0 6px 60px rgba(239, 75, 107, .3);
}

.hero-bwlogo {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto;
  overflow: visible;
}
/* ── entrada animada do logo, por partes ── */
.hero-bwlogo .lg-swirl {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: lgSpin 1.15s cubic-bezier(.22, .68, .32, 1) .3s both;
}
@keyframes lgSpin {
  from { opacity: 0; transform: rotate(-200deg) scale(.15); }
  55%  { opacity: 1; }
  75%  { transform: rotate(10deg) scale(1.05); }
  to   { opacity: 1; transform: rotate(0) scale(1); }
}
.hero-bwlogo .lg-b,
.hero-bwlogo .lg-w {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: lgPop .65s cubic-bezier(.22, .68, .32, 1) both;
}
.hero-bwlogo .lg-b { animation-delay: .85s; }
.hero-bwlogo .lg-w { animation-delay: 1s; }
@keyframes lgPop {
  from { opacity: 0; transform: translateY(30px) scale(.8); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.03); }
  to   { opacity: 1; transform: none; }
}
.hero-bwlogo .lg-wm {
  transform-box: fill-box;
  animation: lgUp .55s cubic-bezier(.22, .68, .32, 1) both;
  animation-delay: calc(1.2s + var(--i, 0) * .06s);
}
@keyframes lgUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero-title .grad-holo { display: block; }
.hero-title {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.14;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(16px, 1.9vw, 21px);
  color: rgba(255, 255, 255, .82);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-sub strong { color: #fff; }

.hero-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 36px;
}
.hero-date-num {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1;
  letter-spacing: -.01em;
  color: #fff;
}
.hero-date-loc {
  font-family: var(--ff-title);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(11px, 1.3vw, 14px);
  letter-spacing: .32em;
  text-indent: .32em;
  text-transform: uppercase;
  color: var(--rosa);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 30px; }
.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-title);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
}
.hero-note svg { color: var(--holo-a); flex-shrink: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hero-left { animation: fadeUp .9s var(--ease) .05s both; }
.hero-right > * { animation: fadeUp .9s var(--ease) both; }
.hero-right > :nth-child(1) { animation-delay: .16s; }
.hero-right > :nth-child(2) { animation-delay: .28s; }
.hero-right > :nth-child(3) { animation-delay: .4s; }
.hero-right > :nth-child(4) { animation-delay: .52s; }
.hero-right > :nth-child(5) { animation-delay: .62s; }

/* arte da campanha como marca d'água atrás do conteúdo */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .5;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(36, 42, 90, .92) 0%,
    rgba(36, 42, 90, .55) 45%,
    rgba(36, 42, 90, .35) 75%,
    rgba(36, 42, 90, .8) 100%);
}

/* ══ Letreiro rosa da campanha ══ */
.marquee {
  background: linear-gradient(90deg, #ef4b6b 0%, #f2688c 55%, #ef4b6b 100%);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeMove 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-family: var(--ff-title);
  font-size: clamp(19px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  white-space: nowrap;
}
.marquee-item .alt { color: #fff; }
.marquee-item svg { width: 32px; height: 32px; flex-shrink: 0; }

/* ══ EDITAL — destaque editorial em navy ══ */
.edital {
  position: relative;
  padding: 130px 0 120px;
  background:
    radial-gradient(1000px 575px at 100% 3%, rgb(240 100 136 / 65%), transparent 60%),
    radial-gradient(800px 560px at 6% 95%, rgba(111, 66, 193, .3), transparent 60%),
    #4c3073;
  color: #fff;
  overflow: hidden;
}
/* marca d'água com a arte fundo-bw */
.edital::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/home/fundo-bw.png') center / cover no-repeat;
  opacity: .12;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.edital .container { position: relative; }
.edital-head { max-width: 1000px; margin-bottom: 70px; }
.edital-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--coral);
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 30px;
  box-shadow: 0 0 0 0 rgba(239, 75, 107, .5);
  animation: soonPulse 2.4s ease-out infinite;
}
@keyframes soonPulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 75, 107, .45); }
  70% { box-shadow: 0 0 0 16px rgba(239, 75, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 75, 107, 0); }
}
.edital-title {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(38px, 6.6vw, 96px);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 26px;
  color: #fff;
}
.edital-title .hl { color: var(--holo-c); }
.edital-desc {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255, 255, 255, .78);
  max-width: 700px;
  margin-bottom: 40px;
}
.edital-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* cronograma como linhas editoriais numeradas */
.edital-crono-title {
  font-family: var(--ff-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 18px;
}
.edital-steps { border-top: 1px solid var(--line-light); }
.edital-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 28px;
  align-items: baseline;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line-light);
  transition: background .3s ease, padding .3s ease;
  position: relative;
}
.edital-step-prazo {
  grid-column: 2;
  font-family: var(--ff-title);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .68);
}
.edital-step:hover { background: rgba(255, 255, 255, .045); padding-left: 18px; }
.edital-step-num {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, .55);
  letter-spacing: -.02em;
  min-width: 74px;
}
.edital-step:hover .edital-step-num {
  color: var(--rosa);
  -webkit-text-stroke: 0;
}
.edital-step h4 {
  font-family: var(--ff-title);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -.02em;
}

/* ══ SOBRE ══ */
.sobre { padding: 130px 0; background: #fff; position: relative; overflow: hidden; }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}
.sobre-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(36, 42, 90, .22);
}
.carousel-track {
  position: relative;
  aspect-ratio: 4/3.4;
}
.carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.carousel-track img.is-active {
  opacity: 1;
  animation: kenburns 6s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease, background .25s ease, transform .25s ease;
}
.sobre-media:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: var(--verde); color: #fff; }
.carousel-arrow.prev { left: 14px; }
.carousel-arrow.next { right: 14px; }
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.carousel-dots button {
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .55);
  transition: background .25s ease, width .25s ease;
}
.carousel-dots button.active { background: #fff; width: 26px; }
@media (pointer: coarse) {
  .carousel-arrow { opacity: 1; }
}
.sobre-media-chip {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--ff-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 9px 16px;
  border-radius: 999px;
}
.sobre-body p { color: var(--grey); font-size: 17px; margin-bottom: 16px; }
.sobre-body p strong { color: var(--roxo); }
.sobre-list { margin: 28px 0 36px; }
.sobre-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--ff-title);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.sobre-list li:first-child { border-top: 1px solid var(--line); }
.sobre-list svg { flex-shrink: 0; margin-top: 3px; color: var(--verde); }

/* ══ LEGADO 2026 — números editoriais gigantes ══ */
.legado {
  padding: 130px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.legado-head { max-width: 900px; margin-bottom: 70px; }
/* faixa compacta de números do legado */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  border-block: 1.5px solid rgba(36, 42, 90, .22);
  margin-bottom: 36px;
}
/* mobile: cada número é uma linha editorial (número à esquerda, legenda à direita) */
.stat {
  position: relative;
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
  align-items: center;
  gap: 4px 20px;
  text-align: left;
  padding: 20px 4px;
}
.stat:not(:last-child) { border-bottom: 1px solid rgba(36, 42, 90, .16); }
.stat-num {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num .suf { font-size: .5em; color: var(--coral); font-weight: 800; }
/* barrinha coral que se desenha sob o número (só no desktop) */
.stat-bar {
  display: none;
  width: 38px;
  height: 3px;
  border-radius: 3px;
  margin: 12px auto 10px;
  background: linear-gradient(90deg, var(--coral), var(--holo-c));
  transform: scaleX(0);
  transition: transform .7s var(--ease) .3s;
}
.stat.in-view .stat-bar { transform: scaleX(1); }
.stat-label {
  font-family: var(--ff-title);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  line-height: 1.45;
  max-width: 240px;
  margin: 0;
}
.stat:hover .stat-num { color: var(--roxo); }
.legado-note {
  font-size: 17px;
  color: var(--grey);
  margin-top: 34px;
}
.legado-note strong { color: var(--roxo); }

/* ══ PAINÉIS — cards que empilham no scroll ══ */
.paineis {
  position: relative;
  padding: 130px 0 120px;
  background: #3b006a;
  color: #fff;
}
.paineis .container { position: relative; }
.paineis-head { max-width: 900px; margin-bottom: 70px; }
.paineis .sec-title { color: #fff; }
.paineis .sec-desc { color: rgba(255,255,255,.7); }

.stack { display: grid; gap: 22px; }
.spanel {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(74vh, 640px);
  box-shadow: 0 -18px 60px rgba(22, 0, 44, .5);
}
.spanel-body {
  padding: clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* cards em família cromática com o fundo roxo #3b006a */
.spanel-1 { background: linear-gradient(140deg, #56239a 0%, #47107e 100%); }
.spanel-2 { background: linear-gradient(140deg, #ef4b6b 0%, #c2325f 100%); }
.spanel-3 { background: linear-gradient(140deg, #0e8a72 0%, #076853 100%); }
.spanel-num {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .2em;
  color: var(--rosa);
  margin-bottom: 18px;
  display: block;
}
.spanel-2 .spanel-num { color: #ffd9e2; }
.spanel-3 .spanel-num { color: #b9f2e4; }
.spanel h3 {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.spanel p { color: rgba(255, 255, 255, .78); font-size: clamp(15px, 1.5vw, 18px); max-width: 560px; }
.spanel-media { position: relative; min-height: 240px; overflow: hidden; }
.spanel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.spanel:hover .spanel-media img { transform: scale(1.06); }
.spanel-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.18), transparent 40%);
  pointer-events: none;
}

/* ══ EMBAIXADORES ══ */
.embaixadores { padding: 130px 0 80px; background: #fff; position: relative; overflow: hidden; }
.emb-head { position: relative; max-width: 900px; margin-bottom: 64px; }
.emb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.emb-card { position: relative; will-change: transform; }
.emb-thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-soft);
}
.emb-thumb img {
  width: 100%;
  aspect-ratio: 3/3.4;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .8s ease;
}
.emb-card:hover .emb-thumb img { transform: scale(1.07); }
.emb-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 52%, rgba(36, 42, 90, .62));
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.emb-card:hover .emb-thumb::after { opacity: 1; }
.emb-play {
  position: absolute;
  right: 12px; bottom: 12px;
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(36, 42, 90, .9);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform .25s ease, background .25s ease;
}
.emb-play:hover { transform: scale(1.12); background: var(--coral); }
.emb-play svg { margin-left: 3px; }
.emb-info { padding: 16px 4px 0; }
.emb-info h3 {
  font-family: var(--ff-title);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy);
}
.emb-info span {
  display: block;
  font-size: 13.5px;
  color: var(--grey);
  margin-top: 4px;
  line-height: 1.45;
}

/* Idealizadores — menores */
.idealizadores { padding: 20px 0 120px; background: #fff; }
.ide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 460px;
}
.ide-grid .emb-thumb img { aspect-ratio: 3/3.2; }
.ide-grid .emb-info h3 { font-size: 16px; }
.ide-grid .emb-info span { font-size: 12.5px; }

/* ══ NA MÍDIA ══ */
.midia { padding: 130px 0; background: var(--bg-soft-2); }
.midia-head { max-width: 900px; margin-bottom: 60px; }
.midia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.midia-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1.5px solid rgba(36, 42, 90, .1);
  border-radius: 18px;
  padding: 22px;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.midia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(36, 42, 90, .12);
  border-color: var(--navy);
}
.midia-logo {
  width: 68px; height: 68px;
  border-radius: 12px;
  border: 1px solid #ececf4;
  object-fit: contain;
  padding: 8px;
  background: #fafafd;
  flex-shrink: 0;
  filter: grayscale(100%);
  transition: filter .25s ease;
}
.midia-card:hover .midia-logo { filter: grayscale(0); }
.midia-card h4 {
  font-family: var(--ff-title);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--navy);
  transition: color .25s ease;
}
.midia-card:hover h4 { color: var(--roxo); }
.midia-link {
  font-family: var(--ff-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.midia-link svg { transition: transform .25s ease; }
.midia-card:hover .midia-link svg { transform: translateX(4px); }
.midia-card.is-extra { display: none; }
.midia.expanded .midia-card.is-extra { display: flex; }
.midia-more { text-align: center; margin-top: 36px; }

/* ══ APOIE ══ */
.apoie { padding: 130px 0; background: #fff; }
.apoie-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
.apoie p { color: var(--grey); font-size: 17px; max-width: 560px; margin-bottom: 30px; }

/* ══ NOS VEMOS EM BREVE — fecho da campanha ══ */
.breve {
  position: relative;
  padding: 150px 0 160px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.breve::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% 115%, rgba(239, 75, 107, .25), transparent 65%),
    radial-gradient(600px 380px at 12% 0%, rgba(0, 143, 122, .18), transparent 60%);
  pointer-events: none;
}
.breve .container { position: relative; }
.breve-kicker {
  display: block;
  font-family: var(--ff-title);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(12px, 1.5vw, 16px);
  letter-spacing: .24em;
  text-indent: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}
.breve-title {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(44px, 8.4vw, 120px);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 40px;
}
.breve-title .em { color: var(--rosa); }
.breve-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ══ INSTITUCIONAL — estrutura de logos igual à de 2026 ══ */
.instit { padding: 100px 0; background: #fff; }
.instit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 40px 0;
  text-align: center;
}
.instit-item span {
  display: block;
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 30px;
}
.instit-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 160px;
  border: 1px solid rgba(36, 42, 90, .18);
  margin-right: -1px;   /* bordas coladas, como em 2026 */
  margin-top: -1px;
  transition: border-color .3s ease;
}
.instit-item a:hover { position: relative; z-index: 1; }
.instit-item a:hover { border-color: var(--verde); }
.instit-item img {
  max-width: 150px;
  max-height: 96px;
  width: auto;
  height: auto;
}
.instit-note {
  margin-top: 60px;
  text-align: center;
  font-family: var(--ff-title);
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-2);
}
@media (max-width: 574.98px) {
  .instit-grid { gap: 30px 0; }
  .instit-item a { width: 150px; height: 110px; }
  .instit-item img { max-width: 100px; max-height: 70px; }
  .instit-item span { font-size: 15px; margin-bottom: 16px; }
}

/* ══ FOOTER ══ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.62);
  padding: 80px 0 30px;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 54px;
}
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .92; margin-bottom: 18px; }
.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 22px;
}
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-title);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 11px 20px;
  transition: background .25s ease, border-color .25s ease;
}
.footer-insta:hover { background: var(--verde); border-color: var(--verde); }
.footer-col h5 {
  font-family: var(--ff-title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--ff-title);
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: color .2s ease, padding-left .25s var(--ease);
  word-break: break-word;
}
.footer-col a:hover { color: var(--holo-a); padding-left: 6px; }
.footer-date {
  font-family: var(--ff-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.footer-date strong {
  font-size: 40px;
  font-weight: 800;
  color: var(--rosa);
  letter-spacing: -.02em;
}
.footer-place {
  font-family: var(--ff-title);
  font-style: italic;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}
.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0 8px;
  font-size: 13px;
}
.footer-crm { color: rgba(255,255,255,.4); }
/* assinatura vazada — dimensionada para caber na tela */
.footer-big {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(30px, 7.6vw, 128px);
  line-height: 1;
  letter-spacing: -.02em;
  text-align: center;
  white-space: nowrap;
  color: #ffffff0a;
  user-select: none;
  margin-top: 34px;
  transition: color .8s ease;
}
.footer-big:hover { color: rgba(255, 95, 126, .3); }

/* ══ Modais ══ */
.bw-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 22, 52, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bw-modal.is-open { display: flex; }
.bw-modal-box {
  background: #fff;
  border-radius: 22px;
  max-width: 700px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
  padding: 44px 38px 36px;
  position: relative;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
  animation: modalIn .4s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bw-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: #f0eefa;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .25s ease;
}
.bw-modal-close:hover { background: #e2def4; transform: rotate(90deg); }
.bw-modal-content h3 {
  font-family: var(--ff-title);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 14px;
}
.bw-modal-content > p { color: var(--grey); font-size: 15.5px; margin-bottom: 24px; }
body.bw-modal-open { overflow: hidden; }

.press-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.press-card {
  background: var(--bg-soft-2);
  border: 1px solid #e8e4f4;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.press-name { font-family: var(--ff-title); font-size: 17px; font-weight: 700; color: var(--navy); }
.press-role {
  font-size: 13px;
  color: #6b6480;
  margin: 2px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e4f4;
}
.press-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.press-info a { font-size: 14px; color: var(--ink); word-break: break-word; transition: color .2s ease; }
.press-info a:hover { color: var(--coral); }
.press-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.press-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--ff-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.press-btn-call { background: var(--navy); color: #fff; }
.press-btn-call:hover { background: var(--roxo); transform: translateY(-1px); }
.press-btn-mail { background: #fff; color: var(--navy); border: 1px solid var(--navy); }
.press-btn-mail:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

.bw-modal.video .bw-modal-box {
  background: #000;
  padding: 0;
  max-width: 880px;
  border-radius: 18px;
  overflow: hidden;
}
.bw-modal.video .bw-modal-close {
  z-index: 3;
  background: rgba(255,255,255,.18);
  color: #fff;
}
.bw-modal.video video { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #000; }

/* ══ Reveal on scroll ══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.from-left { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.zoom { transform: scale(.94); }
.reveal.in-view { opacity: 1; transform: none; }

/* back to top */
.backtop {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(36, 42, 90, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .3s ease;
}
.backtop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.backtop:hover { background: var(--coral); }

/* ══ Acessibilidade ══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .lwi { opacity: 1; transform: none; }
}

/* ══════════════ BREAKPOINTS ══════════════ */
@media (min-width: 576px) {
  .emb-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .midia-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .container { padding: 18px 43px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat {
    display: block;
    text-align: center;
    padding: 34px 16px 30px;
  }
  .stat:not(:last-child) { border-bottom: 0; }
  .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 22%;
    height: 56%;
    width: 1px;
    background: rgba(36, 42, 90, .16);
  }
  .stat-bar { display: block; }
  .stat-label { margin: 0 auto; max-width: 200px; }
  .sobre-grid { grid-template-columns: .95fr 1.05fr; gap: 64px; }
  .spanel { grid-template-columns: 1.05fr .95fr; }
  .apoie-grid { grid-template-columns: 1.2fr .8fr; }
  .apoie-grid .apoie-cta { text-align: right; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 30px; }
  .footer-bar { flex-direction: row; align-items: center; }
  .press-list { grid-template-columns: 1fr 1fr; }
  .edital-step { grid-template-columns: 90px 1fr auto; }
  .edital-step-prazo { grid-column: auto; text-align: right; }
}

@media (min-width: 992px) {
  .hero-content { grid-template-columns: 1.05fr .95fr; gap: 64px; text-align: left; }
  .hero-right .hero-sub { margin-left: 0; margin-right: 0; }
  .hero-right .hero-date { align-items: flex-start; }
  .hero-right .hero-ctas { justify-content: flex-start; }
  .hero-right .hero-note { justify-content: flex-start; }
  .header-nav { display: flex; }
  .header-cta {
    display: inline-flex;
    padding: 17px 34px;
    font-size: 13px;
    letter-spacing: .04em;
    border-radius: 999px;
    background: #fff;
    color: var(--roxo);
    border: 1.5px solid var(--verde);
  }
  .header-cta:hover { background: var(--verde); color: #fff; box-shadow: none; }
  .menu-toggle { display: none; }
  .emb-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  /* escalonamento alternado, como no site 2026 */
  .emb-grid .emb-card:nth-child(even) { margin-top: 70px; }
  .emb-grid { padding-bottom: 70px; }
}

@media (min-width: 1200px) {
  .emb-info h3 { font-size: 18px; }
}

@media (max-width: 575.98px) {
  :root { --header-h: 118px; }
  .hero { padding-top: calc(var(--header-h) + 48px); }
  .hero-ctas .btn, .edital-ctas .btn, .breve-ctas .btn { width: 100%; }
  .btn { padding: 16px 26px; }
  .midia-card { align-items: flex-start; }
  .midia-logo { width: 54px; height: 54px; }
  .bw-modal-box { padding: 34px 22px 26px; }
  .ide-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-label { text-align: left; }
  .spanel { min-height: auto; }
  .spanel-media { min-height: 210px; }
  .footer-big { font-size: 10.4vw; }
}
