/* ============================================================
   TALMIDIM · APRESENTAÇÃO — Estilos por slide
   ============================================================ */

/* ============ HELPERS GLOBAIS ============ */
.slide.is-light { color: var(--neutral-900); }

.bg-night     { background: var(--grad-night); }
.bg-dusk      { background: var(--grad-dusk); }
.bg-portal    { background: var(--grad-portal); }
.bg-sunrise   { background: var(--grad-sunrise); }
.bg-flame     { background: var(--grad-flame); }
.bg-ink       { background: var(--ink); }
.bg-blue-deep { background: var(--blue-900); }
.bg-paper     { background: var(--paper); color: var(--neutral-900); }
.bg-cream     { background: var(--cream); color: var(--neutral-900); }
.bg-orange    { background: var(--orange-500); color: var(--white); }
.bg-white-pure{ background: var(--white); color: var(--neutral-900); }

.kicker {
  font-family: var(--font-mono-geo);
  font-size: 16px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange-400);
}
.kicker.dark { color: var(--orange-600); }

.eyebrow {
  font-family: var(--font-mono-geo);
  font-size: 14px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.serif-quote {
  font-family: var(--font-serif-display);
  font-style: italic;
  letter-spacing: -0.005em;
  line-height: 1.18;
}

.body-text {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.is-light .body-text { color: var(--neutral-700); }

.gradient-text-orange {
  background: linear-gradient(135deg, #FFB37A, #F97316, #EA580C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider-thin {
  width: 80px;
  height: 2px;
  background: var(--orange-500);
  border: 0;
}

/* ============ DECORAÇÕES GLOBAIS ============ */
.deco-corners::before, .deco-corners::after,
.deco-corners > .corner-tr, .deco-corners > .corner-bl {
  content: ''; position: absolute; width: 60px; height: 60px;
  border-color: rgba(255,255,255,0.18); border-style: solid;
}
.deco-corners::before  { top: 60px;    left: 60px;    border-width: 1px 0 0 1px; }
.deco-corners::after   { bottom: 60px; right: 60px;   border-width: 0 1px 1px 0; }
.deco-corners .corner-tr { top: 60px;    right: 60px; border-width: 1px 1px 0 0; }
.deco-corners .corner-bl { bottom: 60px; left: 60px;  border-width: 0 0 1px 1px; }

.is-light .deco-corners::before,
.is-light .deco-corners::after,
.is-light .deco-corners .corner-tr,
.is-light .deco-corners .corner-bl { border-color: rgba(11, 22, 64, 0.15); }

.slide-frame {
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  pointer-events: none;
}

/* ============ RING / BLOB DECORATIONS ============ */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  pointer-events: none;
}

/* ===========================================================
   S01 · COVER (suspense — sem nome)
   =========================================================== */
.s01 .cover-wrap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.s01 .cover-glyph {
  width: 280px; height: 280px;
  margin-bottom: 80px;
  position: relative;
}
.s01 .cover-glyph svg { width: 100%; height: 100%; overflow: visible; }
.s01 .cover-eyebrow { margin-bottom: 24px; opacity: 0; animation: staggerIn 0.9s 1.4s forwards; }
.s01 .cover-title {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 106px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 1300px;
  line-height: 1.05;
  opacity: 0;
}
.is-active .s01 .cover-title { animation: staggerIn 1.2s 2s forwards; }
.s01 .cover-sub {
  margin-top: 40px;
  font-family: var(--font-mono-geo);
  font-size: 15px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  opacity: 0;
}
.is-active .s01 .cover-sub { animation: staggerIn 1.2s 3.5s forwards; }

.s01 .deco-blob.b1 { width: 700px; height: 700px; background: var(--orange-500); top: -200px; right: -150px; opacity: 0.25; }
.s01 .deco-blob.b2 { width: 600px; height: 600px; background: var(--blue-500); bottom: -200px; left: -180px; opacity: 0.30; }

/* ===========================================================
   S02 · OBJETIVO
   =========================================================== */
.s02 .container { padding: 130px 130px; height: 100%; display: flex; flex-direction: column; }
.s02 .lead {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 110px;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--white);
  margin: 30px 0 70px;
  max-width: 1500px;
}
.s02 .lead em { font-style: italic; font-family: var(--font-serif-display); font-weight: 400; color: var(--orange-400); }
.s02 .grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  flex: 1;
}
.s02 .obj-card {
  padding: 32px 36px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  display: flex; gap: 22px; align-items: flex-start;
}
.s02 .obj-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--orange-400);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  width: 80px;
}
.s02 .obj-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.s02 .obj-body p {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}

