/* =========================================================
   Convide Victor Reis · Palestras, painéis e eventos
   Mesmo sistema visual da landing Governe Sua Vida Como Um Rei
   + pegada da arte do livro (textura vermelha, coroa rabiscada,
   tipografia condensada de cartaz)
   ========================================================= */

:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --bg-3: #15151a;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.14);

  --text: #f5f5f5;
  --text-2: #cfcfd4;
  --text-3: #8a8a90;

  --gold: #d4a44a;
  --gold-light: #e8c478;
  --gold-dark: #a07d2e;
  --red: #c0392b;
  --red-hover: #d04938;
  --red-dark: #8e2a20;
  --book-red: #b8231b;
  --book-red-dark: #6b110d;

  --radius: 14px;
  --radius-lg: 20px;
  --max: 1200px;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Anton", "Arial Narrow", Impact, sans-serif;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---------- Acessibilidade ---------- */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--gold); color: #000;
  padding: 12px 18px; border-radius: 8px; font-weight: 600;
  z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 12px; outline: 2px solid #fff; outline-offset: 2px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .intro { display: none !important; }
  .header { transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* ---------- Tipografia ---------- */
.tag {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08; letter-spacing: -0.01em;
  color: var(--text); text-wrap: balance;
}
.section-sub {
  color: var(--text-3); font-size: 17px;
  margin-top: 18px; max-width: 620px; text-wrap: pretty;
}
.section-head {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 40px; align-items: end;
}
.section-head .section-sub { margin-top: 0; padding-bottom: 8px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   INTRO ANIMADA
   ========================================================= */
.intro {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, #1a0a0a 0%, #0a0a0c 70%);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; cursor: pointer;
  transition: opacity 0.9s var(--easing), visibility 0.9s var(--easing);
}
.intro::after {
  content: ""; position: absolute; inset: 0;
  background: url("../img/coroa-dourada.png") center 62% / 220px no-repeat;
  opacity: 0; animation: fadeIn 1.2s 0.9s forwards;
  filter: brightness(1.1);
}
.intro-logo {
  position: absolute; top: 36px; left: 36px;
  font-family: var(--serif); font-weight: 900; font-size: 22px;
  color: rgba(255,255,255,0.4); letter-spacing: 0.04em;
  opacity: 0; animation: fadeIn 0.6s 0.1s forwards;
}
.intro-skip {
  position: absolute; top: 36px; right: 36px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-2); font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; padding: 8px 16px; border-radius: 999px; cursor: pointer;
  opacity: 0; animation: fadeIn 0.5s 0.4s forwards;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.intro-skip:hover { background: rgba(255,255,255,0.12); color: var(--text); border-color: var(--gold); }
.intro-text {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(30px, 5.5vw, 60px); text-align: center;
  letter-spacing: -0.01em; line-height: 1.15;
  opacity: 0; animation: introIn 1.2s 0.4s forwards;
  padding: 0 24px 120px; max-width: 1000px; position: relative; z-index: 2;
}
.intro.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
.intro.is-off { display: none; }
@keyframes introIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.98); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes fadeIn { to { opacity: 0.55; } }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(10,10,12,0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.6s var(--easing), background 0.3s;
}
.header.is-visible { transform: translateY(0); }
.header.is-scrolled { background: rgba(10,10,12,0.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { font-family: var(--serif); font-weight: 900; font-size: 30px; color: var(--text); line-height: 1; }
.logo-name { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; line-height: 1.15; color: var(--text-2); }
.nav { display: flex; gap: 30px; }
.nav a { font-size: 15px; color: var(--text-2); transition: color 0.2s; position: relative; white-space: nowrap; }
.nav a:hover { color: var(--text); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--easing);
}
.nav a:hover::after { transform: scaleX(1); }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; font-size: 15px; font-weight: 600;
  border-radius: 999px; cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s var(--easing);
  text-align: center; font-family: inherit;
}
.btn-primary {
  background: var(--red); color: #fff; border-color: var(--red);
  box-shadow: 0 6px 24px -8px var(--red-dark);
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 10px 28px -8px var(--red-dark); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--text-3); }
.btn-sm { padding: 12px 22px; font-size: 14px; }
.btn-full { width: 100%; padding: 18px 30px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 150px 0 110px;
  background:
    radial-gradient(ellipse at top right, rgba(192,57,43,0.22) 0%, transparent 52%),
    radial-gradient(ellipse at bottom left, rgba(212,164,74,0.08) 0%, transparent 60%),
    var(--bg);
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
/* textura vermelha da arte, esmaecida no canto superior direito */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/textura-vermelha.jpg") right top / cover no-repeat;
  opacity: 0.16; pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 900px 700px at 88% 18%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 72%);
  mask-image: radial-gradient(ellipse 900px 700px at 88% 18%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 72%);
}
.hero-crown {
  position: absolute; left: -60px; bottom: -40px;
  width: 520px; opacity: 0.07; pointer-events: none; user-select: none;
  transform: rotate(-8deg);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 64px; align-items: center; width: 100%; position: relative; z-index: 2;
}
.hero-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.02; letter-spacing: -0.02em;
  margin-bottom: 24px; text-wrap: balance;
}
.hero-sub {
  font-size: 18.5px; color: var(--text-2);
  max-width: 560px; margin-bottom: 34px;
  line-height: 1.55; text-wrap: pretty;
}
.hero-sub em { color: var(--text); font-style: italic; }
.hero-sub-2 { font-size: 16px; color: var(--text-3); margin-top: -18px; }

