/* =========================================================
   ACADEMIA ORIGINAL — style.css
   Preto profundo + amarelo como faca. Editorial, atlético.
   ========================================================= */

:root {
  --ink: #0a0a0a;
  --ink-2: #111111;
  --ink-3: #1a1a1a;
  --paper: #f2efe8;
  --paper-2: #e7e2d8;
  --mute: rgba(242, 239, 232, 0.55);
  --mute-2: rgba(242, 239, 232, 0.28);
  --line: rgba(242, 239, 232, 0.14);
  --yellow: #ffcc00;
  --yellow-ink: #0a0a0a;

  --font-display: "Big Shoulders Display", "Archivo Narrow", Impact, sans-serif;
  --font-sans: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  --gutter: clamp(20px, 4vw, 64px);
  --col-gap: clamp(16px, 2vw, 32px);
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
  font-family: "Formation Sans";
  src: url("../assets/fonts/formation-sans.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
:root { --font-brand: "Formation Sans", "Big Shoulders Display", sans-serif; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, figure, address { margin: 0; }
address { font-style: normal; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--yellow); color: var(--ink); }

@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ---------- Type ---------- */
.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.4;
}
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--yellow);
}
.h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h1 .serif { font-size: 1.08em; }
.h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.8vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
  max-width: 18ch;
}
.h2 .serif { font-size: 1.08em; }
.lead {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  color: var(--paper-2);
  max-width: 44ch;
}
.link {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--ease), color 0.3s;
}
.link:hover { background-size: 0% 1px; color: var(--yellow); }
.link--dark:hover { color: var(--ink); background-size: 0% 1px; }

