/* Lavras Lab — Escola de Inovação Pública de Lavras
   Paleta e tipografia conforme a folha de identidade visual do Lab.
   Estrutura irmã do site do Launch LVRS+, com a identidade propria do Lab. */

:root {
  --bg: #fcfdf4;
  --bg-raised: #ffffff;
  --ink: #23244f;
  --roxo: #5557e8;
  --roxo-claro: #8b8cf0;
  --roxo-dim: rgba(85, 87, 232, 0.1);
  --lima: #ddf56f;
  --verde: #58d85f;
  --laranja: #f5821f;
  --azul-claro: #9fe8ff;
  --text: #23244f;
  --text-secondary: #4a4c72;
  --text-muted: #7a7c99;
  --border: rgba(35, 36, 79, 0.13);
  --border-forte: rgba(35, 36, 79, 0.22);
  --font-display: 'Anton', 'Impact', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Archivo', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'SFMono-Regular', Consolas, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: italic; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }

/* fundo vivo: manchas de cor que derivam devagar, como nas aplicacoes da marca */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.wrap {
  width: 100%;
  max-width: 720px;
  min-width: 0;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* ---------- reveal ---------- */

.js-ready .reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(26px) scale(.97);
  transition: opacity .9s var(--ease), filter .9s var(--ease), transform .9s var(--ease);
}
.js-ready .reveal.in-view { opacity: 1; filter: blur(0); transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; filter: none; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- RAIL DE PROGRESSO (Bloco 01 -> Aulao) ---------- */

.scroll-rail {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease);
}

.scroll-rail.rail-ativo { opacity: 1; }

.rail-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rail-track {
  position: relative;
  width: 2px;
  height: 220px;
  background: var(--border);
  border-radius: 2px;
}

.rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, var(--verde), var(--roxo));
  border-radius: 2px;
}

.rail-estrela {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  margin-top: -13px;
  transition: top .1s linear;
}

@media (max-width: 1080px) {
  .scroll-rail { display: none; }
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  z-index: 1;
  padding: 118px 0 84px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -14%;
  left: 50%;
  width: 1000px;
  height: 720px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 44% 52% at 38% 42%, rgba(88, 216, 95, 0.22) 0%, transparent 68%),
    radial-gradient(ellipse 40% 46% at 64% 52%, rgba(85, 87, 232, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 30% 34% at 52% 26%, rgba(221, 245, 111, 0.34) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

#heroParallax {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  min-width: 0;
  will-change: transform, opacity;
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 32px;
  opacity: 0;
  animation: rise-in .7s var(--ease) .1s forwards;
}

.hero-kicker .rule { width: 22px; height: 2px; background: var(--verde); border-radius: 2px; }

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--roxo);
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.hero-logo {
  display: block;
  width: min(560px, 78vw);
  height: auto;
  margin: 0 auto 40px;
  opacity: 0;
  animation: logo-in .9s var(--ease) .2s forwards;
}

@keyframes logo-in {
  from { opacity: 0; transform: scale(.92) translateY(14px); }
  to { opacity: 1; transform: none; }
}

.hero-sub {
  font-weight: 500;
  font-size: clamp(21px, 3.1vw, 30px);
  line-height: 1.38;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 26px;
  text-wrap: balance;
  opacity: 0;
  animation: rise-in .8s var(--ease) .38s forwards;
}

.hero-sub em { color: var(--roxo); font-style: italic; font-weight: 600; }

.hero-byline {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  animation: rise-in .8s var(--ease) .54s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo, .hero-kicker, .hero-sub, .hero-byline { opacity: 1; animation: none; }
}

/* ---------- FAIXA DE REALIZACAO (fundo marinho: as logos sao brancas) ---------- */

.realizadores {
  position: relative;
  z-index: 1;
  background: var(--ink);
  padding: 34px 0 38px;
}

.realizadores-titulo {
  margin: 0 0 22px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252, 253, 244, 0.5);
}

.realizadores-fila {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 72px;
}

.realizadores img {
  height: 58px;
  width: auto;
  opacity: 0.9;
  transition: opacity .3s var(--ease);
}

.realizadores img:hover { opacity: 1; }