.hero-stats { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 170px; flex: 1;
  transition: border-color 0.3s, background 0.3s;
}
.hero-stat:hover { border-color: var(--gold); background: var(--surface-2); }
.stat-k { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.stat-v { font-family: var(--serif); font-size: 22px; font-weight: 700; line-height: 1.15; }
.stat-d { font-size: 12px; color: var(--text-3); margin-top: 2px; }

.hero-ctas { display: flex; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-3); letter-spacing: 0.04em;
}
.hero-badge::before {
  content: ""; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,164,74,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(212,164,74,0); }
}

/* HERO ART: foto sobre painel com a textura da capa */
.hero-art { position: relative; padding: 28px 34px 0 0; }
.art-backdrop {
  position: absolute; top: 0; right: 0;
  width: 78%; height: 94%;
  border-radius: 26px;
  background: url("../img/textura-vermelha.jpg") center / cover no-repeat, var(--book-red);
  transform: rotate(3deg);
  box-shadow: 0 40px 90px -30px rgba(184,35,27,0.6);
  overflow: hidden;
}
.art-backdrop::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.35) 100%);
}
.art-spine {
  position: absolute; right: 8px; top: 24px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--display); font-size: 15px; letter-spacing: 0.34em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.art-panel {
  position: relative; z-index: 2;
  width: 88%; aspect-ratio: 4 / 5;
  border-radius: 22px; overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.75);
  transition: transform 0.6s var(--easing);
}
.hero-art:hover .art-panel { transform: translateY(-4px); }
.art-panel img {
  width: 100%; height: 100%; object-fit: cover; object-position: 55% center;
}
.art-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px 22px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,12,0.85) 100%);
  display: flex; flex-direction: column; gap: 2px;
}
.art-label strong { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.art-label span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.art-link { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--gold-light); letter-spacing: 0.03em; transition: color 0.2s; }
.art-link:hover { color: #fff; }
.art-crown {
  position: absolute; z-index: 3;
  top: -22px; right: -6px; width: 170px;
  transform: rotate(6deg);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  animation: floatCrown 6s ease-in-out infinite;
}
@keyframes floatCrown {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-6px); }
}

