/* ===================================================
   WE.FEEL LAB : Estilos Compartilhados
   Paleta: navy · teal · lavanda · rose · cream
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Mynerve&display=swap');

/* Elms Sans : fonte dos titulos, auto-hospedada (subset latin, swap).
   Coloque os .woff2 em /fonts/. Enquanto nao existirem, cai pro Quicksand. */
@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/elms-sans-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/elms-sans-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ─── Tokens ─── */
:root {
  --navy:     #142355;
  --blue:     #0f68b0;
  --rose:     #e69793;
  --rose-lt:  #f4c7c3;
  --teal:     #26665a;
  --teal-lt:  #c3e4dd;
  --lavanda:  #e0ccf3;
  --violeta:  #8e7ab5;
  --cream:    #F9F8F6;
  --bg:       #F7F5F1;
  --bg-alt:   #ffffff;
  --txt:      #142355;
  --txt-mid:  #3d4f7c;
  --txt-soft: #6b7db3;
  --border:   rgba(20,35,85,0.08);

  --font-t: 'Elms Sans', 'Quicksand', sans-serif;
  --font-b: 'Quicksand', sans-serif;
  --font-a: 'Mynerve', cursive;

  --nav-h: 70px;
  --r:  14px;
  --rl: 24px;
  --sh: 0 2px 20px rgba(20,35,85,0.07);
  --sh-md: 0 6px 40px rgba(20,35,85,0.10);
  --sh-lg: 0 12px 64px rgba(20,35,85,0.14);

  --stripe: linear-gradient(to right, var(--teal), var(--violeta), var(--rose));
}

/* ─── Dark mode tokens ─── */
[data-theme="dark"] {
  --bg:       #0e1b3a;
  --bg-alt:   #111f45;
  --txt:      rgba(255,255,255,0.92);
  --txt-mid:  rgba(255,255,255,0.60);
  --txt-soft: rgba(255,255,255,0.36);
  --border:   rgba(255,255,255,0.09);
  --sh:     0 2px 20px rgba(0,0,0,0.30);
  --sh-md:  0 6px 40px rgba(0,0,0,0.40);
  --sh-lg:  0 12px 64px rgba(0,0,0,0.50);
}

/* Nav dark */
[data-theme="dark"] .wf-nav { background: var(--bg); }

/* Cards dark */
[data-theme="dark"] .card       { background: rgba(255,255,255,0.05); border-color: var(--border); }
[data-theme="dark"] .card-teal  { background: rgba(38,102,90,0.22);   border-color: rgba(38,102,90,0.25); }
[data-theme="dark"] .card-lavanda{ background: rgba(142,122,181,0.20); border-color: rgba(142,122,181,0.22); }
[data-theme="dark"] .card-rose  { background: rgba(230,151,147,0.18); border-color: rgba(230,151,147,0.20); }

/* Componentes white → dark glass */
[data-theme="dark"] .exp-card,
[data-theme="dark"] .publico-card,
[data-theme="dark"] .time-card,
[data-theme="dark"] .fundamento-card,
[data-theme="dark"] .valor-item,
[data-theme="dark"] .dep-card,
[data-theme="dark"] .edicao-card,
[data-theme="dark"] .como-step,
[data-theme="dark"] .filter-btn {
  background: rgba(255,255,255,0.05);
  border-color: var(--border);
}
[data-theme="dark"] .proximo-card {
  background: rgba(255,255,255,0.05);
  border-color: var(--border);
}
[data-theme="dark"] .modal-box { background: var(--bg); }