@media (max-width: 640px) {
  .realizadores img { height: 44px; }
  .realizadores-fila { gap: 24px 44px; }
}

/* ---------- ACOES E ABAS ---------- */

.acoes-destaque {
  position: relative;
  z-index: 1;
  padding: 78px 0 62px;
}

.tabbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 253, 244, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

.tabbar-inner {
  max-width: 1340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabbar-abas,
.acoes-destaque {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(35, 36, 79, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 22px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .25s var(--ease);
}

.tab-btn:hover {
  background: var(--roxo-dim);
  border-color: rgba(85, 87, 232, 0.5);
  color: var(--roxo);
  transform: translateY(-1px);
}

.tab-btn.active {
  background: var(--roxo);
  color: #fff;
  border-color: var(--roxo);
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(85, 87, 232, 0.32);
}

.tab-btn.active:hover {
  background: var(--roxo);
  color: #fff;
  transform: none;
}

/* CTA principal — verde vivo, o convite */
.tab-btn.cta-outline {
  background: var(--verde);
  color: var(--ink);
  border-color: var(--verde);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  animation: cta-pulse 2.6s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(88, 216, 95, .45); }
  50% { box-shadow: 0 0 0 7px rgba(88, 216, 95, 0); }
}

.tab-btn.cta-outline:hover {
  background: #45c94d;
  border-color: #45c94d;
  color: var(--ink);
  transform: translateY(-1px);
  animation-play-state: paused;
}

/* CTA secundario — o documento */
.tab-btn.tab-doc {
  background: transparent;
  border: 1px solid var(--border-forte);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.tab-btn.tab-doc:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .tab-btn.cta-outline { animation: none; }
}

@media (max-width: 680px) {
  .tabbar { padding: 12px 0; }
  .tabbar-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }
  .tabbar-inner::-webkit-scrollbar { display: none; }
  .tab-btn { flex: 0 0 auto; padding: 9px 16px; font-size: 14px; }
}

@media (max-width: 560px) {
  .tab-btn { font-size: 14px; padding: 9px 15px; }
  .tabbar-abas, .acoes-destaque { gap: 8px; }
  .acoes-destaque { padding: 52px 0 42px; }
}

/* ---------- PAINEIS ---------- */

.panel { display: none; padding: 56px 0 40px; }
.panel.active { display: block; }

.panel h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.005em;
  margin: 0 0 26px;
  text-wrap: balance;
}

.panel h2 em { color: var(--roxo); font-style: normal; }

.eyebrow-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--laranja);
  margin: 62px 0 14px;
}

.panel > .eyebrow-label:first-child { margin-top: 0; }

.lede {
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.56;
  color: var(--text-secondary);
  margin: 0 0 44px;
  text-wrap: pretty;
}

.module-intro,
.credibility {
  font-size: 17px;
  line-height: 1.68;
  color: var(--text-secondary);
  margin: 0 0 30px;
  text-wrap: pretty;
}

.credibility strong { color: var(--ink); font-weight: 700; }

/* faixa de numeros, sem caixa — so tipografia */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 0 52px;
  padding: 30px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.stat-row > div { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1;
  color: var(--roxo);
}

.stat-label {
  font-size: 12px;
  line-height: 1.35;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

@media (max-width: 560px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
}

/* lista editorial: etiqueta + texto */
.feature-list {
  display: flex;
  flex-direction: column;
  margin: 0 0 34px;
  border-top: 1px solid var(--border);
}

.feature-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.f-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--roxo);
  padding-top: 5px;
}

.feature-row p { margin: 0; font-size: 16px; line-height: 1.62; color: var(--text-secondary); }
.feature-row p strong { color: var(--ink); }

@media (max-width: 560px) {
  .feature-row { grid-template-columns: 1fr; gap: 7px; }
  .f-tag { padding-top: 0; }
}

/* lista numerada — blocos, etapas */
.module-list { margin: 0 0 34px; border-top: 1px solid var(--border); }

.module-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.m-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: var(--lima);
  -webkit-text-stroke: 1.4px var(--ink);
  paint-order: stroke fill;
}

.module-item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 7px;
  color: var(--ink);
}