.scroll-indicator {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3);
  animation: bounce 2.4s infinite; z-index: 2;
}
.scroll-indicator svg { color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   FAIXA (marquee) com a textura da capa
   ========================================================= */
.marquee {
  position: relative; overflow: hidden;
  background: url("../img/textura-vermelha.jpg") center / cover no-repeat, var(--book-red);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 16px 0;
}
.marquee::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.35));
}
.marquee-track {
  position: relative; display: flex; width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: flex; align-items: center; gap: 44px; padding-right: 44px;
  font-family: var(--display); font-size: 26px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; white-space: nowrap; line-height: 1;
}
.marquee-track span::after {
  content: ""; width: 38px; height: 24px; flex: none;
  background: url("../img/coroa-branca.png") center / contain no-repeat; opacity: 0.9;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SEÇÕES
   ========================================================= */
.section { padding: 110px 0; position: relative; }

/* ---------- Cartões de vídeo (usados em várias seções) ---------- */
.video-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.4s, transform 0.4s var(--easing), box-shadow 0.4s;
}
.video-card:hover {
  border-color: var(--border-2); transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.7);
}
.video-frame { position: relative; background: var(--bg-3); overflow: hidden; }
.video-frame.is-wide { aspect-ratio: 16 / 9; }
.video-frame.is-cinema { aspect-ratio: 21 / 9; }
.video-frame.is-tall { aspect-ratio: 9 / 16; }
.video-frame.is-insta { aspect-ratio: 4 / 5; background: #000; }
/* Corte do embed do Instagram: o cartão tem a proporção exata da mídia
   (4:5 vertical, 16:9 horizontal) e o iframe sobe 54px (cabeçalho fixo do
   embed), escondendo o cabeçalho e o rodapé brancos do Instagram. */
.insta-crop { position: absolute; inset: 0; overflow: hidden; background: #000; }
.video-frame .insta-crop iframe { position: absolute; top: -54px; left: 0; right: auto; bottom: auto; width: 100%; height: calc(100% + 454px); }
.video-frame iframe, .video-frame video,
.video-frame .yt-lite, .video-frame .yt-lite img,
.video-frame .video-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border: 0; display: block;
}
.video-frame video { background: #000; }
.video-poster { transition: transform 0.8s var(--easing); }
.video-card:hover .video-poster { transform: scale(1.04); }

/* Espaço reservado (até o vídeo chegar) */
.video-ph {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(180deg, rgba(10,10,12,0.12) 0%, rgba(10,10,12,0.72) 100%);
}
.video-ph.is-solo {
  background:
    radial-gradient(circle at 30% 30%, rgba(212,164,74,0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 75%, rgba(192,57,43,0.16) 0%, transparent 55%),
    linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
}
.video-ph.is-solo::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/coroa-dourada.png") center 38% / 46% no-repeat; opacity: 0.18;
}
.ph-label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; text-align: center; padding: 0 16px;
}
/* Espaço reservado explícito (sem capa e sem botão de play) */
.video-ph.is-reservado {
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  gap: 10px;
}
.video-ph.is-reservado::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px dashed rgba(212,164,74,0.35); border-radius: 14px;
}
.video-ph.is-reservado img { width: 96px; opacity: 0.55; margin-bottom: 8px; }
.video-ph.is-reservado small { font-size: 12px; color: var(--text-3); letter-spacing: 0.04em; }
.video-card-reservado { border-style: dashed; }
.video-card-reservado:hover { transform: none; box-shadow: none; }
.play-ring {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: rgba(10,10,12,0.35);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  position: relative; transition: transform 0.4s var(--easing), background 0.3s;
}
.play-ring::after {
  content: ""; position: absolute; left: 55%; top: 50%;
  transform: translate(-50%, -50%);
  border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent;
}
.video-card:hover .play-ring { transform: scale(1.08); background: rgba(192,57,43,0.6); }

/* Vídeo MP4 hospedado no site: capa + botão, controles nativos depois do play */
.mp4-wrap { position: absolute; inset: 0; background: #000; }
.mp4-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.mp4-wrap .play-btn { pointer-events: auto; }
.mp4-wrap.is-playing .play-btn { opacity: 0; pointer-events: none; }
.video-frame.has-video.is-cinema { aspect-ratio: 1600 / 680; }
.video-frame.has-video.is-tall { aspect-ratio: 9 / 16; }
.video-frame.has-video.is-cinema video, .video-frame.has-video.is-wide video { object-fit: contain; }

/* YouTube leve: carrega o player só no clique */
.yt-lite { cursor: pointer; background: #000; }
.yt-lite img { transition: transform 0.8s var(--easing); }
.yt-lite:hover img { transform: scale(1.04); }
.mp4-wrap .play-btn,
.yt-lite .play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--red); border: 0; cursor: pointer;
  box-shadow: 0 14px 34px -8px rgba(192,57,43,0.9);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--easing), background 0.3s;
}
.mp4-wrap .play-btn::after,
.yt-lite .play-btn::after {
  content: ""; margin-left: 5px;
  border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent;
}
.mp4-wrap .play-btn:hover,
.yt-lite:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--red-hover); }
.yt-lite .yt-brand {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
  background: rgba(10,10,12,0.6); padding: 6px 10px; border-radius: 999px; font-weight: 600;
}

.video-info { padding: 20px 22px 22px; }
.video-role {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.video-info h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.2; }
.video-info p { color: var(--text-3); font-size: 14px; margin-top: 8px; line-height: 1.5; }