/* tag-navy precisa de ajuste no dark (navy sobre navy fica invisível) */
[data-theme="dark"] .tag-navy {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

/* section-alt no dark fica ligeiramente diferente do bg */
[data-theme="dark"] .section-alt { background: var(--bg-alt); }

/* Missão dark */
[data-theme="dark"] .missao-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
}
[data-theme="dark"] .missao-quote       { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .missao-quote-author{ color: rgba(255,255,255,0.35); }

/* Exp page hero: filtros */
[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active { background: white; color: var(--navy); border-color: white; }

/* Proximo visual card (café) */
[data-theme="dark"] .proximo-visual {
  background: rgba(195,228,221,0.12);
  border: 1px solid rgba(195,228,221,0.15);
}

/* Card destaque (café) */
[data-theme="dark"] .oque-card-destaque { background: rgba(255,255,255,0.06); border: 1px solid var(--border); }

/* Edicao card hover */
[data-theme="dark"] .edicao-card:hover { background: rgba(255,255,255,0.08); }

/* Toggle button */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.2s; flex-shrink: 0;
  color: var(--txt-mid);
}
.theme-toggle:hover { background: rgba(20,35,85,0.06); border-color: var(--txt-soft); }
[data-theme="dark"] .theme-toggle:hover { background: rgba(255,255,255,0.08); }

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── Tipografia ─── */
h1 { font-family: var(--font-t); font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-family: var(--font-t); font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-family: var(--font-t); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-family: var(--font-t); font-size: 1rem; font-weight: 600; }
p  { line-height: 1.7; }
em, .accent { font-family: var(--font-a); font-style: italic; }
strong { font-weight: 700; }

/* ─── Nav ─── */
.wf-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-stripe {
  height: 3px;
  background: var(--stripe);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: var(--nav-h);
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-t); font-weight: 700; font-size: 1.1rem;
  color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--stripe);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-dot span {
  font-family: var(--font-a); font-size: 13px; color: white; font-style: italic; line-height: 1;
}

.nav-links {
  display: flex; align-items: center; gap: 18px;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--font-t); font-weight: 500; font-size: 0.875rem;
  color: var(--txt-mid); text-decoration: none;
  transition: color 0.2s; position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--stripe); border-radius: 2px;
}

.nav-cta-wrap { flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: absolute; top: calc(var(--nav-h) + 3px); left: 0; right: 0;
    background: var(--bg); padding: 28px 32px 32px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-md);
  }
  .nav-burger { display: flex; }
  .nav-cta-wrap { display: none; }
  /* CTAs do header reaparecem dentro do menu mobile aberto */
  .nav-links.open .nav-cta-mobile { display: flex; }
  .nav-links.open .nav-cta-mobile { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; padding-top: 8px; }
  .nav-links.open .nav-cta-mobile .btn { justify-content: center; }
}
/* item de CTA mobile fica escondido no desktop (usa-se .nav-cta-wrap la) */
.nav-cta-mobile { display: none; }

/* ─── Botões ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 100px;
  font-family: var(--font-t); font-weight: 700; font-size: 0.9rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.01em;
}
.btn-dark  { background: var(--navy); color: white; box-shadow: 0 4px 20px rgba(20,35,85,0.22); }
.btn-dark:hover  { background: #1e3478; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(20,35,85,0.30); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-teal  { background: var(--teal); color: white; box-shadow: 0 4px 20px rgba(38,102,90,0.25); }
.btn-teal:hover  { background: #1d4f43; transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }

/* ─── Seções ─── */
.section { padding: 88px 0; }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: white; }

.section-eyebrow {
  font-family: var(--font-t); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px; display: block;
}
.section-eyebrow.rose   { color: var(--rose);    }
.section-eyebrow.lavanda{ color: var(--violeta);  }
.section-eyebrow.navy   { color: var(--teal-lt);  }

.section-stripe {
  width: 48px; height: 3px; border-radius: 2px;
  background: var(--stripe); margin: 14px 0 44px;
}
.section-stripe.teal   { background: var(--teal);    }
.section-stripe.rose   { background: var(--rose);    }
.section-stripe.lavanda{ background: var(--violeta); }

/* ─── Hero interior ─── */
.page-hero {
  padding: 72px 32px 64px;
  max-width: 1180px; margin: 0 auto; text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.1rem; color: var(--txt-mid); max-width: 580px; margin: 0 auto; }