.module-item p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--text-secondary); }

@media (max-width: 640px) {
  .module-item { grid-template-columns: 46px 1fr; gap: 14px; }
  .m-num { font-size: 26px; }
}

/* cards com inclinacao 3D */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 0 40px;
  perspective: 1000px;
}

.benefit-item {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px 28px;
  transform: rotateY(var(--rx, 0deg)) rotateX(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
  box-shadow: 0 1px 2px rgba(35, 36, 79, .04);
}

.benefit-item:hover {
  border-color: rgba(85, 87, 232, 0.42);
  box-shadow: 0 16px 40px rgba(35, 36, 79, .1);
}

.benefit-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}

.benefit-item p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--text-secondary); }

@media (max-width: 640px) {
  .benefit-list { grid-template-columns: 1fr; }
  .benefit-item { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-item { transform: none !important; }
}

/* os tres pilares, cada um com sua cor */
.pilar-pessoas { border-top: 4px solid var(--verde); }
.pilar-processos { border-top: 4px solid var(--laranja); }
.pilar-tecnologia { border-top: 4px solid var(--roxo); }

/* ---------- O RITMO DO BLOCO (duas semanas lado a lado) ---------- */

.ritmo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 34px;
}

.ritmo-semana {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px 26px;
}

.ritmo-semana.destaque {
  background: var(--roxo);
  border-color: var(--roxo);
}

.ritmo-titulo {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roxo);
  margin: 0 0 16px;
}

.ritmo-semana.destaque .ritmo-titulo { color: var(--lima); }

.ritmo-semana p { margin: 0 0 10px; font-size: 15.5px; line-height: 1.55; color: var(--text-secondary); }
.ritmo-semana p:last-child { margin-bottom: 0; }
.ritmo-semana p strong { color: var(--ink); font-weight: 700; }
.ritmo-semana.destaque p { color: rgba(255, 255, 255, 0.86); }
.ritmo-semana.destaque p strong { color: #fff; }

@media (max-width: 560px) {
  .ritmo { grid-template-columns: 1fr; }
}

/* aviso forte — a quinta presencial */
.aviso {
  background: var(--lima);
  border-radius: 18px;
  padding: 28px 26px 30px;
  margin: 0 0 40px;
}

.aviso h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--ink);
}

.aviso p { margin: 0 0 10px; font-size: 16px; line-height: 1.6; color: #2c2d3f; }
.aviso p:last-child { margin-bottom: 0; }
.aviso p strong { color: var(--ink); font-weight: 700; }

/* ---------- OS QUATRO PITCHES ---------- */

.pitches {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 20px;
}

.pitch-nota {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 40px;
}

/* ---------- LINHA DO TEMPO ---------- */

.timeline { position: relative; margin: 0 0 44px; padding-left: 26px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--verde), var(--roxo), var(--laranja));
  border-radius: 2px;
}

.tl-row { position: relative; padding: 0 0 26px; }

.tl-row::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2.5px solid var(--roxo);
}

.tl-row.marco::before { background: var(--laranja); border-color: var(--laranja); }

.tl-card { display: flex; flex-direction: column; gap: 3px; }

.tl-date {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--laranja);
}

.tl-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.22;
  color: var(--ink);
}

.tl-sub { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }

/* ---------- CTA ---------- */

.cta-duo,
.cta-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 48px 0 20px;
}

.cta-inline {
  font-size: 16px;
  font-weight: 700;
  background: var(--verde);
  color: var(--ink);
  border: 1px solid var(--verde);
  border-radius: 999px;
  padding: 15px 32px;
  text-decoration: none;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
}

.cta-inline:hover {
  background: #45c94d;
  border-color: #45c94d;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(88, 216, 95, .34);
}

.cta-secondary {
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-forte);
  border-radius: 999px;
  padding: 15px 32px;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
}

.cta-secondary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ---------- RODAPE ---------- */

footer {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: rgba(252, 253, 244, 0.82);
  margin-top: 70px;
  padding: 84px 0 56px;
}

.footer-line {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.14;
  text-align: center;
  color: var(--bg);
  margin: 0 auto 40px;
  max-width: 620px;
  text-wrap: balance;
}