/* ---------- Victor em ação ---------- */
.section-acao { background: var(--bg-2); }
.acao-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 56px;
}
.video-card-wide { grid-column: 1 / -1; }
.acao-verticais { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
/* Todos os verticais de "Victor em ação" na mesma proporção dos embeds (4:5) */
.acao-verticais .video-frame.is-tall,
.acao-verticais .video-frame.has-video.is-tall { aspect-ratio: 4 / 5; }
.acao-verticais .video-card { flex: 0 1 calc((100% - 44px) / 3); min-width: 0; }
.video-card-wide .video-info { display: grid; grid-template-columns: auto 1fr; gap: 6px 40px; align-items: baseline; padding: 24px 28px; }
.video-card-wide .video-role { grid-column: 1; }
.video-card-wide h3 { grid-column: 1; font-size: 26px; }
.video-card-wide p { grid-column: 2; grid-row: 1 / 3; margin: 0; align-self: center; max-width: 520px; }

/* ---------- The Noite ---------- */
.section-noite {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(192,57,43,0.14) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.section-noite::before {
  content: "THE NOITE";
  position: absolute; right: -20px; top: 30px;
  font-family: var(--display); font-size: clamp(90px, 16vw, 230px);
  line-height: 1; color: rgba(255,255,255,0.025); letter-spacing: 0.02em;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.noite-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; position: relative; }
.noite-text p { font-size: 17px; color: var(--text-2); line-height: 1.7; margin-bottom: 18px; }
.noite-text .section-title { margin-bottom: 24px; }
.noite-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 26px 0 30px;
}
.noite-facts li {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.noite-facts strong { font-family: var(--serif); font-size: 22px; color: var(--gold-light); line-height: 1.1; }
.noite-facts span { font-size: 12px; color: var(--text-3); line-height: 1.35; }
.noite-media .video-card { box-shadow: 0 40px 90px -40px rgba(192,57,43,0.55); }
.cortes-head { margin-top: 80px; padding-top: 40px; border-top: 1px solid var(--border); display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.cortes-head h3 { font-family: var(--serif); font-size: 28px; font-weight: 700; }
.cortes-head p { color: var(--text-3); font-size: 15px; }
.cortes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 30px; }

/* ---------- Sobre o Victor ---------- */
.section-autor { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.autor-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
.autor-foto {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  position: relative;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
}
.autor-foto::before {
  content: attr(data-initials);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 200px; font-weight: 900;
  color: rgba(208,73,56,0.45);
  background:
    radial-gradient(circle at 30% 30%, rgba(208,73,56,0.2) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(212,164,74,0.1) 0%, transparent 60%);
}
.autor-foto > img:first-of-type { width: 100%; height: 100%; object-fit: cover; object-position: center top; position: relative; z-index: 2; }
.autor-crown {
  position: absolute; z-index: 3; right: 16px; bottom: 16px;
  width: 120px; opacity: 0.9; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}
.autor-text p { font-size: 17px; color: var(--text-2); margin-bottom: 18px; line-height: 1.7; text-wrap: pretty; }
.autor-text em { color: var(--text); }
.autor-text .section-title { margin-bottom: 28px; }
.cred-list { display: grid; gap: 8px; margin: 6px 0 24px; }
.cred-list li {
  position: relative; padding-left: 22px; font-size: 15px; color: var(--text-2);
}
.cred-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px; border-radius: 2px;
  background: var(--gold); transform: rotate(45deg); opacity: 0.85;
}
.sobre-video { margin-top: 64px; }
.sobre-video .video-card { box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8); }
.autor-frase {
  font-family: var(--serif); font-style: italic;
  font-size: 21px !important; color: var(--text) !important;
  padding-left: 22px; border-left: 3px solid var(--gold);
  margin-top: 26px !important;
}

/* ---------- Tríade dos Reis (triângulo interativo) ---------- */
.section-triade {
  background:
    linear-gradient(180deg, rgba(10,10,12,0.90) 0%, rgba(17,17,20,0.94) 60%, var(--bg-2) 100%),
    url("../img/palco-fundo.jpg") center 30% / cover no-repeat,
    var(--bg-2);
  overflow: hidden;
}
.triade-wrap {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; margin-top: 44px; padding-top: 30px;
}
.triade-figura { position: relative; width: 100%; max-width: 560px; margin: 0 auto; aspect-ratio: 600 / 560; }
.triade-svg { width: 100%; height: 100%; display: block; overflow: visible; }
.tri-fill { fill: url(#fillGrad); }
.tri-halo { fill: none; stroke: #ff5a1f; stroke-width: 30; stroke-linejoin: round; opacity: 0.22; filter: url(#softGlow); }
.tri-edge { fill: none; stroke: url(#ledGrad); stroke-width: 6; stroke-linejoin: round; stroke-linecap: round; filter: url(#ledGlow); }
.tri-run {
  fill: none; stroke: #fff6e0; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 70 1330; opacity: 0.95; filter: url(#ledGlow);
  animation: triRun 7s linear infinite;
}
@keyframes triRun { to { stroke-dashoffset: -1400; } }
.tri-inner line { stroke: rgba(255,140,80,0.32); stroke-width: 1.5; stroke-dasharray: 3 9; }
.node-halo { fill: #ff5a1f; opacity: 0.16; filter: url(#softGlow); transition: opacity 0.4s; }
.triade-figura[data-active="reinar"] .node-reinar,
.triade-figura[data-active="ser"] .node-ser,
.triade-figura[data-active="ter"] .node-ter { opacity: 0.55; }

.tri-btn {
  position: absolute; width: 64px; height: 64px;
  transform: translate(-50%, -50%);
  background: none; border: 0; padding: 0; cursor: pointer; z-index: 3;
  font-family: inherit;
}
.tri-btn-reinar { left: 50%; top: 16.07%; }
.tri-btn-ser { left: 90%; top: 85.7%; }
.tri-btn-ter { left: 10%; top: 85.7%; }
.tri-node {
  position: absolute; inset: 8px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff6e0 0%, #ffc35c 30%, #ff5a1f 62%, #c2190f 100%);
  box-shadow: 0 0 0 5px rgba(255,110,50,0.22), 0 0 26px rgba(255,90,31,0.85), 0 0 60px rgba(227,38,27,0.55);
  transition: transform 0.35s var(--easing), box-shadow 0.35s;
  animation: nodePulse 3s ease-in-out infinite;
}
.tri-btn:hover .tri-node, .tri-btn.is-active .tri-node {
  transform: scale(1.18);
  box-shadow: 0 0 0 7px rgba(255,140,60,0.28), 0 0 40px rgba(255,120,40,1), 0 0 90px rgba(227,38,27,0.75);
}
.tri-btn:focus-visible { outline: none; }
.tri-btn:focus-visible .tri-node { box-shadow: 0 0 0 4px #fff, 0 0 40px rgba(255,120,40,1); }
@keyframes nodePulse { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.2); } }
.tri-label {
  position: absolute; left: 50%; top: calc(100% + 4px); transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; white-space: nowrap;
}
.tri-btn-reinar .tri-label { top: auto; bottom: calc(100% + 4px); }
.tri-btn-ser .tri-label { left: auto; right: 0; transform: none; align-items: flex-end; }
.tri-btn-ter .tri-label { left: 0; transform: none; align-items: flex-start; }
.tri-label strong {
  font-family: var(--display); font-size: 32px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; line-height: 1; text-shadow: 0 0 18px rgba(255,120,40,0.8); transition: color 0.3s;
}
.tri-label small { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-top: 5px; }
.tri-btn.is-active .tri-label strong { color: #ffd591; }

.triade-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,140,60,0.28); border-radius: var(--radius-lg);
  padding: 38px 36px; position: relative; overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(227,38,27,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.triade-panel::before {
  content: ""; position: absolute; top: -90px; right: -90px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,90,31,0.22) 0%, transparent 65%); pointer-events: none;
}
.triade-item { display: none; position: relative; }
.triade-item.is-active { display: block; animation: fadeUp 0.5s var(--easing); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.triade-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.triade-num { font-family: var(--display); font-size: 26px; color: #ff7a3d; letter-spacing: 0.04em; line-height: 1; }
.triade-item h3 { font-family: var(--serif); font-size: clamp(34px, 4vw, 48px); font-weight: 700; margin-bottom: 14px; line-height: 1.05; }
.triade-item p { color: var(--text-2); font-size: 16px; line-height: 1.65; margin-bottom: 12px; }
.triade-item ul { display: grid; gap: 8px; margin: 16px 0 18px; }
.triade-item li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--text-2); }
.triade-item li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%;
  background: #ff7a3d; box-shadow: 0 0 10px rgba(255,122,61,0.9);
}
.triade-frase {
  font-family: var(--serif); font-style: italic; font-size: 18px !important; color: var(--text) !important;
  border-left: 3px solid #ff7a3d; padding-left: 16px; margin: 8px 0 0 !important;
}
.triade-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); position: relative; }

/* ---------- Temas ---------- */
.section-temas { background: var(--bg-2); }
.temas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.tema-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 38px 30px;
  transition: all 0.4s var(--easing); position: relative; overflow: hidden;
}
.tema-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,164,74,0.08) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.tema-card:hover { border-color: var(--gold); background: var(--surface-2); transform: translateY(-6px); }
.tema-card:hover::before { opacity: 1; }
.tema-num {
  font-family: var(--display); font-size: 64px;
  color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 14px; position: relative;
}
.tema-card h4 { font-family: var(--serif); font-size: 30px; font-weight: 700; margin-bottom: 14px; position: relative; }
.tema-card p { color: var(--text-3); font-size: 15px; line-height: 1.65; position: relative; }