/* ─── Cards ─── */
.card {
  background: white; border-radius: var(--r);
  padding: 32px; box-shadow: var(--sh);
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.card-teal    { background: rgba(195,228,221,0.45); border-color: rgba(38,102,90,0.15); }
.card-lavanda { background: rgba(224,204,243,0.45); border-color: rgba(142,122,181,0.15); }
.card-rose    { background: rgba(244,199,195,0.45); border-color: rgba(230,151,147,0.15); }

/* ─── Grid ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
}

/* ─── "O Fio" : linha decorativa SVG ─── */
.fio-svg {
  position: absolute; pointer-events: none;
  overflow: visible;
}

/* ─── Tag / Badge ─── */
.tag {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.tag-teal    { background: var(--teal-lt);  color: var(--teal); }
.tag-lavanda { background: var(--lavanda);  color: var(--violeta); }
.tag-rose    { background: var(--rose-lt);  color: #a3534e; }
.tag-navy    { background: rgba(20,35,85,0.1); color: var(--navy); }

/* ─── Número grande ─── */
.big-num {
  font-family: var(--font-t); font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; line-height: 1; letter-spacing: -0.03em;
}

/* ─── Separador ─── */
.divider {
  border: none; border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── Modal ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(20,35,85,0.55); backdrop-filter: blur(6px);
  padding: 40px 24px; overflow-y: auto;
  align-items: flex-start; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg); border-radius: var(--rl);
  max-width: 640px; width: 100%; margin: auto;
  padding: 48px; position: relative;
  box-shadow: 0 24px 80px rgba(20,35,85,0.18);
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-mid); font-size: 1.3rem; transition: background 0.2s;
}
.modal-close:hover { background: rgba(20,35,85,0.07); }
.em-num  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-soft); margin-bottom: 4px; }
.em-theme{ font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.em-title{ font-size: clamp(1.3rem,3vw,1.8rem); font-weight: 700; margin-bottom: 16px; }
.em-gancho{ font-size: 1rem; font-weight: 500; color: var(--txt-mid); margin-bottom: 8px; }
.em-hook { font-family: var(--font-a); font-size: 1.05rem; color: var(--txt-soft); margin-bottom: 28px; font-style: italic; }
.em-block { margin-bottom: 20px; }
.em-block h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.em-block p { font-size: 0.9rem; color: var(--txt-mid); }
.em-formats { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.em-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: white;
  padding: 13px 28px; border-radius: 100px;
  font-family: var(--font-t); font-weight: 700; font-size: 0.875rem;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(38,102,90,0.25);
}
.em-cta:hover { background: #1d4f43; transform: translateY(-1px); }

/* ─── Animação scroll ─── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Footer ─── */
.wf-footer { background: var(--navy); color: white; padding: 72px 32px 36px; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
}
.footer-brand-name {
  font-family: var(--font-t); font-size: 1.15rem; font-weight: 700;
  color: white; margin-bottom: 12px;
}
.footer-brand-name span { color: var(--teal-lt); }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 260px; }
.footer-col h5 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,0.7);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-stripe {
  display: block; width: 64px; height: 3px; border-radius: 2px;
  background: var(--stripe); margin: 0 0 20px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wf-footer { padding: 56px 20px 28px; }
}

/* ===================================================
   COMPONENTES COMPARTILHADOS v2 (adicionados p/ as novas paginas)
   Reutilizaveis, nomes claros. Cor por eixo:
   individual/B2C = teal · lideranca = violeta · equipes/B2B = rose
   =================================================== */

/* ─── Utilidades de contraste (nunca branco sobre rosa/lavanda) ─── */
.on-light   { color: var(--navy); }        /* use sobre rose/lavanda/teal-lt */
.txt-teal   { color: var(--teal); }
.txt-violeta{ color: var(--violeta); }
.txt-rose   { color: #a3534e; }             /* rose escurecido p/ contraste AA */
.txt-navy   { color: var(--navy); }
/* Blocos de fundo claro forcam texto navy independente do tema */
.bg-rose, .bg-lavanda, .bg-teal-lt { color: var(--navy); }
.bg-rose    { background: var(--rose-lt); }
.bg-lavanda { background: var(--lavanda); }
.bg-teal-lt { background: var(--teal-lt); }
[data-theme="dark"] .bg-rose,
[data-theme="dark"] .bg-lavanda,
[data-theme="dark"] .bg-teal-lt { color: var(--navy); } /* mantem navy mesmo no dark */

/* ─── Vidro: 1 destaque por pagina. Use .glass-card com parcimonia ─── */
.glass-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--rl); box-shadow: var(--sh-md);
}
[data-theme="dark"] .glass-card {
  background: rgba(255,255,255,0.06);
  border-color: var(--border);
}

