/* ============================================================
   SAPYENS — DESIGN SYSTEM
   ============================================================ */

:root {
  /* Cores de marca */
  --midnight: #071226;
  --deep-intelligence: #0D1B3D;
  --sapyens-blue: #3765FF;
  --electric-indigo: #5753FF;
  --intelligence-violet: #9B4DFF;
  --human-cyan: #16C7F4;
  --creation-teal: #1ED6B5;

  /* Cores por universo */
  --kids-sun: #FFB84A;
  --teens-purple: #7657FF;
  --pro-blue: #2487FF;
  --business-emerald: #17BA91;
  --50-magenta: #DB5CAF;
  --educators-sky: #4FA8FF;

  /* Neutros */
  --white: #FFFFFF;
  --soft-white: #F7F9FD;
  --cloud: #EEF2F8;
  --border: #DDE4F0;
  --ink: #101A32;
  --muted: #66728A;

  /* Estado */
  --success: #20B978;
  --warning: #FFAD42;
  --error: #E74F61;

  --gradient-main: linear-gradient(135deg, #16C7F4 0%, #3765FF 42%, #9B4DFF 100%);

  /* Tipografia */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', 'Inter', -apple-system, sans-serif;

  /* Espaçamento */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(16, 26, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 26, 50, 0.10);
  --shadow-lg: 0 24px 60px rgba(7, 18, 38, 0.18);

  --max-width: 1240px;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(38px, 5.2vw, 76px); }
h2 { font-size: clamp(30px, 3.6vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 34px); }
p { font-size: clamp(16px, 1.2vw, 20px); color: var(--muted); margin: 0 0 var(--space-4); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--sapyens-blue);
  outline-offset: 2px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (max-width: 640px) {
  .container { padding: 0 var(--space-4); }
}

.section { padding: var(--space-9) 0; }
@media (max-width: 640px) { .section { padding: var(--space-7) 0; } }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sapyens-blue);
  margin-bottom: var(--space-3);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-secondary:hover { background: rgba(255,255,255,0.16); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--sapyens-blue); color: var(--sapyens-blue); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.header.is-solid {
  background: rgba(7, 18, 38, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); }
.logo { display: flex; flex-direction: column; color: var(--white); }
.logo strong { font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: 0.02em; }
.logo span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav-links { display: flex; gap: var(--space-5); list-style: none; margin: 0; padding: 0; }
.nav-links a { color: rgba(255,255,255,0.82); font-weight: 600; font-size: 15px; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: var(--space-4); }
.nav-actions a.link-entrar { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 15px; }

.menu-toggle {
  display: none;
  background: none; border: none; color: var(--white); cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-actions .link-entrar { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--midnight);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: var(--space-5);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-7); }
.mobile-menu a {
  color: var(--white); font-family: var(--font-display); font-weight: 700;
  font-size: 26px; padding: var(--space-3) 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn { margin-top: var(--space-6); }

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  background: radial-gradient(120% 100% at 100% 0%, #10265c 0%, var(--midnight) 55%);
  color: var(--white);
  padding-top: 120px;
  padding-bottom: var(--space-8);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero { padding-top: 110px; min-height: auto; }
}

.hero-copy .headline { margin-bottom: var(--space-5); }
.hero-copy .headline .accent {
  background: var(--gradient-main);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy .sub { color: rgba(255,255,255,0.72); font-size: clamp(16px, 1.4vw, 20px); max-width: 46ch; }
.hero-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; margin: var(--space-6) 0 var(--space-4); }
.hero-micro { font-size: 13px; color: rgba(255,255,255,0.5); }

.hero-flags {
  margin-top: var(--space-7);
  display: flex; gap: var(--space-3); flex-wrap: wrap;
}
.hero-flag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
}

/* ---------- Roleta humana (mosaico) ---------- */
.roulette {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.roulette-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--deep-intelligence);
  box-shadow: var(--shadow-md);
}
.roulette-tile:nth-child(2) { margin-top: var(--space-6); }
.roulette-tile:nth-child(5) { margin-top: calc(var(--space-6) * -1); }
@media (max-width: 640px) {
  .roulette-tile:nth-child(2), .roulette-tile:nth-child(5) { margin-top: 0; }
}
.roulette-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.35s ease;
}
.roulette-tile img.is-active { opacity: 1; }

/* ---------- Universos ---------- */
.universos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 960px) { .universos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .universos-grid { grid-template-columns: 1fr; } }

.universo-card {
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: var(--soft-white);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: block;
}
.universo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.universo-card .tag {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-full);
  color: var(--white); margin-bottom: var(--space-4);
}
.universo-card h3 { margin-bottom: var(--space-2); }
.universo-card p { font-size: 15px; margin-bottom: var(--space-3); }
.universo-card .goto { font-weight: 700; font-size: 14px; color: var(--ink); }