/* ===========================================================
   S03 · LÍDERES
   =========================================================== */
.s03 .container { padding: 110px 100px; height: 100%; display: flex; flex-direction: column; }
.s03 .heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; }
.s03 .heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 100px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.s03 .heading p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  text-align: right;
  line-height: 1.4;
}
.s03 .leaders { display: flex; gap: 72px; justify-content: center; flex: 1; align-items: center; }
.s03 .leader { display: flex; flex-direction: column; align-items: center; text-align: center; }
.s03 .portrait-wrap {
  position: relative;
  width: 360px; height: 360px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 36px;
}
.s03 .ring-outer, .s03 .ring-inner {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.s03 .ring-outer {
  inset: 0;
  border: 2px dashed var(--orange-500);
  border-image: none;
}
.s03 .ring-inner {
  inset: 30px;
  border: 1px solid var(--blue-300);
  opacity: 0.8;
}
.s03 .ring-orange-arc {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--orange-500);
  border-right-color: var(--orange-500);
}
.s03 .ring-blue-arc {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: var(--blue-400);
  border-left-color: var(--blue-400);
}
.s03 .portrait {
  position: relative;
  width: 280px; height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.s03 .portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Tratamento "Talmidim Signature" — duotone azul-escuro+laranja */
  filter:
    grayscale(0.35)
    contrast(1.08)
    brightness(0.92)
    sepia(0.18)
    hue-rotate(-15deg);
}
.s03 .portrait::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.28) 0%, transparent 45%),
    linear-gradient(315deg, rgba(29, 78, 216, 0.30) 0%, transparent 50%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.s03 .leader-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.s03 .leader-bio {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
}

/* ===========================================================
   S04 · VERSÍCULO JOÃO 13:35
   =========================================================== */
.s04 .verse-stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 200px;
}
.s04 .verse-icon-quote {
  font-family: var(--font-serif-display);
  font-size: 254px;
  line-height: 0.5;
  color: var(--orange-500);
  opacity: 0.35;
  margin-bottom: 20px;
}
.s04 .verse-text {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 90px;
  line-height: 1.18;
  color: var(--white);
  max-width: 1500px;
  letter-spacing: -0.01em;
}
.s04 .verse-text > span { display: inline-block; margin-right: 0.25em; }
.s04 .verse-text strong { font-style: normal; color: var(--orange-400); font-weight: 400; font-family: inherit; }
.s04 .verse-ref {
  margin-top: 60px;
  font-family: var(--font-mono-geo);
  font-size: 19px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===========================================================
   S05 · DORES ↔ VOZ DE DEUS
   =========================================================== */
.s05 .split { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }
.s05 .panel { padding: 130px 100px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.s05 .panel-left  { background: var(--ink); color: var(--white); }
.s05 .panel-right { background: var(--cream); color: var(--neutral-900); }
.s05 .panel h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 24px 0 50px;
}
.s05 .panel-left h2  { color: var(--white); }
.s05 .panel-right h2 { color: var(--neutral-900); }
.s05 .pain-list, .s05 .voice-list { list-style: none; padding: 0; }
.s05 .pain-list li {
  font-family: var(--font-body);
  font-size: 26px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 22px;
}
.s05 .pain-list li::before {
  content: '—';
  color: var(--neutral-400);
}
.s05 .voice-list li {
  font-family: var(--font-body);
  font-size: 28px;
  line-height: 1.55;
  color: var(--neutral-700);
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 22, 64, 0.08);
  display: flex; gap: 22px;
}
.s05 .voice-list li::before {
  content: '+';
  color: var(--orange-500);
  font-weight: 700;
  font-family: var(--font-display);
}
.s05 .voice-list strong { color: var(--blue-700); font-weight: 700; }
.s05 .panel-divider {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--orange-500);
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--white);
  box-shadow: 0 0 0 12px rgba(249, 115, 22, 0.18);
}