/* Split lines (JS wraps each line in .line > .line__inner) */
.split-lines .line { display: block; overflow: hidden; }
.split-lines .line__inner { display: block; transform: translateY(110%); will-change: transform; }
.split-lines.is-ready .line__inner { transition: none; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn > span { position: relative; z-index: 1; }
.btn > small { position: relative; z-index: 1; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
  z-index: 0;
}
.btn:hover::before { transform: translateY(0); }
.btn--primary { background: var(--yellow); color: var(--ink); }
.btn--primary::before { background: var(--paper); }
.btn--ghost { border: 1px solid var(--line); color: var(--paper); }
.btn--ghost::before { background: var(--paper); }
.btn--ghost:hover { color: var(--ink); border-color: var(--paper); }
.btn--ghost.btn--light { border-color: rgba(242,239,232,0.35); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark::before { background: var(--paper); }
.btn--dark:hover { color: var(--ink); }
.btn--pill { background: var(--paper); color: var(--ink); padding: 0.7rem 1.1rem; font-size: 0.85rem; }
.btn--pill::before { background: var(--yellow); }

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 60;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(3) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 1%); }
  66% { transform: translate(1%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Preloader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  color: var(--paper);
  pointer-events: none;
}
.loader__panel {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.loader__panel--b { background: var(--yellow); transform: translateY(100%); }
.loader__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: var(--gutter);
  display: grid;
  grid-template-rows: 1fr auto auto;
}
.loader__figure {
  position: absolute;
  left: var(--gutter);
  bottom: calc(var(--gutter) + 22vh);
  width: clamp(80px, 12vw, 160px);
  aspect-ratio: 1062 / 1072;
  background: var(--yellow);
  -webkit-mask: url("../assets/logo-brand.png") no-repeat left center / 339% auto;
  mask: url("../assets/logo-brand.png") no-repeat left center / 339% auto;
  opacity: 0;
}
.loader__count {
  align-self: end;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(6rem, 22vw, 20rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.loader__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mute);
  padding: 1.5rem 0 0.75rem;
}
.loader__bar { height: 1px; background: var(--line); position: relative; }
.loader__bar i { position: absolute; inset: 0; background: var(--yellow); transform-origin: left; transform: scaleX(0); }
.loader.is-done { display: none; }

/* ---------- Cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 90; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot {
  position: absolute; top: 0; left: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
}
.cursor__ring {
  position: absolute; top: 0; left: 0;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255, 204, 0, 0.7);
  transform: translate(-50%, -50%) scale(1);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s, border-color 0.35s;
  display: grid; place-items: center;
}
.cursor__label {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); opacity: 0; transition: opacity 0.2s;
}
.cursor.is-hover .cursor__ring { width: 56px; height: 56px; background: rgba(255,204,0,0.12); }
.cursor.is-label .cursor__ring { width: 84px; height: 84px; background: var(--yellow); border-color: var(--yellow); }
.cursor.is-label .cursor__label { opacity: 1; }
.cursor.is-label .cursor__dot { opacity: 0; }
.cursor.is-hidden { opacity: 0; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem var(--gutter);
  padding-top: calc(1.1rem + env(safe-area-inset-top, 0px));
  transition: transform 0.6s var(--ease), color 0.4s;
  color: var(--paper);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav.is-light { color: var(--ink); }
.nav__logo { display: block; width: clamp(130px, 11vw, 170px); aspect-ratio: 3603 / 1072; }
.logo-img { display: block; width: 100%; height: 100%; object-fit: contain; }
.logo-mask {
  display: none; width: 100%; height: 100%;
  background: currentColor;
  -webkit-mask: url("../assets/logo-brand.png") no-repeat center / contain;
  mask: url("../assets/logo-brand.png") no-repeat center / contain;
}
.nav.is-light .logo-img { display: none; }
.nav.is-light .logo-mask { display: block; }
.nav__links { display: flex; gap: 1.75rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.nav__links a { position: relative; padding: 0.25rem 0; opacity: 0.75; transition: opacity 0.3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform 0.45s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; justify-content: flex-end; align-items: center; gap: 1.25rem; }
.nav__aluno { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.nav__aluno:hover { opacity: 1; }
.nav.is-light .btn--pill { background: var(--ink); color: var(--paper); }
.nav__burger { position: relative; width: 40px; height: 40px; display: none; }
.nav__burger i { position: absolute; left: 8px; right: 8px; height: 1.5px; background: currentColor; transition: transform 0.5s var(--ease), top 0.5s var(--ease); }
.nav__burger i:nth-child(1) { top: 15px; }
.nav__burger i:nth-child(2) { top: 23px; }
.nav__burger.is-open i:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open i:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* ---------- Menu overlay ---------- */
.menu { position: fixed; inset: 0; z-index: 75; visibility: hidden; pointer-events: none; }
.menu.is-open { visibility: visible; pointer-events: auto; }
.menu__bg { position: absolute; inset: 0; background: var(--ink-2); transform: translateY(-100%); }
.menu__inner {
  position: relative; height: 100%;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--col-gap);
  padding: calc(6rem + env(safe-area-inset-top, 0px)) var(--gutter) var(--gutter);
  overflow-y: auto;
}
.menu__list li { border-top: 1px solid var(--line); overflow: hidden; }
.menu__list li:last-child { border-bottom: 1px solid var(--line); }
.menu__list a {
  display: flex; align-items: baseline; gap: 1.25rem;
  padding: 0.55rem 0;
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 7.5rem); line-height: 0.95; letter-spacing: -0.01em;
  transform: translateY(110%);
  transition: color 0.3s;
}
.menu__list a em { font-family: var(--font-mono); font-style: normal; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--mute); }
.menu__list a:hover { color: var(--yellow); }
.menu__list a:hover span { padding-left: 0.2em; transition: padding 0.5s var(--ease); }
.menu__aside { display: flex; flex-direction: column; justify-content: flex-end; gap: 2.5rem; opacity: 0; }
.menu__big { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 3rem); margin-top: 0.4rem; }
.menu__big:hover { color: var(--yellow); }
.menu__small { display: block; color: var(--paper-2); margin-top: 0.3rem; }
.menu__social { display: flex; gap: 1.5rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.menu__social a:hover { color: var(--yellow); }

/* ---------- Layout helpers ---------- */
.section { padding: clamp(6rem, 12vw, 12rem) var(--gutter); }
.section__head { margin-bottom: clamp(3rem, 6vw, 6rem); }
.section__head .label { margin-bottom: 1.25rem; }
.section__head--split { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--col-gap); align-items: end; }
.section__head--split .lead { justify-self: end; }