/* ─── Blob decorativo: no maximo 1 por secao. Atenuado ─── */
.blob {
  position: absolute; z-index: 0; pointer-events: none;
  width: 340px; height: 340px; border-radius: 50%;
  filter: blur(60px); opacity: 0.16;
}
.blob-teal    { background: var(--teal); }
.blob-violeta { background: var(--violeta); }
.blob-rose    { background: var(--rose); }
[data-theme="dark"] .blob { opacity: 0.22; }

/* ─── Ghost number ATENUADO (correcao de audit) ─── */
/* Antes gigante/translucido; agora sobrio, ancorado, pequeno. */
.step-num {
  font-family: var(--font-t); font-weight: 700;
  font-size: 1rem; line-height: 1;
  width: 40px; height: 40px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--teal-lt); color: var(--teal);
}
.step-num.violeta { background: var(--lavanda); color: var(--violeta); }
.step-num.rose    { background: var(--rose-lt); color: #a3534e; }

/* ─── 1. ROTEAMENTO POR TRILHA (home) ─── */
.track-router {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; position: relative;
}
.track-card {
  display: flex; flex-direction: column;
  padding: 40px; border-radius: var(--rl);
  background: var(--bg-alt); border: 1px solid var(--border);
  box-shadow: var(--sh); text-decoration: none; color: inherit;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative; overflow: hidden;
}
.track-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.track-card .track-eyebrow {
  font-family: var(--font-t); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px;
}
.track-card h3 { margin-bottom: 10px; color: var(--txt); }
.track-card p  { font-size: 0.95rem; color: var(--txt-mid); margin-bottom: 24px; flex: 1; }
.track-card .track-go {
  font-family: var(--font-t); font-weight: 700; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
}
/* topo colorido por eixo : mesmo peso visual entre os dois */
.track-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.track-card.teal::before    { background: var(--teal); }
.track-card.teal .track-eyebrow, .track-card.teal .track-go    { color: var(--teal); }
.track-card.teal:hover  { border-color: rgba(38,102,90,0.35); }
.track-card.violeta::before { background: var(--violeta); }
.track-card.violeta .track-eyebrow, .track-card.violeta .track-go { color: var(--violeta); }
.track-card.violeta:hover { border-color: rgba(142,122,181,0.4); }
@media (max-width: 640px) { .track-router { grid-template-columns: 1fr; } }

/* ─── 2. CRIADORES / FOUNDERS ─── */
.founders {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 40px; position: relative;
}
.founder {
  display: flex; flex-direction: column; gap: 18px; position: relative; z-index: 1;
}
/* placeholder tonal 4:5 com inicial navy : nao depende de foto */
.founder-photo {
  aspect-ratio: 4 / 5; width: 100%; border-radius: var(--rl);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-lt);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .founder-initial {
  font-family: var(--font-t); font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem); color: var(--navy); opacity: 0.55;
  line-height: 1;
}
.founder.violeta .founder-photo { background: var(--lavanda); }
.founder.rose    .founder-photo { background: var(--rose-lt); }
.founder-name { font-family: var(--font-t); font-weight: 700; font-size: 1.3rem; color: var(--txt); }
.founder-role {
  font-family: var(--font-t); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em; margin-top: 2px; color: var(--teal);
}
.founder.violeta .founder-role { color: var(--violeta); }
.founder.rose    .founder-role { color: #a3534e; }
.founder-bio { font-size: 0.95rem; color: var(--txt-mid); }
.founder-quote {
  font-family: var(--font-a); font-style: italic;
  font-size: 1.15rem; color: var(--txt-mid); line-height: 1.5;
  padding-left: 18px; border-left: 2px solid var(--teal-lt);
}
.founder.violeta .founder-quote { border-color: var(--lavanda); }
.founder.rose    .founder-quote { border-color: var(--rose-lt); }
/* o Fio costurando os criadores (SVG posicionado no container .founders) */
.founders .fio-stitch {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: visible;
}
@media (max-width: 640px) { .founders { grid-template-columns: 1fr; } }

/* ─── 3. MANIFESTO : alternador duas versoes ─── */
.manifesto-toggle {
  display: inline-flex; padding: 4px; gap: 4px;
  background: rgba(20,35,85,0.06); border-radius: 100px; margin-bottom: 36px;
}
[data-theme="dark"] .manifesto-toggle { background: rgba(255,255,255,0.08); }
.manifesto-toggle button {
  font-family: var(--font-t); font-weight: 700; font-size: 0.85rem;
  padding: 9px 22px; border-radius: 100px; border: none; cursor: pointer;
  background: transparent; color: var(--txt-mid); transition: all 0.2s;
}
.manifesto-toggle button.active { background: var(--navy); color: white; }
[data-theme="dark"] .manifesto-toggle button.active { background: white; color: var(--navy); }
.manifesto-pane { display: none; animation: wf-fade 0.4s ease; }
.manifesto-pane.active { display: block; }
@keyframes wf-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ─── 4. TESTE DO SENTIR (quiz) ─── */
.quiz {
  max-width: 620px; margin: 0 auto; position: relative;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--rl); box-shadow: var(--sh); padding: 40px;
  min-height: 380px;
}
.quiz-progress {
  height: 6px; border-radius: 3px; background: rgba(20,35,85,0.08);
  overflow: hidden; margin-bottom: 32px;
}
[data-theme="dark"] .quiz-progress { background: rgba(255,255,255,0.1); }
.quiz-progress-bar {
  height: 100%; width: 0%; background: var(--stripe);
  border-radius: 3px; transition: width 0.45s ease;
}
.quiz-step { display: none; animation: wf-fade 0.45s ease; }
.quiz-step.active { display: block; }
.quiz-step .quiz-count {
  font-family: var(--font-t); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--txt-soft); margin-bottom: 12px;
}
.quiz-step h3 { margin-bottom: 24px; color: var(--txt); }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  text-align: left; width: 100%;
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 500;
  padding: 16px 20px; border-radius: var(--r); cursor: pointer;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--txt); transition: all 0.18s;
}
.quiz-option:hover { border-color: var(--teal); background: rgba(38,102,90,0.06); }
.quiz-option.selected { border-color: var(--teal); background: var(--teal-lt); color: var(--navy); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.quiz-back {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-t); font-weight: 600; font-size: 0.85rem; color: var(--txt-soft);
}
.quiz-back:hover { color: var(--txt); }
.quiz-back[disabled] { opacity: 0; pointer-events: none; }
/* Resultado */
.quiz-result { display: none; text-align: center; animation: wf-fade 0.5s ease; }
.quiz-result.active { display: block; }
.quiz-result .quiz-result-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal-lt); color: var(--teal); font-size: 2rem; margin-bottom: 20px;
}
.quiz-result h3 { margin-bottom: 12px; }
.quiz-result p  { color: var(--txt-mid); max-width: 440px; margin: 0 auto 28px; }