/* ===========================================================
   S06 · TRÊS VERSÍCULOS BASE
   =========================================================== */
.s06 .container { padding: 130px 110px; height: 100%; display: flex; flex-direction: column; }
.s06 .heading h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 92px; letter-spacing: -0.03em; line-height: 1;
  color: var(--white); margin: 24px 0 70px;
  max-width: 1200px;
}
.s06 .verses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; flex: 1; }
.s06 .verse-card {
  padding: 48px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.s06 .verse-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange-500);
}
.s06 .verse-card .ref {
  font-family: var(--font-mono-geo);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange-400);
  font-weight: 700;
  margin-bottom: 24px;
}
.s06 .verse-card .body {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.4;
  color: var(--white);
  flex: 1;
}
.s06 .verse-card .footer {
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ===========================================================
   S07 · 7 VALORES (orbital)
   =========================================================== */
.s07 .container { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.s07 .heading { text-align: center; margin-bottom: 60px; }
.s07 .heading h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 88px; letter-spacing: -0.03em; line-height: 1;
  color: var(--white); margin-top: 18px;
}
.s07 .orbit-wrap { position: relative; width: 760px; height: 760px; }
.s07 .orbit-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--grad-flame);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 80px rgba(249, 115, 22, 0.6);
}
.s07 .orbit-center .label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}
.s07 .value-chip {
  position: absolute;
  top: 50%; left: 50%;
  width: 200px;
  margin: -50px 0 0 -100px;
  padding: 22px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  text-align: center;
  backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.s07 .value-chip .num {
  display: block;
  font-family: var(--font-mono-geo);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--orange-400);
  margin-bottom: 6px;
  font-weight: 700;
}

/* posicionamento dos 7 chips em circunferência (raio 320) */
.s07 .v1 { transform: translate(0, -320px); }
.s07 .v2 { transform: translate(250px, -200px); }
.s07 .v3 { transform: translate(312px, 70px); }
.s07 .v4 { transform: translate(160px, 290px); }
.s07 .v5 { transform: translate(-160px, 290px); }
.s07 .v6 { transform: translate(-312px, 70px); }
.s07 .v7 { transform: translate(-250px, -200px); }

/* ===========================================================
   S08 · COMO QUEREMOS VIVER
   =========================================================== */
.s08 .stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 220px; text-align: center;
}
.s08 .stage h1 {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: 150px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 30px 0;
}
.s08 .stage h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #FFB37A, #F97316, #FFFFFF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s08 .stage p {
  font-family: var(--font-body);
  font-size: 26px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 1100px;
  margin-top: 32px;
}

/* ===========================================================
   S09 · FRUTO DO ESPÍRITO
   =========================================================== */
.s09 .container { padding: 110px 110px; height: 100%; display: flex; flex-direction: column; }
.s09 .heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 60px; }
.s09 .heading h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 84px; letter-spacing: -0.03em; line-height: 1;
  color: var(--white); margin-top: 18px;
}
.s09 .heading .verse-quote {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  text-align: right;
}
.s09 .fruits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; flex: 1; }
.s09 .fruit {
  padding: 38px 32px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  position: relative;
}
.s09 .fruit .num {
  font-family: var(--font-mono-geo);
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--orange-400);
  font-weight: 700;
  margin-bottom: 14px;
}
.s09 .fruit .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.s09 .fruit .desc {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}