/* Media + placeholder */
.media { position: relative; overflow: hidden; background: var(--ink-3); }
.media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72) contrast(1.06) brightness(0.9); transition: filter 0.8s var(--ease), transform 0.8s var(--ease); }
.media:hover img { filter: saturate(1) contrast(1.02) brightness(0.98); }
.media.is-empty img { display: none; }
.media.is-empty::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255,204,0,0.05), transparent 40%),
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(242,239,232,0.035) 22px 23px),
    radial-gradient(120% 90% at 20% 0%, #232323, #101010 65%);
}
.media.is-empty::after {
  content: "foto → " attr(data-file);
  position: absolute; left: 1rem; top: 1rem;
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute); padding: 0.45rem 0.6rem; border: 1px dashed var(--mute-2);
}
.media[data-reveal] { clip-path: inset(0 0 100% 0); }
.media[data-reveal] img { transform: scale(1.18); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(6.5rem + env(safe-area-inset-top, 0px)) var(--gutter) 0;
  display: flex; flex-direction: column;
}
.hero__top { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: clamp(1.5rem, 3vw, 3rem); }
.hero__top .label:nth-child(2) { display: none; }
/* Faixa de vídeo */
.hero__film { position: relative; width: 100%; }
.hero__film-inner { position: relative; width: 100%; aspect-ratio: 1000 / 380; overflow: hidden; background: var(--ink-3); }
.hero__film-media { position: absolute; inset: 0; }
.hero__film-media img, .hero__film-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; filter: saturate(0.6) brightness(0.58) contrast(1.1); }
.hero__film-media video { opacity: 0; transition: opacity 1s; }
.hero__film-media.has-video video { opacity: 1; }
.hero__film-media.is-empty img { display: none; }
.hero__film-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.55), rgba(10,10,10,0) 40%); }
.hero__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(96px, 9vw, 132px); aspect-ratio: 1; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 3; transition: transform 0.5s var(--ease), background 0.3s;
}
.hero__play i { width: 0; height: 0; border-left: 14px solid var(--ink); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-bottom: 0.35rem; margin-left: 3px; }
.hero__play em { font-style: normal; opacity: 0.7; }
.hero__play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--paper); }
.hero__film-caps { position: absolute; left: 1.25rem; bottom: 1.25rem; z-index: 3; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__film-caps .label { color: var(--paper); background: rgba(10,10,10,0.72); padding: 0.45rem 0.65rem; }
.hero__film-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(242,239,232,0.18); z-index: 3; }
.hero__film-bar i { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--yellow); }

