/* ============================================================
   WORKSHOP DE FOTOGRAFIA & FOOD STYLING — Design System
   Marca: indigo #3f32d7 + preto/branco · tema dark
   Inspirado nas animações e seções do site de referência (Pink+)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* cor de branding do cliente */
  --brand: #3f32d7;
  --brand-600: #4a3ce0;
  --brand-500: #5a4cf0;
  --brand-400: #7a6ef5;
  --brand-300: #a99ff9;
  --brand-glow: rgba(63, 50, 215, .55);
  --brand-tint: #16123a;      /* fundo escuro com tom indigo */
  --brand-tint-2: #1e1850;

  /* superfícies dark */
  --bg: #08080a;
  --bg-2: #0d0d10;
  --surface-1: #121116;
  --surface-2: #1a1922;
  --surface-3: #232230;

  /* claro/creme (seções de contraste) */
  --cream: #f4f1e9;
  --cream-2: #ebe7dc;
  /* texto (branco levemente creme, como o branding deles) */
  --text: #f5f2ea;
  --text-2: #b7b4c2;
  --text-muted: #7d7a89;
  --white: #ffffff;
  --black: #000000;

  /* linhas / bordas */
  --line: rgba(245, 242, 234, .10);
  --line-strong: rgba(245, 242, 234, .18);

  /* tipografia — Poppins (mesma do site de referência) + Space Grotesk nos rótulos */
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-mono: "Space Grotesk", "Poppins", system-ui, sans-serif;

  /* raios e sombras */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-btn: 20px;    /* botões e badges: arredondado suave (como a referência), não pill total */
  --r-full: 999px;  /* só para elementos realmente circulares: dots, avatares, ícones redondos */
  /* squircle (superelipse) — cantos suaves e fora do padrão, como a referência */
  --sq: superellipse(2.6);
  --shadow-brand: 0 18px 50px -12px var(--brand-glow);
  --shadow-soft: 0 20px 60px -20px rgba(0,0,0,.7);

  /* layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
::selection { background: var(--brand); color: #fff; }

/* ---------- Tipografia ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.015em;
  text-transform: none;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -.015em; }
.section-head .title, .hero h1, .final-cta h2, .bonus h2 { letter-spacing: -.02em; }
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand-300);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--brand); border-radius: 2px;
}
/* placeholder de logo no header (cliente adiciona a marca dele) */
.logo-ph {
  font-family: var(--font-mono); font-weight: 600; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-2);
  padding: 8px 14px; border: 1px dashed var(--line-strong); border-radius: var(--r-btn); corner-shape: var(--sq);
}
/* squircle (superelipse) nos cantos retangulares — círculos (dots, avatares, ícones redondos) ficam de fora */
.tag, .who-card, .vg-card, .testi, .price-card, .img-slot, .faq-item, .float-card,
.bonus, .fc-ico, .barcode {
  corner-shape: var(--sq);
}
.text-brand { color: var(--brand-300); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--text-2); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(58px, 7.5vw, 106px); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.section-head { max-width: 760px; margin-bottom: clamp(30px, 4.2vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .title { font-size: clamp(2rem, 5vw, 3.6rem); margin-top: 18px; }
.section-head .sub { margin-top: 20px; }

/* glow decorativo (as "luzes" do site de ref) */
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; z-index: 0; }
.glow--brand { background: var(--brand); }

/* textura de fundo animada (micro-animação sutil, como o FAQ da referência) */
.section--texture { position: relative; overflow: hidden; }
.section--texture::before {
  content: ""; position: absolute; inset: -60%; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(122,110,245,.16) 1px, transparent 1.6px);
  background-size: 26px 26px; opacity: .55; animation: texDrift 26s linear infinite;
}
.section--texture > .container { position: relative; z-index: 1; }
@keyframes texDrift { from { transform: translate(0, 0); } to { transform: translate(26px, 26px); } }