/* ===========================================================
   S10 · SEXTA · 20H
   =========================================================== */
.s10 .stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.s10 .day-label {
  font-family: var(--font-mono-geo);
  font-size: 26px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-400);
  font-weight: 700;
  margin-bottom: 24px;
}
.s10 .day-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 360px;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--white);
  margin-bottom: 10px;
}
.s10 .day-time {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 230px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange-500);
  margin-top: -20px;
}
.s10 .day-foot {
  margin-top: 50px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: rgba(255,255,255,0.6);
}

/* ===========================================================
   S11 · TIMELINE DO ENCONTRO
   =========================================================== */
.s11 .container { padding: 130px 100px; height: 100%; display: flex; flex-direction: column; }
.s11 .heading h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 88px; letter-spacing: -0.03em;
  color: var(--white); line-height: 1;
  margin: 18px 0 90px;
}
.s11 .timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  flex: 1;
  align-content: center;
}
.s11 .tl-line {
  position: absolute;
  top: 32px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-500) 0%, var(--blue-400) 100%);
  transform-origin: left center;
}
.s11 .tl-step { position: relative; padding: 0 14px; }
.s11 .tl-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue-900);
  border: 3px solid var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--orange-400);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.s11 .tl-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.s11 .tl-step p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

/* ===========================================================
   S12 · TEASER ANTES DO REVEAL
   =========================================================== */
.s12 .stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 200px;
}
.s12 .teaser-eyebrow {
  font-family: var(--font-mono-geo);
  font-size: 16px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-400);
  font-weight: 700;
  margin-bottom: 60px;
}
.s12 .teaser-text {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 102px;
  line-height: 1.15;
  color: var(--white);
  max-width: 1400px;
}
.s12 .teaser-text em {
  background: linear-gradient(135deg, #FB923C, #F97316);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s12 .teaser-dot {
  margin-top: 60px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 40px var(--orange-500);
}

/* ===========================================================
   S13 · REVEAL — TALMIDIM
   =========================================================== */
.s13 { background: var(--grad-night); }
.s13 .reveal-stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
/* hero-tav-wrap wrapper */
.s13 .reveal-tav {
  position: relative;
  width: 280px; height: 280px;
  margin-bottom: 50px;
  opacity: 0;
  flex-shrink: 0;
}
.is-active .s13 .reveal-tav { animation: revealTavIn 1.4s cubic-bezier(0.34, 1.4, 0.64, 1) 0.6s forwards; }
@keyframes revealTavIn {
  0%   { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  60%  { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Anel laranja orbital */
.s13 .reveal-tav-ring {
  position: absolute;
  inset: -50px;
  border: 1.5px solid rgba(249,115,22,0.35);
  border-radius: 50%;
  animation: spin-reveal-cw 24s linear infinite;
}
.s13 .reveal-tav-ring::after {
  content: '';
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 28px var(--orange-500);
}

/* Anel azul orbital (reverso) */
.s13 .reveal-tav-ring-2 {
  position: absolute;
  inset: -95px;
  border: 1.5px solid rgba(37,99,235,0.22);
  border-radius: 50%;
  animation: spin-reveal-ccw 38s linear infinite;
}
.s13 .reveal-tav-ring-2::after {
  content: '';
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 20px var(--blue-500);
}

/* SVG central */
.s13 .reveal-tav svg {
  width: 280px; height: 280px;
  display: block;
  filter: drop-shadow(0 0 40px rgba(249, 115, 22, 0.5));
  animation: breatheReveal 4s ease-in-out infinite;
}
@keyframes breatheReveal {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(30,58,138,0.6)); }
  50%       { filter: drop-shadow(0 0 60px rgba(30,58,138,0.95)) drop-shadow(0 0 100px rgba(249,115,22,0.2)); }
}
@keyframes spin-reveal-cw  { to { transform: rotate(360deg); } }
@keyframes spin-reveal-ccw { to { transform: rotate(-360deg); } }
.s13 .reveal-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 230px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0;
}
.is-active .s13 .reveal-name { animation: revealNameIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards; }
@keyframes revealNameIn {
  0%   { opacity: 0; transform: translateY(40px); letter-spacing: 0.5em; filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.04em; filter: blur(0); }
}
.s13 .reveal-hebrew {
  font-family: var(--font-hebrew);
  font-weight: 700;
  font-size: 162px;
  color: var(--orange-400);
  line-height: 1;
  opacity: 0;
}
.is-active .s13 .reveal-hebrew { animation: staggerIn 1.4s 2.6s forwards; }
.s13 .reveal-welcome {
  margin-top: 60px;
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 37px;
  color: rgba(255,255,255,0.8);
  opacity: 0;
}
.is-active .s13 .reveal-welcome { animation: staggerIn 1.4s 3.8s forwards; }

.s13 .deco-blob.b1 { width: 900px; height: 900px; background: var(--orange-500); top: -300px; left: -200px; opacity: 0.15; }
.s13 .deco-blob.b2 { width: 800px; height: 800px; background: var(--blue-500); bottom: -300px; right: -150px; opacity: 0.20; }

/* ===========================================================
   S14 · ETIMOLOGIA
   =========================================================== */
.s14 .container { padding: 100px 110px; height: 100%; display: flex; flex-direction: column; }
.s14 .heading h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 74px; letter-spacing: -0.03em;
  color: var(--white); line-height: 1;
  margin: 18px 0 60px;
}
.s14 .anatomy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  flex: 1;
  align-items: center;
}
.s14 .word-zoom {
  text-align: center;
}
.s14 .word-hebrew {
  font-family: var(--font-hebrew);
  font-weight: 700;
  font-size: 370px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #FFFFFF 50%, #FB923C 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s14 .word-translit {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 74px;
  letter-spacing: 0.04em;
  color: var(--orange-400);
  text-transform: uppercase;
}
.s14 .word-meaning {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: rgba(255,255,255,0.6);
}
.s14 .facts { display: flex; flex-direction: column; gap: 24px; }
.s14 .fact {
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--orange-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.s14 .fact .label {
  font-family: var(--font-mono-geo);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange-400);
  font-weight: 700;
  margin-bottom: 8px;
}
.s14 .fact .body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.s14 .fact .body strong { color: var(--white); }