/* Modal do filme */
.film { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: var(--gutter); visibility: hidden; opacity: 0; transition: opacity 0.5s, visibility 0s 0.5s; }
.film.is-open { visibility: visible; opacity: 1; transition: opacity 0.5s; }
.film__bg { position: absolute; inset: 0; background: rgba(10,10,10,0.94); }
.film__close { position: absolute; top: calc(1.25rem + env(safe-area-inset-top, 0px)); right: var(--gutter); width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); z-index: 2; }
.film__close i { position: absolute; left: 14px; right: 14px; top: 50%; height: 1.5px; background: var(--paper); }
.film__close i:first-child { transform: rotate(45deg); } .film__close i:last-child { transform: rotate(-45deg); }
.film__close:hover { background: var(--yellow); border-color: var(--yellow); } .film__close:hover i { background: var(--ink); }
.film__frame { position: relative; width: min(100%, 1200px); aspect-ratio: 16 / 9; background: #000; transform: scale(0.96); transition: transform 0.6s var(--ease); }
.film.is-open .film__frame { transform: scale(1); }
.film__frame iframe, .film__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.film__soon { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 1.5rem; padding: clamp(1.5rem, 5vw, 4rem); background: var(--ink-2); }
.film__soon-title { font-size: clamp(1.8rem, 4vw, 3.6rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
.film.has-source .film__soon { display: none; }

.wordmark__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 268px;
  fill: var(--paper);
  letter-spacing: 0;
}
.wordmark__text--outline { fill: none; stroke: var(--line); stroke-width: 1.2; }
/* rodapé: a fonte do logo (Formation Sans), em contorno fino, ecoa a marca */
.wordmark__text--outline { font-family: var(--font-brand); font-weight: 400; font-size: 196px; }
.hero__knife {
  position: absolute; top: 0; left: 0; height: 100%; width: 2px; z-index: 4;
  background: var(--yellow);
  transform: translateX(0);
  opacity: 0;
  box-shadow: 0 0 24px rgba(255,204,0,0.6);
}
.hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--col-gap);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 4rem);
  flex: 1;
}
.hero__copy { padding-right: clamp(0px, 4vw, 4rem); }
.hero__aside { display: flex; flex-direction: column; gap: 1.75rem; padding-top: 0.5rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__media {
  grid-column: 2;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  justify-self: end;
  margin-top: 2rem;
}
.hero__media figcaption { position: absolute; left: 1rem; bottom: 1rem; color: var(--paper); background: rgba(10,10,10,0.72); padding: 0.4rem 0.6rem; z-index: 2; }
.address__media figcaption { background: rgba(10,10,10,0.72); padding: 0.4rem 0.6rem; }
.hero__media.is-empty figcaption { display: none; }

.marquee { margin: clamp(2.5rem, 5vw, 5rem) calc(-1 * var(--gutter)) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee__track {
  display: flex; align-items: center; gap: 2.5rem; width: max-content;
  padding: 0.9rem 0;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute);
  animation: marquee 38s linear infinite;
}
.marquee__track i { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Manifesto ---------- */
.manifesto { position: relative; }
.manifesto__pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--gutter);
  gap: 2rem;
}
.manifesto__text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 24ch;
  text-wrap: balance;
}
.manifesto__text .w { display: inline-block; opacity: 0.14; transition: none; }
.manifesto__text .serif .w { color: var(--yellow); }
.manifesto__foot { margin-top: 1rem; }