.temas-extra { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; margin-top: 24px; }
.formatos {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 30px;
}
.formatos h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.lista-temas li {
  display: flex; gap: 16px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px dashed var(--border);
  font-size: 15.5px; color: var(--text-2); line-height: 1.45;
}
.lista-temas li:last-child { border-bottom: none; }
.li-num { font-family: var(--display); font-size: 22px; color: var(--gold); opacity: 0.7; min-width: 34px; line-height: 1; }
.lista-formatos { display: grid; gap: 10px; margin-bottom: 22px; }
.lista-formatos li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(0,0,0,0.2);
}
.lista-formatos strong { font-size: 15px; font-weight: 600; }
.lista-formatos span { font-size: 13px; color: var(--text-3); }
.publicos { display: flex; flex-wrap: wrap; gap: 8px; }
.publicos span {
  font-size: 12px; letter-spacing: 0.06em; color: var(--gold-light);
  border: 1px solid rgba(212,164,74,0.35); background: rgba(212,164,74,0.07);
  padding: 7px 12px; border-radius: 999px;
}

/* ---------- Depoimentos ---------- */
.section-depoimentos { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; align-items: start; }
/* O depoimento horizontal (16:9) ocupa duas colunas ao lado do vertical */
.depo-grid .video-card:first-child { grid-column: span 2; }
/* Prints de mensagens recebidas no direct (nomes borrados) */
.prints-head { margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--border); display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.prints-head h3 { font-family: var(--serif); font-size: 28px; font-weight: 700; }
.prints-head p { color: var(--text-3); font-size: 14.5px; }
.prints-carousel { position: relative; margin-top: 30px; }
.prints-track {
  display: flex; align-items: center; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.prints-track::-webkit-scrollbar { display: none; }
.print-card {
  flex: 0 0 auto; height: 540px; margin: 0;
  scroll-snap-align: start;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-2); background: #fff;
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.6);
}
.print-card img { height: 100%; width: auto; display: block; }
.prints-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border-2);
  background: rgba(10,10,12,0.78); color: #fff;
  font-size: 28px; line-height: 1; padding: 0 0 4px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s;
}
.prints-nav:hover { background: var(--red); border-color: var(--red); }
.prints-nav-prev { left: -12px; }
.prints-nav-next { right: -12px; }
.depo-quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 22px; }
.depoimento-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px; position: relative;
  transition: border-color 0.3s, transform 0.3s var(--easing);
}
.depoimento-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.quote-mark { font-family: var(--serif); font-size: 80px; font-weight: 900; color: var(--gold); opacity: 0.5; line-height: 0.6; margin-bottom: 18px; }
.depoimento-texto { font-family: var(--serif); font-size: 21px; line-height: 1.4; margin-bottom: 22px; color: var(--text); text-wrap: balance; }
.depoimento-autor { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.depoimento-cargo { font-size: 12px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Na mídia ---------- */
.section-midia { background: var(--bg); padding-top: 90px; padding-bottom: 90px; }
.midia-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; margin-top: 44px; }
.midia-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.4s var(--easing);
}
.midia-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.midia-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); position: relative; }
.midia-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--easing); }
.midia-card:hover .midia-thumb img { transform: scale(1.05); }
.midia-thumb::after {
  content: "↗"; position: absolute; right: 12px; top: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(10,10,12,0.7); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.midia-info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; }