/* ─── 5. LP ENXUTA (campanha) ─── */
.lp-hero {
  min-height: 62vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 72px 24px; position: relative; overflow: hidden;
}
.lp-hero h1 { max-width: 720px; margin-bottom: 18px; }
.lp-hero h1 em { display: block; color: var(--teal); }
.lp-hero .lp-sub { font-size: 1.1rem; color: var(--txt-mid); max-width: 520px; margin-bottom: 36px; }
.lp-form {
  display: flex; gap: 12px; width: 100%; max-width: 480px;
  margin: 0 auto; flex-wrap: wrap;
}
.lp-form input {
  flex: 1; min-width: 200px;
  padding: 14px 18px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--bg-alt);
  font-family: var(--font-b); font-size: 0.95rem; color: var(--txt);
}
.lp-form input:focus { outline: none; border-color: var(--teal); }
.lp-form .btn { flex-shrink: 0; }
.lp-note { font-size: 0.78rem; color: var(--txt-soft); margin-top: 14px; }

/* ─── 6. FORM B2B + CAPTURA DE LEAD/COMUNIDADE ─── */
.form-b2b {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 720px; margin: 0 auto;
}
.form-b2b .field { display: flex; flex-direction: column; gap: 7px; }
.form-b2b .field.full { grid-column: 1 / -1; }
.form-b2b label {
  font-family: var(--font-t); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.02em; color: var(--txt-mid);
}
.form-b2b input, .form-b2b select, .form-b2b textarea {
  padding: 13px 16px; border-radius: var(--r);
  border: 1.5px solid var(--border); background: var(--bg-alt);
  font-family: var(--font-b); font-size: 0.95rem; color: var(--txt);
}
.form-b2b input:focus, .form-b2b select:focus, .form-b2b textarea:focus {
  outline: none; border-color: var(--violeta);
}
.form-b2b textarea { min-height: 120px; resize: vertical; }
.form-b2b .form-actions { grid-column: 1 / -1; }
/* mensagem de erro de campo (evento form_error) */
.field-error { font-size: 0.78rem; color: #c0524d; display: none; }
.field.invalid .field-error { display: block; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c0524d; }
@media (max-width: 560px) { .form-b2b { grid-template-columns: 1fr; } }

/* Bloco de captura de e-mail / comunidade */
.lead-capture {
  max-width: 560px; margin: 0 auto; text-align: center;
  padding: 40px; border-radius: var(--rl);
  background: var(--teal-lt); color: var(--navy);
}
[data-theme="dark"] .lead-capture { background: rgba(38,102,90,0.22); color: var(--txt); }
.lead-capture h3 { color: var(--navy); margin-bottom: 8px; }
[data-theme="dark"] .lead-capture h3 { color: var(--txt); }
.lead-capture p { font-size: 0.92rem; margin-bottom: 24px; opacity: 0.85; }
.lead-capture .lp-form input { background: rgba(255,255,255,0.85); border-color: transparent; color: var(--navy); }
[data-theme="dark"] .lead-capture .lp-form input { background: var(--bg-alt); color: var(--txt); }

/* ─── 7. PLACEHOLDER DE IMAGEM POR EXPERIENCIA ─── */
/* Nao depende de foto: o Fio na cor do eixo dentro de um bloco tonal */
.exp-visual {
  aspect-ratio: 16 / 10; width: 100%; border-radius: var(--r);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-lt);
}
.exp-visual.violeta { background: var(--lavanda); }
.exp-visual.rose    { background: var(--rose-lt); }
.exp-visual img { width: 100%; height: 100%; object-fit: cover; }
.exp-visual svg { width: 78%; height: 78%; }
.exp-visual .exp-label {
  position: absolute; bottom: 14px; left: 16px;
  font-family: var(--font-t); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); opacity: 0.7;
}

/* ─── Banner de consentimento LGPD (usado pelo analytics.js) ─── */
.wf-consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  max-width: 640px; margin: 0 auto;
  background: var(--navy); color: white;
  border-radius: var(--r); box-shadow: var(--sh-lg);
  padding: 18px 20px; display: flex; align-items: center; gap: 16px;
  font-size: 0.85rem; flex-wrap: wrap;
}
.wf-consent p { flex: 1; min-width: 200px; color: rgba(255,255,255,0.85); }
.wf-consent a { color: var(--teal-lt); text-decoration: underline; }
.wf-consent .wf-consent-actions { display: flex; gap: 8px; }
.wf-consent button {
  font-family: var(--font-t); font-weight: 700; font-size: 0.8rem;
  padding: 9px 18px; border-radius: 100px; border: none; cursor: pointer;
}
.wf-consent .wf-accept { background: var(--teal-lt); color: var(--navy); }
.wf-consent .wf-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); }

/* ─── Utilidades de posicionamento p/ blobs/fio ─── */
.rel { position: relative; }
.ov-hidden { overflow: hidden; }