/* ---------- Estrutura ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
}
.bento__item { position: relative; }
.bento__item--big { grid-column: span 7; grid-row: span 2; min-height: 100%; }
.bento__item:not(.bento__item--big):not(.bento__item--sm) { grid-column: span 5; aspect-ratio: 4 / 3; }
.bento__item--sm { grid-column: span 4; aspect-ratio: 4 / 3; }
.partners { margin-top: clamp(4rem, 8vw, 8rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.partners__head { display: grid; grid-template-columns: 1fr 2fr; gap: var(--col-gap); align-items: start; margin-bottom: 2rem; }
.partners__head .lead { max-width: 52ch; }
.partners__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--col-gap); }
.partners__list li { aspect-ratio: 4 / 3; }
.partners__list li img { filter: saturate(0.4) contrast(1.05) brightness(0.8); }
.partners__list li:hover img { filter: saturate(0.9) contrast(1.02) brightness(0.95); }
.partners__list li > span { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; display: flex; flex-direction: column; gap: 0.2rem; }
.partners__list li em { font-family: var(--font-mono); font-style: normal; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.partners__list li strong { font-weight: 500; font-size: 1rem; }
.bento__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.25rem;
  display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 1rem; align-items: baseline;
  background: linear-gradient(to top, rgba(10,10,10,0.85), rgba(10,10,10,0));
}
.bento__item figcaption em { font-family: var(--font-mono); font-style: normal; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--yellow); grid-row: span 2; }
.bento__item figcaption strong { font-weight: 500; font-size: 1.1rem; letter-spacing: -0.01em; }
.bento__item figcaption span { grid-column: 2; color: var(--mute); font-size: 0.9rem; line-height: 1.45; }

/* ---------- Modalidades ---------- */
.modlist { border-top: 1px solid var(--line); }
.modlist__row {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1.1fr 8.5rem 1.4fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.35s, padding 0.5s var(--ease);
}
.modlist__row::before {
  content: ""; position: absolute; inset: 0; background: var(--paper);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s var(--ease); z-index: -1;
}
.modlist__row em { font-family: var(--font-mono); font-style: normal; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--mute); }
.modlist__row h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1; letter-spacing: 0.005em; }
.modlist__tag { justify-self: start; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.6rem; border: 1px solid var(--line); border-radius: 999px; color: var(--mute); }
.modlist__row p { color: var(--mute); font-size: 0.95rem; }
@media (hover: hover) {
  .modlist__row:hover { color: var(--ink); padding-left: 1rem; padding-right: 1rem; }
  .modlist__row:hover::before { transform: scaleY(1); transform-origin: top; }
  .modlist__row:hover em, .modlist__row:hover p { color: rgba(10,10,10,0.6); }
  .modlist__row:hover .modlist__tag { border-color: rgba(10,10,10,0.3); color: var(--ink); }
}
.modlist__float {
  position: fixed; top: 0; left: 0; z-index: 40;
  width: clamp(240px, 26vw, 400px); aspect-ratio: 4 / 3;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-3deg) scale(0.9);
  transition: opacity 0.35s, transform 0.5s var(--ease);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  display: none;
}
@media (hover: hover) and (pointer: fine) { .modlist__float { display: block; } }
.modlist__float.is-on { opacity: 1; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
.modlist__float img { filter: saturate(0.8) contrast(1.06); }
.modlist__float-label { position: absolute; left: 0.75rem; bottom: 0.75rem; z-index: 2; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: var(--yellow); padding: 0.3rem 0.5rem; }

/* ---------- CT ---------- */
.ct { position: relative; height: 100svh; }
.ct__pin { position: relative; height: 100svh; overflow: hidden; }
.ct__media { position: absolute; inset: 0; }
.ct__media img { opacity: 0.62; }
.ct__shade { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.6) 100%); z-index: 1; pointer-events: none; }
.ct__letters {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  display: flex; gap: 0.02em;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(14rem, 44vw, 56rem); line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,239,232,0.22);
  z-index: 2; pointer-events: none;
  user-select: none;
}
.ct__letters span:last-child { color: var(--yellow); -webkit-text-stroke: 0; opacity: 0.9; mix-blend-mode: screen; }
.ct__content {
  position: relative; z-index: 3;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex; flex-direction: column; justify-content: center; gap: 1.75rem;
  max-width: 60ch;
}
.ct__content .h2 { max-width: 16ch; }
.ct__stats { display: grid; grid-template-columns: repeat(4, auto); gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); width: fit-content; }
.ct__stats strong { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1; letter-spacing: 0.01em; }
.ct__stats span { display: block; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); margin-top: 0.4rem; }
.ct__content .btn { align-self: flex-start; }

/* ---------- Numbers ---------- */
.numbers { padding-top: clamp(4rem, 8vw, 8rem); padding-bottom: clamp(4rem, 8vw, 8rem); }
.numbers__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--col-gap); border-top: 1px solid var(--line); }
.numbers__list li { padding: 2rem 0 0; }
.numbers__list strong {
  display: block;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3.4rem, 7.4vw, 8.5rem); line-height: 0.85; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.numbers__list strong small { font-size: 0.5em; font-weight: 700; letter-spacing: 0.02em; margin-left: 0.08em; }
.numbers__list span { display: block; margin-top: 0.75rem; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.numbers__list li:nth-child(3) strong { color: var(--yellow); }

/* ---------- Oferta (única seção amarela) ---------- */
.oferta { background: var(--yellow); color: var(--yellow-ink); padding: clamp(5rem, 10vw, 10rem) var(--gutter); }
.oferta .label { color: rgba(10,10,10,0.55); }
.oferta__row { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem 3rem; margin-top: 1.5rem; }
.oferta__pre { font-family: var(--font-sans); font-weight: 500; font-size: clamp(1.6rem, 3.2vw, 3.2rem); letter-spacing: -0.03em; line-height: 1; }
.oferta__price { display: flex; align-items: baseline; gap: 0.15em; line-height: 0.8; }
.oferta__price small { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 5vw, 5rem); }
.oferta__num {
  display: inline-block;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(7rem, 24vw, 26rem);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 0.8;
}
.oferta__num .d { display: inline-block; }
.oferta__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 2rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(10,10,10,0.25); }
.oferta__note { font-size: 1rem; max-width: 40ch; }
.oferta__note code { font-family: var(--font-mono); font-size: 0.85em; background: var(--ink); color: var(--yellow); padding: 0.2em 0.5em; border-radius: 4px; }
.oferta__ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.oferta ::selection { background: var(--ink); color: var(--yellow); }