.midia-fonte { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.midia-info strong { font-size: 14.5px; font-weight: 600; line-height: 1.4; color: var(--text-2); }

/* ---------- Convite ---------- */
.section-convite { background: var(--bg); padding-bottom: 80px; }
.convite-grid {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 60px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 60px 56px; position: relative; overflow: hidden;
}
.convite-grid::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(212,164,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.convite-grid::after {
  content: ""; position: absolute; left: -40px; bottom: -60px;
  width: 320px; height: 200px;
  background: url("../img/coroa-dourada.png") center / contain no-repeat; opacity: 0.06;
  pointer-events: none;
}
.convite-info, .form-convite { position: relative; z-index: 2; }
.convite-intro { color: var(--text-2); font-size: 17px; margin: 22px 0 28px; line-height: 1.55; }
.convite-foto {
  margin: 0 0 24px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); position: relative;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.7);
}
.convite-foto img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 12%; }
.convite-foto figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 18px 14px; font-size: 12.5px; color: var(--text-2);
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,12,0.85) 100%);
}
.convite-foto figcaption em { color: var(--gold); font-style: italic; }
.investimento { margin-bottom: 24px; display: grid; gap: 12px; }
.investimento h3 { font-family: var(--serif); font-size: 21px; font-weight: 700; margin-bottom: 4px; }
.inv-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.inv-card strong { font-size: 15.5px; font-weight: 600; }
.inv-card p { font-size: 13.5px; color: var(--text-3); line-height: 1.55; }
.inv-tag {
  align-self: flex-start; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; padding: 5px 10px; border-radius: 999px; margin-bottom: 4px;
}
.inv-tag-gratis { color: #000; background: var(--gold); }
.inv-tag-proposta { color: var(--gold-light); border: 1px solid rgba(212,164,74,0.45); background: rgba(212,164,74,0.08); }
.inv-card p.inv-instituto { margin-top: 8px; color: var(--gold-light); }
.inv-card p.inv-instituto strong { font-weight: 700; }
.info-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.info-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
  font-size: 14px; color: var(--text-2); line-height: 1.45;
  transition: border-color 0.3s;
}
.info-card:hover { border-color: var(--gold); }
.info-icon { font-size: 18px; line-height: 1; margin-top: 2px; }
.info-card strong { color: var(--text); font-weight: 600; }