.u-kids .tag { background: var(--kids-sun); }
.u-teens .tag { background: var(--teens-purple); }
.u-pro .tag { background: var(--pro-blue); }
.u-business .tag { background: var(--business-emerald); }
.u-50 .tag { background: var(--50-magenta); }
.u-educadores .tag { background: var(--educators-sky); }

/* ---------- Cards genéricos ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
}
.plain-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  background: var(--white);
}
.plain-card h4 { margin-bottom: var(--space-2); font-size: 18px; }
.plain-card p { font-size: 14px; margin-bottom: 0; }

/* ---------- Seção escura utilitária ---------- */
.section-dark {
  background: var(--midnight);
  color: var(--white);
}
.section-dark p { color: rgba(255,255,255,0.68); }
.section-dark h2, .section-dark h3 { color: var(--white); }

/* ---------- Jornada ---------- */
.jornada {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: var(--space-3);
  scrollbar-width: thin;
}
.jornada-step {
  flex: 0 0 auto;
  min-width: 168px;
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  background: var(--soft-white);
  border: 1px solid var(--border);
  text-align: center;
}
.jornada-step .n {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-main); color: var(--white);
  font-weight: 800; margin: 0 auto var(--space-3);
}
.jornada-step strong { display: block; font-size: 14px; }

/* ---------- Score / quiz ---------- */
.score-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: var(--space-7);
  background: var(--soft-white);
}
.score-question { display: none; }
.score-question.is-active { display: block; }
.score-options { display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.score-option {
  text-align: left;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.score-option:hover { border-color: var(--sapyens-blue); }
.score-option.is-selected { border-color: var(--sapyens-blue); background: #EEF3FF; }
.score-progress {
  height: 6px; background: var(--cloud); border-radius: var(--radius-full); overflow: hidden;
  margin-bottom: var(--space-6);
}
.score-progress-bar { height: 100%; background: var(--gradient-main); width: 0%; transition: width 0.3s ease; }
.score-result { display: none; text-align: center; }
.score-result.is-active { display: block; }
.score-result .value {
  font-family: var(--font-display); font-size: 72px; font-weight: 800;
  background: var(--gradient-main); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.score-result .level {
  display: inline-block; margin: var(--space-3) 0 var(--space-5);
  padding: 8px 18px; border-radius: var(--radius-full); background: var(--cloud); font-weight: 700;
}

/* ---------- Form / lead capture ---------- */
.lead-form { display: grid; gap: var(--space-4); max-width: 480px; }
.field { display: grid; gap: var(--space-2); }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field input, .field select {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-size: 16px; font-family: inherit; background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus { border-color: var(--sapyens-blue); }
.form-status { font-size: 14px; min-height: 20px; }
.form-status.ok { color: var(--success); }
.form-status.err { color: var(--error); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--midnight); color: rgba(255,255,255,0.7); padding: var(--space-8) 0 var(--space-6); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: var(--space-7); margin-bottom: var(--space-5);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 { color: var(--white); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--space-4); }
.footer-col a { display: block; color: rgba(255,255,255,0.66); font-size: 14px; margin-bottom: var(--space-3); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); font-size: 13px; color: rgba(255,255,255,0.45); }

/* ---------- Badge de estado ---------- */
.badge-preparo {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-full);
  background: #FFF4E5; color: #A0631A; border: 1px solid #FFE1B3;
}

/* ---------- Página interna genérica ---------- */
.page-hero {
  padding-top: 150px; padding-bottom: var(--space-7);
  background: var(--midnight); color: var(--white);
}
.page-hero .eyebrow { color: var(--human-cyan); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 60ch; }

.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: var(--space-4); }
.breadcrumb a { color: rgba(255,255,255,0.75); }

.list-clean { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.list-clean li { padding-left: var(--space-5); position: relative; color: var(--ink); font-size: 16px; }
.list-clean li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient-main);
}

.cta-final {
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-7);
  background: var(--gradient-main);
  color: var(--white);
  text-align: center;
}
.cta-final h2 { color: var(--white); }
.cta-final p { color: rgba(255,255,255,0.85); max-width: 60ch; margin: 0 auto var(--space-5); }