.footer-line em { color: var(--lima); font-style: normal; }

footer .cta-secondary { color: var(--bg); border-color: rgba(252, 253, 244, 0.3); }
footer .cta-secondary:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

.contato { margin: 62px 0 52px; }

.contato-chamada {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.2;
  text-align: center;
  color: var(--bg);
  margin: 0 0 24px;
}

.contato-chamada em { color: var(--azul-claro); font-style: normal; }

.contato-cartoes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contato-cartao {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(252, 253, 244, 0.06);
  border: 1px solid rgba(252, 253, 244, 0.14);
  border-radius: 16px;
  padding: 18px 20px;
  text-decoration: none;
  transition: background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}

.contato-cartao:hover {
  background: rgba(252, 253, 244, 0.11);
  border-color: rgba(159, 232, 255, 0.5);
  transform: translateY(-2px);
}

.contato-icone { width: 24px; height: 24px; flex: 0 0 24px; color: var(--azul-claro); }

.contato-texto { display: flex; flex-direction: column; gap: 1px; min-width: 0; }

.contato-rotulo {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252, 253, 244, 0.5);
}

.contato-valor {
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .contato-cartoes { grid-template-columns: 1fr; }
}

.footer-marca {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 30px;
}

.footer-marca img { height: 46px; width: auto; opacity: .9; }

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--lima);
  margin: 0 0 40px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(252, 253, 244, 0.44);
  border-top: 1px solid rgba(252, 253, 244, 0.14);
  padding-top: 26px;
}

@media (max-width: 400px) {
  .wrap { padding: 0 20px; }
}

/* ---------- rotulos do SVG dos quatro pitches ---------- */

.pitches .p-num {
  font-family: var(--font-display);
  font-size: 34px;
  text-anchor: middle;
  dominant-baseline: central;
}

.pitches .p-lbl {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-anchor: middle;
}

.pitches .p-sub {
  font-family: var(--font-body);
  font-size: 12px;
  text-anchor: middle;
}

/* ---------- OS PROJETOS DA TURMA ---------- */

.projeto-list { margin: 0 0 34px; border-top: 1px solid var(--border); }

.projeto-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.projeto-item .p-n {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding-top: 5px;
}

.projeto-item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.18;
  margin: 0 0 3px;
  color: var(--ink);
}

.projeto-autor {
  font-size: 13px;
  font-weight: 600;
  color: var(--roxo);
  margin: 0 0 8px;
}

.projeto-autor span { color: var(--text-muted); font-weight: 400; }

.projeto-item p.assunto {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 560px) {
  .projeto-item { grid-template-columns: 1fr; gap: 6px; }
  .projeto-item .p-n { padding-top: 0; }
}

/* ---------- OS TRES SELECIONADOS ---------- */

.selecionados { display: flex; flex-direction: column; gap: 18px; margin: 0 0 34px; }

.selecionado {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 5px solid var(--verde);
  border-radius: 18px;
  padding: 26px 26px 28px;
  box-shadow: 0 1px 2px rgba(35, 36, 79, .04);
}

.selecionado:nth-child(2) { border-left-color: var(--laranja); }
.selecionado:nth-child(3) { border-left-color: var(--roxo); }

.sel-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lima);
  border-radius: 999px;
  padding: 4px 11px;
  margin: 0 0 13px;
}

.selecionado h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(21px, 3vw, 26px);
  line-height: 1.14;
  margin: 0 0 4px;
  color: var(--ink);
}

.sel-tagline {
  font-size: 15px;
  font-style: italic;
  color: var(--roxo);
  margin: 0 0 12px;
}

.sel-equipe {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.sel-equipe strong { color: var(--text-secondary); font-weight: 600; }

.selecionado p.assunto {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.66;
  color: var(--text-secondary);
}

.selecionado p.assunto:last-child { margin-bottom: 0; }
.selecionado p.assunto strong { color: var(--ink); font-weight: 700; }

.sel-frase {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  padding-left: 15px;
  border-left: 3px solid var(--lima);
}

@media (max-width: 560px) {
  .selecionado { padding: 22px 20px 24px; }
}