/* ---------- Botões ---------- */
.btn {
  --pad-y: 16px; --pad-x: 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  border-radius: var(--r-btn); corner-shape: var(--sq);
  position: relative; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--brand-500); transform: translateY(-2px); box-shadow: 0 22px 60px -12px var(--brand-glow); }
.btn--ghost { background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--line-strong); }
.btn--ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--lg { --pad-y: 20px; --pad-x: 40px; font-size: 1.06rem; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .55em;
  padding: 9px 15px; border-radius: var(--r-btn); corner-shape: var(--sq);
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  font-size: .85rem; font-weight: 500; color: var(--text-2);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-400); box-shadow: 0 0 0 4px rgba(122,110,245,.2); }
.pill--brand { background: rgba(63,50,215,.14); border-color: rgba(122,110,245,.35); color: var(--brand-300); }

.tag { display:inline-block; padding: 6px 12px; border-radius: var(--r-sm); background: var(--surface-2); border: 1px solid var(--line); font-size:.8rem; color: var(--text-2); }

/* ---------- Image slots (placeholders p/ trocar depois) ---------- */
.img-slot {
  position: relative; overflow: hidden; width: 100%;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(63,50,215,.22), transparent 60%),
    var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid; place-content: center;
  color: var(--text-muted);
  isolation: isolate;
}
.img-slot::after { /* grão/textura sutil */
  content:""; position:absolute; inset:0; z-index:-1;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 22px 22px;
}
.img-slot .slot-inner { display: grid; justify-items: center; gap: 10px; text-align: center; padding: 20px; }
.img-slot .slot-ico { width: 34px; height: 34px; opacity: .7; color: var(--brand-300); }
.img-slot .slot-label { font-size: .82rem; font-weight: 500; letter-spacing: .02em; }
.img-slot .slot-hint { font-size: .72rem; color: var(--text-muted); }
.img-slot.is-bw { filter: grayscale(1); }        /* indica foto P&B */
.img-slot img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
/* slot transparente (ex.: capa do livro em PNG sem fundo → flutua sobre a seção) */
.img-slot.is-transparent { background:none; border:none; box-shadow:none; }
.img-slot.is-transparent::after { display:none; }
.img-slot.is-transparent img { object-fit: contain; filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)); }
/* slots que já têm imagem: sem a grade de placeholder e com fundo escuro neutro (nada de "vazio" enquanto decodifica) */
.img-slot:has(img)::after { display: none; }
.img-slot:has(img):not(.is-transparent) { background: var(--surface-2); }
.ratio-1  { aspect-ratio: 1 / 1; }
.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-34 { aspect-ratio: 3 / 4; }
.ratio-169{ aspect-ratio: 16 / 9; }
.ratio-full { height: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
/* topo NÃO fixo — fica sobre o hero e sobe junto com a página */
.nav {
  position: absolute; inset: 0 0 auto 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px var(--gutter);
}
.nav .brand { display:flex; align-items:center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing:-.02em; }
.nav .brand .mark { width: 30px; height: 30px; border-radius: 8px; background: var(--brand); display:grid; place-content:center; box-shadow: var(--shadow-brand); }
.nav .brand .mark svg { width: 17px; height: 17px; color:#fff; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav .vagas { font-size: .82rem; color: var(--text-2); display:flex; align-items:center; gap:.5em; }
.nav .vagas b { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(120px, 15vh, 190px); padding-bottom: clamp(40px, 7vw, 90px); overflow: hidden; }
/* hero limpo — sem brilho/raios no topo */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; position: relative; z-index: 2; }
.hero-meta { display:flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.hero h1 { font-size: clamp(2.35rem, 5.8vw, 4.9rem); font-weight: 500; letter-spacing: -.02em; }
.hero h1 .ln { display: block; }
.hero h1 .hl { color: var(--brand-300); }
.hero .with { margin-top: 20px; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--text); font-weight: 500; }
.hero .desc { margin-top: 22px; max-width: 46ch; }
.hero-cta { margin-top: 34px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-cta .spots { font-size: .88rem; color: var(--text-2); display:flex; align-items:center; gap:.5em; }
.hero-cta .spots b { color: var(--brand-300); }
.hero-visual { position: relative; }
.hero-visual .hero-cutout { position: relative; }
.hero-visual .hero-cutout img { display: block; width: 100%; height: auto; filter: drop-shadow(0 26px 36px rgba(0,0,0,.55)); }
.hero-visual .float-card {
  position:absolute; left: -26px; bottom: 30px; z-index: 3;
  background: rgba(18,17,22,.82); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  padding: 14px 18px; display:flex; align-items:center; gap: 12px; box-shadow: var(--shadow-soft);
}
.hero-visual .float-card .fc-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--brand); display:grid; place-content:center; color:#fff; flex:none; }
.hero-visual .float-card .fc-t { font-size: .9rem; font-weight: 600; line-height:1.2; }
.hero-visual .float-card .fc-s { font-size: .74rem; color: var(--text-muted); }

/* ============================================================
   MARQUEE (marcas / social proof)
   ============================================================ */
.marquee { border-block: 1px solid var(--line); padding-block: 26px; background: var(--bg-2); overflow: hidden; }
.marquee .mq-label { text-align:center; font-size:.76rem; letter-spacing:.2em; text-transform:uppercase; color: var(--text-muted); margin-bottom: 18px; }
.mq-track { display: flex; gap: 60px; width: max-content; animation: mq 26s linear infinite; }
.marquee:hover .mq-track { animation-play-state: paused; }
.mq-track span { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 2.4vw, 1.9rem); color: var(--text-2); opacity:.6; white-space: nowrap; transition: opacity .3s, color .3s; }
.mq-track span:hover { opacity: 1; color: var(--text); }
@keyframes mq { to { transform: translateX(-50%); } }