.form-convite { display: flex; flex-direction: column; gap: 18px; }
.form-legend {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.form-legend:first-child { padding-top: 0; border-top: none; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-3); font-weight: 600;
}
.form-row label .opt { text-transform: none; letter-spacing: 0.02em; font-weight: 400; }
.form-row input, .form-row select, .form-row textarea {
  background: var(--bg); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 15px 18px;
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-row textarea { min-height: 96px; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-3); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold); background: var(--bg-2);
  box-shadow: 0 0 0 3px rgba(212,164,74,0.12);
}
.form-row input.invalid, .form-row select.invalid, .form-row textarea.invalid { border-color: rgba(255,107,90,0.65); }
.form-row-double { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-disclaimer { font-size: 12.5px; color: var(--text-3); text-align: center; margin-top: 8px; line-height: 1.5; }
.form-error { display: none; color: #ff8c7a; font-size: 14px; text-align: center; }

.ja-enviado {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--gold); border-radius: var(--radius-lg);
  padding: 60px 40px; text-align: center; max-width: 560px; margin: 0 auto;
}
.ja-enviado-icon {
  width: 72px; height: 72px; margin: 0 auto 24px;
  background: var(--gold); color: #000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; font-weight: 700;
  box-shadow: 0 10px 30px -10px rgba(212,164,74,0.5);
}
.ja-enviado h2 { font-family: var(--serif); font-size: 36px; font-weight: 700; margin-bottom: 14px; }
.ja-enviado p { color: var(--text-2); font-size: 16px; margin-bottom: 24px; line-height: 1.6; }

/* ---------- Redes sociais ---------- */
.section-redes {
  background: url("../img/textura-vermelha.jpg") center / cover no-repeat, var(--book-red);
  padding: 100px 0; overflow: hidden;
}
.section-redes::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.35) 50%, rgba(10,10,12,0.7) 100%);
}
.redes-inner { position: relative; text-align: center; max-width: 900px; }
.redes-inner .tag { color: var(--gold-light); }
.redes-crown { width: 150px; margin: 0 auto 10px; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5)); }
.redes-sub { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 560px; margin: 18px auto 40px; line-height: 1.6; }
.redes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rede {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: rgba(10,10,12,0.55); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius); padding: 16px 18px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s var(--easing), border-color 0.3s, background 0.3s;
}
.rede:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(10,10,12,0.75); }
.rede svg { width: 26px; height: 26px; color: var(--gold-light); flex: none; }
.rede span { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.rede strong { font-size: 15px; font-weight: 600; }
.rede small { font-size: 12.5px; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Footer ---------- */
.footer { background: #000; padding: 44px 0 28px; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center;
  font-size: 13.5px; color: var(--text-3); line-height: 1.7;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.footer-col strong { color: var(--text); font-weight: 600; }
.footer-col em { color: var(--gold); font-style: italic; }
.footer-col a { color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-center { text-align: center; }
.footer-mark { display: block; font-family: var(--serif); font-weight: 900; font-size: 28px; color: var(--text); line-height: 1; margin-bottom: 6px; }
.footer-right { text-align: right; }
.footer-bottom { padding-top: 20px; font-size: 12px; color: var(--text-3); text-align: center; letter-spacing: 0.04em; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  background: var(--bg-2); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 18px 22px; max-width: 360px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.6);
  font-size: 14px; color: var(--text-2);
  animation: slideUp 0.4s var(--easing);
}
.toast strong { color: var(--gold); display: block; margin-bottom: 4px; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ---------- Voltar ao topo ---------- */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border-2); color: var(--gold);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ---------- Sticky CTA mobile ---------- */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,12,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.4s var(--easing);
}
.sticky-mobile-cta.is-visible { transform: translateY(0); }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1100px) {
  .nav { gap: 22px; }
  .nav a { font-size: 14px; }
  .midia-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-art { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-crown { width: 320px; }
  .section-head { grid-template-columns: 1fr; gap: 0; }
  .section-head .section-sub { margin-top: 18px; padding-bottom: 0; }
  .acao-grid, .cortes-grid, .depo-grid, .temas-grid { grid-template-columns: 1fr 1fr; }
  .acao-verticais .video-card { flex-basis: calc((100% - 22px) / 2); }
  .triade-wrap { grid-template-columns: 1fr; gap: 40px; }
  .triade-figura { max-width: 480px; }
  .tri-label strong { font-size: 26px; }
  .video-card-wide .video-info { grid-template-columns: 1fr; }
  .video-card-wide p { grid-column: 1; grid-row: auto; }
  .noite-grid, .autor-grid, .convite-grid, .temas-extra, .depo-quotes { grid-template-columns: 1fr; gap: 44px; }
  .temas-extra, .depo-quotes { gap: 22px; }
  .nav { display: none; }
  .header .btn-sm { padding: 10px 18px; font-size: 13px; }
  .section { padding: 70px 0; }
  .convite-grid { padding: 36px 24px; }
  .form-row-double { grid-template-columns: 1fr; }
  .redes-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-right { text-align: center; }
  .scroll-indicator { display: none; }
  .sticky-mobile-cta { display: block; }
  .to-top { bottom: 90px; right: 16px; }
  .toast { right: 16px; left: 16px; bottom: 90px; max-width: none; }
  .footer { padding-bottom: 90px; }
  .section-noite::before { font-size: 90px; top: 10px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-stats { flex-direction: column; }
  .hero-stat { min-width: 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .acao-grid, .cortes-grid, .depo-grid, .temas-grid, .midia-grid, .redes-grid { grid-template-columns: 1fr; }
  .depo-grid .video-card:first-child { grid-column: auto; }
  .acao-verticais .video-card { flex-basis: 100%; }
  .print-card { height: 440px; }
  .triade-figura { max-width: 100%; }
  .tri-btn { width: 54px; height: 54px; }
  .tri-label strong { font-size: 22px; }
  .tri-label small { font-size: 10px; }
  .triade-panel { padding: 26px 20px; }
  .triade-ctas .btn { width: 100%; }
  .video-frame.is-cinema { aspect-ratio: 16 / 10; }
  .video-frame.is-tall { aspect-ratio: 4 / 5; }
  .video-frame.is-tall .video-poster { object-position: center 30%; }
  .video-frame.has-video.is-cinema { aspect-ratio: 16 / 9; }
  .video-frame.has-video.is-tall { aspect-ratio: 9 / 16; }
  .noite-facts { grid-template-columns: 1fr; }
  .art-crown { width: 130px; top: -16px; }
  .marquee-track span { font-size: 20px; }
  .intro-skip { top: 16px; right: 16px; padding: 6px 12px; font-size: 12px; }
  .intro-logo { top: 16px; left: 16px; font-size: 18px; }
  .ja-enviado { padding: 40px 24px; }
  .ja-enviado h2 { font-size: 28px; }
  .formatos { padding: 26px 22px; }
}