.legal-body h2 { font-size: 24px; margin-top: var(--space-7); }
.legal-body h3 { font-size: 18px; margin-top: var(--space-5); }
.legal-body p, .legal-body li { color: var(--ink); font-size: 15px; }
.legal-body { max-width: 780px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* ============================================================
   COMPONENTES DO PROTÓTIPO APROVADO (hero roleta, personas, dial, livros)
   ============================================================ */

/* ---------- Roleta humana (hero) ---------- */
.people { position: relative; height: 560px; }
.person {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.34); border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(160deg, #213d76, #0d1934);
  cursor: pointer; transition: transform .32s ease, box-shadow .32s ease, filter .32s ease;
}
.person img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.98) contrast(1.02); transition: opacity .22s ease, transform .45s ease; }
.person:hover { transform: translateY(-8px) scale(1.018); box-shadow: 0 28px 72px rgba(0,0,0,.42); filter: saturate(1.04); }
.person:hover img { transform: scale(1.035); }
.person::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(4,10,24,.34)); opacity: .7;
}
.person::after {
  content: "↻"; position: absolute; right: 10px; top: 10px; z-index: 3;
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-size: 13px; color: #fff; background: rgba(6,16,38,.56); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16); opacity: 0; transform: translateY(-4px); transition: .2s;
}
.person:hover::after { opacity: 1; transform: none; }
.p1 { left: 0;    top: 130px; width: 150px; height: 330px; }
.p2 { left: 120px; top: 70px;  width: 170px; height: 390px; z-index: 1; }
.p3 { left: 255px; top: 25px;  width: 180px; height: 435px; z-index: 2; }
.p4 { left: 390px; top: 82px;  width: 170px; height: 378px; z-index: 2; }
.p5 { left: 505px; top: 140px; width: 145px; height: 320px; z-index: 1; }
.p6 { left: 560px; top: 205px; width: 118px; height: 255px; z-index: 0; }
.float-card {
  position: absolute; left: 95px; bottom: 8px; background: rgba(8,19,44,.76);
  backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.18);
  padding: 15px 18px; border-radius: 18px; color: #fff; font-weight: 700;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 4px; max-width: 260px;
}
.float-card span { font-size: 11px; color: #95e8ff; font-weight: 600; }
@media (max-width: 960px) {
  .people { height: 500px; }
}
@media (max-width: 640px) {
  .people { height: 390px; }
  .p1 { left: 0;     top: 110px; width: 90px;  height: 220px; }
  .p2 { left: 16%;   top: 70px;  width: 105px; height: 260px; }
  .p3 { left: 36%;   top: 30px;  width: 115px; height: 300px; }
  .p4 { left: 58%;   top: 75px;  width: 105px; height: 255px; }
  .p5 { left: auto; right: 8%; top: 120px; width: 90px; height: 210px; }
  .p6 { display: none; }
  .float-card { left: 8%; right: 8%; bottom: 0; font-size: 12px; max-width: none; }
}

/* ---------- Personas (cards de universo, estilo gradiente) ---------- */
.personas-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-3); }
@media (max-width: 960px) { .personas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .personas-grid { grid-template-columns: repeat(2, 1fr); } }
.persona {
  min-height: 290px; border-radius: var(--radius-lg); padding: var(--space-5);
  color: #fff; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
}
.persona::after {
  content: ""; position: absolute; right: -25px; bottom: -25px; width: 150px; height: 150px;
  border-radius: 50%; background: rgba(255,255,255,.12);
}
.persona small { opacity: .85; font-weight: 700; letter-spacing: .08em; font-size: 12px; }
.persona h3 { font-size: 24px; color: #fff; margin: 4px 0 0; }
.persona p { color: rgba(255,255,255,.88); font-size: 13px; line-height: 1.5; margin: 8px 0 0; }
.persona .mini { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; position: relative; z-index: 1; }
.persona.kids { background: linear-gradient(150deg, #ffbf51, #ff8b58); }
.persona.teens { background: linear-gradient(150deg, #8d6dff, #5d45d7); }
.persona.pro { background: linear-gradient(150deg, #37a3ff, #2660e7); }
.persona.business { background: linear-gradient(150deg, #24cfaa, #129a7c); }
.persona.older { background: linear-gradient(150deg, #ea79c8, #b34291); }
.persona.educators { background: linear-gradient(150deg, #66b9ff, #397fd7); }

/* ---------- Modos de aprendizagem (ícones) ---------- */
.modes { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-3); }
@media (max-width: 640px) { .modes { grid-template-columns: 1fr 1fr; } }
.mode { padding: var(--space-5); border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; display: block; }
.mode .icon {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cloud); font-size: 20px; margin-bottom: var(--space-4);
}
.mode strong { display: block; margin-bottom: 6px; font-size: 15px; }
.mode span { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ---------- Score dial ---------- */
.score-teaser {
  background: radial-gradient(circle at 74% 44%, rgba(22,199,244,.14), transparent 32%), linear-gradient(135deg, #08142c, #101d42);
  color: #fff; border-radius: var(--radius-lg); padding: var(--space-7);
  display: grid; grid-template-columns: 1fr .72fr 1fr; gap: var(--space-6); align-items: center;
}
.score-teaser p { color: #bac8e2; }
@media (max-width: 960px) { .score-teaser { grid-template-columns: 1fr; text-align: center; } }
.dial { width: 190px; height: 190px; margin: auto; border-radius: 50%; background: conic-gradient(var(--human-cyan) 0 27%, #24405f 27% 100%); display: grid; place-items: center; position: relative; }
.dial::before { content: ""; width: 150px; height: 150px; border-radius: 50%; background: #0b1730; position: absolute; }
.dial-content { position: relative; text-align: center; }
.dial-content small { font-size: 11px; letter-spacing: .1em; color: #8fa6cf; }
.dial-content b { display: block; font-size: 48px; line-height: 1; font-family: var(--font-display); }
.dial-content span { font-size: 12px; color: #bac8e2; }
.score-checks { display: grid; gap: var(--space-3); color: #d6e3fa; font-size: 14px; }
.score-checks span::before { content: "✓"; color: var(--creation-teal); margin-right: 10px; font-weight: 800; }

/* ---------- Chips de profissões ---------- */
.chips-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.chip {
  border: 1px solid var(--border); background: #fff; border-radius: var(--radius-full);
  padding: 10px 16px; font-size: 13px; font-weight: 700; color: var(--ink);
}
.chip:hover { border-color: var(--sapyens-blue); color: var(--sapyens-blue); }

/* ---------- Editora: pilha de livros ---------- */
.books {
  background: linear-gradient(145deg, #eef3ff, #fff); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-7); display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--space-6); align-items: center;
}
@media (max-width: 800px) { .books { grid-template-columns: 1fr; } }
.book-stack { display: flex; align-items: end; justify-content: center; gap: 8px; min-height: 260px; }
.book {
  width: 70px; border-radius: 8px 8px 3px 3px; box-shadow: 0 14px 30px rgba(25,51,96,.18);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 800;
  writing-mode: vertical-rl; transform: rotate(180deg); padding: 10px;
}
.book.b1 { height: 180px; background: var(--ink); }
.book.b2 { height: 220px; background: var(--sapyens-blue); }
.book.b3 { height: 250px; background: var(--intelligence-violet); }
.book.b4 { height: 205px; background: var(--business-emerald); }
.book.b5 { height: 235px; background: var(--midnight); }

/* ---------- Newsletter inline (CTA final) ---------- */
.newsletter {
  background: var(--gradient-main); color: #fff; border-radius: var(--radius-lg); padding: var(--space-7);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-6); align-items: center;
}
@media (max-width: 800px) { .newsletter { grid-template-columns: 1fr; } }
.newsletter h2, .newsletter p { color: #fff; }
.newsletter p { color: #eef3ff; }
.signup { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 640px) { .signup { flex-direction: column; } }
.signup input { flex: 1; min-width: 0; border: 0; border-radius: 14px; padding: 15px 16px; outline: none; font-size: 16px; }

/* ---------- Jornada com linha conectora ---------- */
.journey-line { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4); position: relative; margin-top: var(--space-6); }
.journey-line::before {
  content: ""; position: absolute; left: 7%; right: 7%; top: 29px; height: 2px;
  background: linear-gradient(90deg, var(--kids-sun), var(--teens-purple), var(--pro-blue), var(--creation-teal), var(--intelligence-violet));
}
@media (max-width: 960px) { .journey-line { grid-template-columns: repeat(3, 1fr); } .journey-line::before { display: none; } }
@media (max-width: 640px) { .journey-line { grid-template-columns: 1fr 1fr; } }
.journey-stage { position: relative; text-align: center; display: block; }
.journey-node {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: #fff; border: 2px solid var(--border);
  display: grid; place-items: center; font-weight: 900; position: relative; z-index: 2; box-shadow: 0 8px 24px rgba(33,62,114,.1); color: var(--ink);
}
.journey-stage strong { font-size: 14px; display: block; }
.journey-stage p { font-size: 12px; line-height: 1.5; margin: 6px 0 0; }

/* ---------- Learning grid (biblioteca + curso) ---------- */
.learning-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-5); }
@media (max-width: 800px) { .learning-grid { grid-template-columns: 1fr; } }
.learn-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); }
.learn-list { display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.learn-item { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-4); border-radius: var(--radius-md); background: var(--soft-white); }
.learn-item .num { font-family: var(--font-display); font-weight: 800; color: var(--sapyens-blue); }
.learn-item b { display: block; margin-bottom: 4px; font-size: 15px; }
.learn-item span { font-size: 13px; color: var(--muted); }