/* ===========================================================
   S15 · MISSÃO E VISÃO
   =========================================================== */
.s15 .container { padding: 130px 100px; height: 100%; display: flex; flex-direction: column; }
.s15 .heading h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 92px; letter-spacing: -0.03em;
  color: var(--white); line-height: 1;
  margin: 18px 0 80px;
}
.s15 .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; flex: 1; }
.s15 .card {
  padding: 64px 56px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.s15 .card.mission { background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(249,115,22,0.02)); border-color: rgba(249,115,22,0.4); }
.s15 .card.vision  { background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(59,130,246,0.02)); border-color: rgba(59,130,246,0.4); }
.s15 .card .label {
  font-family: var(--font-mono-geo);
  font-size: 14px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-400);
  font-weight: 700;
  margin-bottom: 32px;
}
.s15 .card.vision .label { color: var(--blue-300); }
.s15 .card .body {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 37px;
  line-height: 1.35;
  color: var(--white);
  flex: 1;
}

/* ===========================================================
   S16 · VALORES
   =========================================================== */
.s16 .container { padding: 110px 100px; height: 100%; display: flex; flex-direction: column; }
.s16 .heading h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 88px; letter-spacing: -0.03em;
  color: var(--white); line-height: 1;
  margin: 18px 0 70px;
}
.s16 .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; flex: 1; }
.s16 .value {
  padding: 50px 48px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 30px; align-items: center;
}
.s16 .value .num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 127px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange-500);
  flex-shrink: 0;
  width: 130px;
}
.s16 .value .text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 35px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.s16 .value .text p {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

/* ===========================================================
   S17 · SHOWCASE TAV (5 variações)
   =========================================================== */
.s17 .container { padding: 100px 90px; height: 100%; display: flex; flex-direction: column; }
.s17 .heading {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px;
}
.s17 .heading h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 88px; letter-spacing: -0.03em;
  color: var(--white); line-height: 1;
}
.s17 .heading p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 23px; max-width: 500px; text-align: right;
  color: rgba(255,255,255,0.6);
}
.s17 .showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  flex: 1;
}
.s17 .tav-card {
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.s17 .tav-card .tav-svg { width: 150px; height: 150px; }
.s17 .tav-card .label {
  position: absolute;
  bottom: 22px;
  font-family: var(--font-mono-geo);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

.s17 .v1 { background: var(--white); }
.s17 .v1 .label { color: var(--blue-700); }
.s17 .v2 { background: var(--grad-flame); }
.s17 .v2 .label { color: var(--white); }
.s17 .v3 { background: var(--grad-dusk); }
.s17 .v3 .label { color: rgba(255,255,255,0.8); }
.s17 .v4 { background: linear-gradient(135deg, #FCD34D 0%, #D97706 100%); }
.s17 .v4 .label { color: var(--ink); }
.s17 .v5 { background: var(--ink); }
.s17 .v5 .label { color: rgba(255,255,255,0.8); }

/* ===========================================================
   S18 · TRÊS CORES (full-height)
   =========================================================== */
.s18 .panels { display: grid; grid-template-columns: repeat(3, 1fr); height: 100%; }
.s18 .color-panel {
  position: relative;
  padding: 100px 60px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.s18 .color-panel.orange {
  background: linear-gradient(180deg, #FB923C 0%, #C2410C 100%);
  color: var(--white);
}
.s18 .color-panel.blue {
  background: linear-gradient(180deg, #3B82F6 0%, #0B1640 100%);
  color: var(--white);
}
.s18 .color-panel.white {
  background: linear-gradient(180deg, #FFFFFF 0%, #DBEAFE 100%);
  color: var(--neutral-900);
}
.s18 .color-panel .top .label {
  font-family: var(--font-mono-geo);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 20px;
}
.s18 .color-panel .top h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 110px;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}
.s18 .color-panel .keywords {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.s18 .color-panel .keywords span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
}
.s18 .color-panel.white .keywords span {
  background: rgba(11, 22, 64, 0.10);
  color: var(--neutral-700);
}
.s18 .color-panel .bottom .verses {
  display: flex; flex-direction: column; gap: 16px;
}
.s18 .color-panel .bottom .verse {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  opacity: 0.9;
}
.s18 .color-panel .bottom .verse strong {
  display: block;
  font-style: normal;
  font-family: var(--font-mono-geo);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.7;
}
.s18 .color-panel .reflexao {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.85;
}
.s18 .color-panel.white .reflexao { border-color: rgba(11, 22, 64, 0.15); }

/* ===========================================================
   S19 · VERSÍCULOS DAS CORES (contemplativo)
   =========================================================== */
.s19 .container {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 200px; text-align: center;
}
.s19 .heading {
  font-family: var(--font-mono-geo);
  font-size: 16px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-400);
  font-weight: 700;
  margin-bottom: 60px;
}
.s19 .verses { display: flex; flex-direction: column; gap: 50px; max-width: 1400px; }
.s19 .verse {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 42px;
  line-height: 1.3;
  color: var(--white);
}
.s19 .verse .ref {
  display: block;
  font-family: var(--font-mono-geo);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-top: 14px;
}

/* ===========================================================
   S20 · SITE
   =========================================================== */
.s20 .container { padding: 100px 100px; height: 100%; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.s20 .text-side { display: flex; flex-direction: column; }
.s20 .text-side .tag {
  font-family: var(--font-mono-geo);
  font-size: 16px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-400);
  font-weight: 700;
  margin-bottom: 22px;
}
.s20 .text-side h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 127px;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 36px;
}
.s20 .text-side .ctx {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}
.s20 .text-side .obj {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--orange-300);
  margin-bottom: 36px;
}
.s20 .url-pill {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(249,115,22,0.5);
  background: rgba(249,115,22,0.1);
  font-family: var(--font-mono-geo);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.s20 .qr-side, .s21 .qr-side { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.s20 .qr-frame, .s21 .qr-frame {
  background: var(--white);
  padding: 28px;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(249,115,22,0.4);
  width: 540px; height: 540px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.s20 .qr-frame img, .s21 .qr-frame img { width: 100%; height: 100%; }
.s20 .qr-cta, .s21 .qr-cta {
  font-family: var(--font-mono-geo);
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}

/* ===========================================================
   S21 · INSTAGRAM
   =========================================================== */
.s21 .container { padding: 100px 100px; height: 100%; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.s21 .text-side .tag {
  font-family: var(--font-mono-geo);
  font-size: 16px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 22px;
  opacity: 0.85;
}
.s21 .text-side h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 127px;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 36px;
}
.s21 .text-side .ctx {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
}
.s21 .text-side .obj {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
  margin-bottom: 36px;
}
.s21 .url-pill {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
  font-family: var(--font-mono-geo);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.s21 .qr-frame {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(255,255,255,0.4);
}
.s21 .qr-cta { color: rgba(255,255,255,0.7); }

/* ===========================================================
   S22-S24 · PLAYLISTS (layout horizontal: embed + QR)
   =========================================================== */
.s22 .container {
  padding: 80px 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.s22 .heading {
  margin-bottom: 44px;
}
.s22 .heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 84px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-top: 10px;
}
.s22 .pl-split {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 80px;
  align-items: center;
}
.s22 .pl-embed {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
}
.s22 .pl-embed iframe {
  display: block;
  border-radius: 16px 16px 0 0;
}
.s22 .pl-spotify-label {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 16px 22px;
}
.s22 .pl-spotify-icon {
  width: 38px;
  height: 38px;
  background: #1DB954;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s22 .pl-spotify-icon svg { width: 22px; height: 22px; }
.s22 .pl-label-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.s22 .pl-label-text span {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: none;
}
.s22 .pl-qr-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
}
.s22 .pl-qr-frame {
  width: 480px;
  height: 480px;
  background: var(--white);
  padding: 20px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(249,115,22,0.45), 0 24px 60px rgba(0,0,0,0.5);
}
.s22 .pl-qr-frame img { width: 100%; height: 100%; }
.s22 .pl-qr-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.s22 .pl-qr-cta {
  font-family: var(--font-mono-geo);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.s22 .pl-qr-url {
  display: block;
  font-family: var(--font-mono-geo);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(249,115,22,0.85);
  text-decoration: underline;
  text-decoration-color: rgba(249,115,22,0.35);
  text-underline-offset: 3px;
  word-break: break-all;
  text-align: center;
  transition: color 0.2s;
}
.s22 .pl-qr-url:hover {
  color: rgba(249,115,22,1);
}

/* ===========================================================
   S23 · ENCERRAMENTO
   =========================================================== */
.s23 .stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.s23 .end-tav {
  width: 276px; height: 276px;
  margin-bottom: 50px;
  filter: drop-shadow(0 0 50px rgba(249, 115, 22, 0.5));
}
.s23 .end-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 138px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
}
.s23 .end-hebrew {
  font-family: var(--font-hebrew);
  font-weight: 700;
  font-size: 115px;
  color: var(--orange-400);
  line-height: 1;
}
.s23 .end-foot {
  position: absolute;
  bottom: 80px;
  left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono-geo);
  font-size: 14px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  white-space: nowrap;
}
.s23 .end-foot .sep { color: var(--orange-500); margin: 0 14px; }

/* ===========================================================
   S25 · VÍDEO
   =========================================================== */
.s25 .video-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}
.s25 .slide-video {
  width: 100%; height: 100%;
  object-fit: contain;
  outline: none;
}