/* ============================================================
   "PARA QUEM" — cards
   ============================================================ */
/* seção clara (quebra o tema escuro, mais contraste) */
.section--light { background: var(--cream); color: #17161d; }
.section--light .eyebrow, .section--light .eyebrow::before { color: var(--brand); }
.section--light .eyebrow::before { background: var(--brand); }
.section--light .title { color: #17161d; }
.section--light .title .text-brand { color: var(--brand); }
.section--light .sub { color: #56545f; }
/* depoimentos numa seção clara */
.section--light .testi { background: #fff; border-color: rgba(23,22,29,.08); }
.section--light .testi:hover { transform: translateY(-6px); border-color: rgba(63,50,215,.3); box-shadow: 0 26px 54px -22px rgba(63,50,215,.3); }
.section--light .testi p { color: #46454f; }
.section--light .testi .nm { color: #17161d; }
.section--light .testi .quote-ico { color: var(--brand); }
.section--light .testi .av { border: 1px solid rgba(23,22,29,.12); }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.who-card {
  position: relative; overflow: hidden; background: #fff;
  border: 1px solid rgba(23,22,29,.08); border-radius: var(--r-lg); padding: 36px 34px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.who-card::before { content: attr(data-n); position:absolute; top: 22px; right: 30px;
  font-family: var(--font-display); font-weight: 600; font-size: 3.2rem; line-height:1;
  color: var(--brand); opacity:.14; transition: color .4s, opacity .4s; }
.who-card .bar { display: block; width: 42px; height: 4px; border-radius: 3px; background: var(--brand); margin-bottom: 22px; transition: background .4s, width .4s var(--ease); }
.who-card h3 { font-size: 1.34rem; font-weight: 600; color: #17161d; margin-bottom: 12px; max-width: 16ch; transition: color .4s; }
.who-card p { font-size: .96rem; color: #56545f; transition: color .4s; }
/* hover leve: só elevação + sombra suave + a barra/número reagindo (sem inverter cor) */
.who-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px -26px rgba(63,50,215,.3); border-color: rgba(63,50,215,.2); }
.who-card:hover::before { opacity: .24; }
.who-card:hover .bar { width: 62px; }

/* ============================================================
   PORTFÓLIO — carrossel automático em arco
   ============================================================ */
#portfolio .section-head { margin-bottom: 18px; }
#portfolio { padding-bottom: clamp(36px, 4.5vw, 64px); }
.arc {
  position: relative; width: 100%; height: clamp(384px, 38vw, 496px);
  margin-top: 4px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.arc-stage { position: absolute; inset: 0; }
.arc-item {
  position: absolute; top: 0; left: 0; width: clamp(190px, 20vw, 280px);
  will-change: transform, opacity; transform-origin: center center;
}
.arc-item .img-slot { aspect-ratio: 4/5; box-shadow: var(--shadow-soft); border-color: var(--line-strong); background: var(--surface-2); }
.arc-item .img-slot::after { display: none; }   /* sem grade: esses slots sempre têm imagem */
/* legenda: categoria da foto em destaque, no vão inferior do arco */
.arc-center {
  position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%);
  text-align: center; z-index: 250; pointer-events: none; width: min(80%, 620px);
}
.arc-center .ac-eyebrow { display:block; font-family: var(--font-mono); font-weight:600; font-size:.72rem; letter-spacing:.26em; text-transform:uppercase; color: var(--brand-300); margin-bottom: 8px; }
.arc-cat {
  font-family: var(--font-display); font-weight: 600; line-height: 1; letter-spacing: -.02em;
  font-size: clamp(1.6rem, 3.8vw, 2.8rem); color: var(--text);
  transition: opacity .28s var(--ease), transform .28s var(--ease); display: inline-block;
}
.arc-cat.swap { opacity: 0; transform: translateY(8px); }

/* ============================================================
   PRÁTICA — lista + fotos
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.check-list { display:grid; gap: 14px; margin-top: 26px; }
.check-list li { display:flex; align-items:flex-start; gap: 12px; font-size: 1rem; color: var(--text); }
.check-list .ck { flex:none; width: 24px; height: 24px; border-radius: 50%; background: rgba(63,50,215,.16); border:1px solid rgba(122,110,245,.35); display:grid; place-content:center; color: var(--brand-300); margin-top: 1px; }
.check-list .ck svg { width: 13px; height: 13px; }
.photo-collage { display:grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 14px; }
.photo-collage .img-slot:nth-child(1) { grid-row: span 2; }

/* ============================================================
   BÔNUS
   ============================================================ */
.bonus {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-tint), var(--brand-tint-2));
  border: 1px solid rgba(122,110,245,.3); border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 60px);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(30px,5vw,60px); align-items: center;
}
.bonus .b-badge { margin-bottom: 20px; }
.bonus h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.bonus p { margin-top: 18px; color: var(--text-2); max-width: 42ch; }
.bonus .book { aspect-ratio: 676/950; max-width: 360px; margin-inline:auto; transform: rotate(3deg); box-shadow: none; background: none; }
/* só o livro (sem bloco): contorno branco leve seguindo o formato + sombra de profundidade */
.bonus .book img { filter: drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff) drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff) drop-shadow(0 20px 32px rgba(0,0,0,.55)); }
.bonus .glow-b { width: 380px; height: 380px; top:-140px; right:-120px; }

/* ============================================================
   OFERTA / PRICING
   ============================================================ */
.offer { display:grid; grid-template-columns: .92fr 1.08fr; gap: clamp(22px,3.5vw,46px); align-items: stretch; }
/* card de pagamento — claro, destacado, separado */
.price-card {
  background: var(--cream); color: #17161d; border-radius: var(--r-xl);
  padding: clamp(28px,3.4vw,42px); display:flex; flex-direction:column;
  box-shadow: 0 34px 80px -34px rgba(0,0,0,.65);
}
.pc-kicker { font-family: var(--font-mono); font-weight:600; font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color: var(--brand); margin-bottom: 14px; }
.pc-price { display:flex; align-items:baseline; gap:10px; margin: 2px 0 6px; font-family: var(--font-mono); color:#17161d; }
.pc-price .x { font-size: clamp(1.2rem,2.2vw,1.7rem); font-weight:500; color:#56545f; }
.pc-price .v { font-size: clamp(2.9rem,6.6vw,4.4rem); font-weight:600; letter-spacing:-.02em; line-height:1; }
.pc-cash { color:#56545f; font-size:.92rem; }
.barcode { height: 60px; margin: 26px 0 16px; border-radius: 5px; opacity:.9;
  background:
    repeating-linear-gradient(90deg,
      #17161d 0 3px, transparent 3px 6px, #17161d 6px 7px, transparent 7px 11px,
      #17161d 11px 15px, transparent 15px 17px, #17161d 17px 19px, transparent 19px 23px);
  background-size: 23px 100%; }
.pay { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-bottom: 20px; }
.pay span { font-size:.76rem; color:#56545f; border:1px solid rgba(23,22,29,.14); border-radius: var(--r-full); padding: 6px 12px; }
.price-card .btn--primary { width:100%; }
.pc-warn { margin-top: 16px; display:flex; gap:10px; align-items:flex-start; font-size:.82rem; line-height:1.4;
  color:#993c3c; background: rgba(226,75,74,.09); border:1px solid rgba(226,75,74,.22); border-radius: var(--r-md); padding: 12px 14px; }
.pc-warn svg { flex:none; margin-top:1px; color:#d85a30; }
.pc-warn b { color:#7a2b2b; }
/* coluna de vantagens */
.incl-col { display:flex; flex-direction:column; justify-content:center; padding: 4px clamp(0px,1vw,12px); }
.incl-title { font-size: clamp(1.7rem,3.6vw,2.6rem); font-weight:500; letter-spacing:-.02em; margin: 14px 0 22px; }
.incl-list { display:grid; gap: 13px; margin: 0 0 26px; }
.incl-list li { display:flex; gap:12px; align-items:flex-start; font-size:1rem; color: var(--text); }
.incl-list .ck { flex:none; width:24px; height:24px; border-radius:50%; background: rgba(63,50,215,.16); border:1px solid rgba(122,110,245,.35); display:grid; place-content:center; color: var(--brand-300); margin-top:1px; }
.incl-list .ck svg { width:13px; height:13px; }
.tag { align-self:flex-start; }
.kit-list { display:grid; gap: 10px; margin-top: 14px; }
.kit-list li { display:flex; gap: 10px; align-items:center; font-size: .92rem; color: var(--text-2); }
.kit-list .gift { flex:none; color: var(--brand-300); }
.offer-foot { margin-top: 18px; font-size:.82rem; color: var(--text-muted); font-style: italic; }

/* ============================================================
   GARANTIAS — palavra gigante vazada (só o contorno) ao fundo
   ============================================================ */
.guarantee-sec { position: relative; overflow: hidden; padding-block: clamp(96px,13vw,190px); }
/* Vagas limitadas — palavra gigante vazada (branca, discreta) + cards por cima */
.vagas-sec { position: relative; overflow: hidden; padding-block: clamp(60px, 7.5vw, 106px); }
.vagas-top { text-align: center; }
.vagas-top .eyebrow { justify-content: center; position: relative; z-index: 2; }
.vagas-word {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.05em;
  font-size: clamp(4rem, 19vw, 16rem); line-height: .82; margin-top: 16px;
  white-space: nowrap; user-select: none; pointer-events: none;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.09); text-stroke: 1px rgba(255,255,255,.09);
}
.vagas-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 18px;
  max-width: 1000px; margin: clamp(-84px, -5.5vw, -40px) auto 0;
}
.vg-card {
  text-align: center; padding: 34px 28px; border-radius: var(--r-lg);
  background: rgba(16,15,20,.86); border: 1px solid var(--line); backdrop-filter: blur(8px);
  transition: transform .35s var(--ease), border-color .35s;
}
.vg-card:hover { transform: translateY(-6px); border-color: rgba(122,110,245,.4); }
.vg-card .vg-ico { margin: 0 auto 16px; display: grid; place-content: center; }
.vg-card:nth-child(1) .vg-ico { color: #7aa2ff; }   /* azul */
.vg-card:nth-child(2) .vg-ico { color: #6fe0c0; }   /* menta */
.vg-card:nth-child(3) .vg-ico { color: #ffc65c; }   /* âmbar */
.vg-card h3 { font-size: 1.16rem; font-weight: 600; margin-bottom: 8px; }
.vg-card p { font-size: .92rem; color: var(--text-2); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi {
  background: var(--surface-1); border:1px solid var(--line); border-radius: var(--r-md); padding: 28px;
  display:flex; flex-direction:column; gap: 18px; transition: transform .35s var(--ease), border-color .35s;
}
.testi:hover { transform: translateY(-5px); border-color: rgba(122,110,245,.35); }
.testi .quote-ico { color: var(--brand); font-family: var(--font-display); font-size: 2.6rem; line-height: .5; height: 22px; }
.testi p { color: var(--text-2); font-size: .95rem; flex: 1; }
.testi .who { display:flex; align-items:center; gap: 12px; }
.testi .who .av { width: 44px; height: 44px; border-radius: 50%; flex:none; display:grid; place-content:center;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  background: rgba(63,50,215,.12); color: var(--brand); border: 1px solid rgba(63,50,215,.2); }
.testi .who .nm { font-weight: 600; font-size: .92rem; }

/* ============================================================
   PROFESSORES
   ============================================================ */
.teacher { display:grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px,4vw,50px); align-items:center; }
.teacher + .teacher { margin-top: clamp(40px,6vw,80px); }
.teacher.reverse { grid-template-columns: 1.2fr .8fr; }
.teacher.reverse .t-photo { order: 2; }
.teacher .t-photo { aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--shadow-soft); }
.teacher h3 { font-size: clamp(1.8rem,3.4vw,2.6rem); }
.teacher .role { color: var(--brand-300); font-weight:600; margin-top: 8px; }
.teacher p { color: var(--text-2); margin-top: 16px; }
.brand-chips { display:flex; flex-wrap:wrap; gap: 8px; margin-top: 22px; }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq-list { max-width: 820px; margin-inline:auto; display:grid; gap: 12px; }
.faq-item { background: var(--surface-1); border:1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .3s; }
.faq-item[aria-expanded="true"] { border-color: rgba(122,110,245,.4); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap: 20px; padding: 22px 26px; text-align:left; font-weight: 600; font-size: 1.02rem; }
.faq-q .ico { flex:none; width: 30px; height: 30px; border-radius:50%; border:1px solid var(--line-strong); display:grid; place-content:center; transition: transform .35s var(--ease), background .3s, border-color .3s; }
.faq-item[aria-expanded="true"] .faq-q .ico { transform: rotate(45deg); background: var(--brand); border-color: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a .faq-a-inner { padding: 0 26px 24px; color: var(--text-2); font-size: .95rem; }
.faq-a .faq-a-inner p { margin: 0 0 11px; }
.faq-a .faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a .faq-a-inner ul { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.faq-a .faq-a-inner ul li { position: relative; padding-left: 20px; }
.faq-a .faq-a-inner ul li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 7px; height: 7px; border-radius: 2px; background: var(--brand-400); }

/* ============================================================
   CTA FINAL — fundo com imagens subindo (efeito "Star Wars")
   ============================================================ */
.final-cta { position: relative; overflow: hidden; text-align:center; padding-block: clamp(90px, 14vw, 180px); }
.final-cta .cta-bg { position:absolute; inset:0; z-index:0; perspective: 900px; overflow:hidden;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 60%, #000 30%, transparent 82%);
          mask-image: radial-gradient(120% 90% at 50% 60%, #000 30%, transparent 82%); }
.cta-cols { position:absolute; left:50%; top:50%; width: 150%; height: 220%;
  display:flex; gap: clamp(12px,1.6vw,22px); justify-content:center; align-items: flex-start;
  transform: translate(-50%,-50%) rotateX(42deg) scale(1.1); transform-origin:center center; }
/* sem gap vertical: a emenda do loop (translateY -50%) precisa bater exato → usa margin-bottom */
.cta-col { flex: 1 1 0; display:flex; flex-direction:column;
  animation: ctaRise 34s linear infinite; will-change: transform; }
.cta-col .img-slot { aspect-ratio: 3/4; border-radius: var(--r-md); flex:none; margin-bottom: clamp(12px,1.6vw,22px);
  background: linear-gradient(155deg, rgba(90,76,240,.4), rgba(18,17,22,.7)); border-color: rgba(122,110,245,.22); }
.cta-col .img-slot::after { opacity: .5; }
@keyframes ctaRise { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.final-cta .cta-overlay { position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(90% 70% at 50% 55%, rgba(63,50,215,.62), transparent 70%),
    linear-gradient(180deg, var(--bg) 2%, rgba(8,8,10,.55) 40%, rgba(8,8,10,.78) 100%); }
.final-cta .cta-content { position: relative; z-index: 2; }
.final-cta .pill { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.24); color:#fff; margin-bottom: 22px; }
.final-cta h2 { font-size: clamp(2.2rem, 5.4vw, 4.2rem); max-width: 15ch; margin-inline:auto; color:#fff; }
.final-cta p { color: rgba(255,255,255,.86); margin: 22px auto 0; max-width: 52ch; }
.final-cta .btn--primary { background:#fff; color: var(--brand); margin-top: 36px; box-shadow: 0 20px 50px -12px rgba(0,0,0,.55); }
.final-cta .btn--primary:hover { background:#fff; transform: translateY(-3px) scale(1.02); }
@media (prefers-reduced-motion: reduce) { .cta-col { animation: none; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: 60px 40px; }
.footer-top { display:flex; justify-content:space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer .brand { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; }
.footer .f-contact { color: var(--text-2); font-size: .92rem; display:grid; gap: 8px; }
.footer .socials { display:flex; gap: 12px; margin-top: 10px; }
.footer .socials a { width: 42px; height: 42px; border-radius: 50%; border:1px solid var(--line-strong); display:grid; place-content:center; transition: background .25s, border-color .25s, transform .25s; }
.footer .socials a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.footer-bottom { padding-top: 26px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; color: var(--text-muted); font-size: .82rem; }
.big-word { font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem, 14vw, 11rem); line-height: .85; letter-spacing: -.03em; color: transparent; -webkit-text-stroke: 1px var(--line-strong); text-align:center; margin: 40px 0; user-select:none; }

/* ============================================================
   Animações de revelação no scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  .mq-track, .section--texture::before, .cta-col { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1024px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; gap:16px; }
  .offer { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-top: 8px; }
  .split { grid-template-columns: 1fr; }
  .bonus { grid-template-columns: 1fr; text-align:center; }
  .bonus p { margin-inline:auto; }
  .teacher, .teacher.reverse { grid-template-columns: 1fr; }
  .teacher.reverse .t-photo { order: -1; }
  .teacher .t-photo { max-width: 420px; }
  .nav .vagas { display: none; }
}
@media (max-width: 640px) {
  /* navbar compacta: evita o CTA estourar a tela */
  .nav { padding-inline: 16px; gap: 12px; }
  .nav .brand { font-size: 1rem; }
  .nav .brand .mark { width: 26px; height: 26px; }
  .nav .btn--primary { --pad-x: 16px; --pad-y: 11px; font-size: .8rem; box-shadow: none; }
}
@media (max-width: 560px) {
  .who-grid { grid-template-columns: 1fr; }
  .photo-collage { grid-template-columns: 1fr; }
  .photo-collage .img-slot:nth-child(1) { grid-row: auto; }
  .footer-top { flex-direction: column; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; }
}