/* ---------- Planos ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: var(--col-gap); align-items: stretch; }
.plan { position: relative; padding: clamp(1.5rem, 3vw, 2.75rem); border: 1px solid var(--line); background: var(--ink-2); display: flex; flex-direction: column; gap: 1.25rem; }
.plan--vip { border-color: var(--yellow); }
.plan__badge { position: absolute; top: 0; right: clamp(1.5rem, 3vw, 2.75rem); transform: translateY(-50%); background: var(--yellow); color: var(--ink); padding: 0.55rem 0.9rem; display: flex; flex-direction: column; line-height: 1.2; }
.plan__badge span { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.02em; }
.plan__badge em { font-family: var(--font-mono); font-style: normal; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }
.plan__head h3 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 0.95; margin-top: 0.5rem; }
.plan__price { font-family: var(--font-display); font-weight: 900; font-size: clamp(4rem, 7vw, 6.5rem); line-height: 0.85; letter-spacing: -0.01em; display: flex; align-items: baseline; gap: 0.1em; }
.plan__price small { font-size: 0.4em; font-weight: 700; }
.plan__price span { font-size: 0.55em; }
.plan__price em { font-family: var(--font-mono); font-style: normal; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); margin-left: 0.4rem; }
.plan--vip .plan__price { color: var(--yellow); }
.plan__alt { margin-top: -0.5rem; }
.plan .btn { align-self: flex-start; }
.plan__list { margin-top: 0.75rem; border-top: 1px solid var(--line); }
.plan__list li { position: relative; padding: 0.7rem 0 0.7rem 1.6rem; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--paper-2); }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.plan__list li.plan__all { padding-left: 0; color: var(--mute); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.plan__list li.plan__all::before { display: none; }
.plan__list li.plan__plus { color: var(--paper); font-weight: 500; }
.plan__media { flex: 1; min-height: 200px; margin-top: 0.5rem; }
.plan__media figcaption { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; color: var(--paper); background: rgba(10,10,10,0.72); padding: 0.4rem 0.6rem; }
.plans__foot { margin-top: 2rem; max-width: 70ch; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(3rem, 6vw, 8rem); align-items: start; }
.faq__head { position: sticky; top: 7rem; display: flex; flex-direction: column; gap: 1.25rem; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.35rem 0; font-size: clamp(1.05rem, 1.4vw, 1.3rem); font-weight: 500; letter-spacing: -0.01em; transition: color 0.3s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--yellow); }
.faq__item summary i { position: relative; flex: none; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; transition: transform 0.5s var(--ease), background 0.3s, border-color 0.3s; }
.faq__item summary i::before, .faq__item summary i::after { content: ""; position: absolute; left: 50%; top: 50%; background: currentColor; transform: translate(-50%, -50%); }
.faq__item summary i::before { width: 10px; height: 1.5px; }
.faq__item summary i::after { width: 1.5px; height: 10px; transition: transform 0.4s var(--ease); }
.faq__item[open] summary i { transform: rotate(45deg); background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.faq__body { overflow: hidden; }
.faq__body p { padding: 0 0 1.5rem; max-width: 56ch; color: var(--paper-2); line-height: 1.55; }

/* ---------- Info ---------- */
.info { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(3rem, 6vw, 8rem); }
.info__col > .label { margin-bottom: 1.5rem; }
.status { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mute-2); }
.status.is-open .status__dot { background: #6ee76e; box-shadow: 0 0 0 4px rgba(110,231,110,0.18); }
.status.is-closed .status__dot { background: #ff5a4e; box-shadow: 0 0 0 4px rgba(255,90,78,0.18); }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: 1.1rem 0; border-top: 1px solid var(--line); text-align: left; vertical-align: baseline; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 1px solid var(--line); }
.hours th { font-weight: 500; }
.hours td { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; letter-spacing: 0.02em; text-align: right; font-variant-numeric: tabular-nums; }
.info__note { margin-top: 1.5rem; }
.address__big { font-family: var(--font-sans); font-weight: 500; font-size: clamp(1.8rem, 3.4vw, 3.4rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.address__big .serif { font-size: 1.05em; }
.address p { color: var(--paper-2); }
.address__links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.address__media { aspect-ratio: 16 / 10; margin-top: 2.5rem; }
.address__media figcaption { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; color: var(--paper); }
.address__media.is-empty figcaption { display: none; }

/* ---------- Footer ---------- */
.footer { padding: clamp(4rem, 8vw, 8rem) var(--gutter) 2rem; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--col-gap); }
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col .label { margin-bottom: 0.6rem; }
.footer__col > a:not(.btn) { width: fit-content; color: var(--paper-2); transition: color 0.3s; }
.footer__col > a:not(.btn):hover { color: var(--yellow); }
.footer__col--cta { align-items: flex-start; }
.footer__wordmark { margin: clamp(4rem, 8vw, 8rem) 0 2rem; line-height: 0; }
.footer__wordmark svg { width: 100%; height: auto; display: block; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); padding-top: 1.5rem; border-top: 1px solid var(--line); }
.footer__bottom a:hover { color: var(--yellow); }

/* ---------- WhatsApp pill ---------- */
.wa {
  position: fixed; right: var(--gutter); bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px)); z-index: 70;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1rem; border-radius: 999px;
  background: var(--ink-2); color: var(--paper); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  transform: translateY(150%); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s, background 0.3s, color 0.3s;
}
.wa.is-on { transform: none; opacity: 1; }
.wa:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { grid-template-columns: auto 1fr; }
  .nav__links, .nav__aluno { display: none; }
  .nav__burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { grid-column: 1; justify-self: start; width: min(100%, 360px); }
  .section__head--split { grid-template-columns: 1fr; }
  .section__head--split .lead { justify-self: start; }
  .bento .bento__item, .bento .bento__item:not(.bento__item--big):not(.bento__item--sm) { grid-column: span 12; }
  .bento .bento__item--big { grid-row: span 1; aspect-ratio: 4 / 3; }
  .partners__head { grid-template-columns: 1fr; }
  .partners__list { grid-template-columns: repeat(2, 1fr); }
  .menu__inner { grid-template-columns: 1fr; }
  .menu__aside { gap: 1.5rem; padding-top: 2rem; }
  .ct__stats { grid-template-columns: repeat(2, auto); }
  .ct__letters { font-size: clamp(10rem, 60vw, 30rem); right: auto; left: var(--gutter); top: auto; bottom: -0.1em; transform: none; }
  .numbers__list { grid-template-columns: repeat(2, 1fr); }
  .info { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding-top: calc(5.5rem + env(safe-area-inset-top, 0px)); }
  .hero__top .label:nth-child(1) { display: none; }
  .hero__top .label:nth-child(2) { display: block; }
  .hero__film-inner { aspect-ratio: 4 / 3; }
  .hero__film-caps .label:last-child { display: none; }
  .modlist__row { grid-template-columns: 2.5rem 1fr auto; row-gap: 0.4rem; padding: 1.1rem 0; }
  .modlist__row p { grid-column: 2 / -1; }
  .modlist__row h3 { font-size: 1.6rem; }
  .ct__stats { gap: 1.25rem; }
  .oferta__row { flex-direction: column; align-items: flex-start; }
  .oferta__num { font-size: clamp(6rem, 30vw, 12rem); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .partners__list { grid-template-columns: 1fr; }
  .wa span { display: none; }
  .wa { padding: 0.8rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .loader { display: none; }
  .cursor { display: none !important; }
  .split-lines .line__inner { transform: none !important; }
  .reveal-fade { opacity: 1 !important; transform: none !important; }
  .media[data-reveal] { clip-path: none; }
  .media[data-reveal] img { transform: none; }
  .manifesto__text .w { opacity: 1; }
  .marquee__track { animation: none; }
  .wa { transform: none; opacity: 1; }
}
