@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700&family=Nunito:wght@400;500;600;700&display=swap');

:root {
  --ink: #07194b;
  --text: #17265c;
  --muted: #5c6592;
  --line: #dfe4f4;
  --panel: #ffffff;
  --soft: #f7f8ff;
  --teal: #08a994;
  --blue: #2197dd;
  --purple: #6a34d3;
  --violet: #7a43dc;
  --shadow: 0 18px 50px rgba(55, 56, 125, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  /* fundo EXATO da plataforma: gradiente sutil #FAF8FD -> off-white -> #F4F8F5 */
  background: linear-gradient(180deg, #FAF8FD 0%, #FBFAF6 50%, #F4F8F5 100%);
  background-attachment: fixed;
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
}

/* títulos na fonte da plataforma (Baloo 2) */
h1, h2, h3, .brand-name {
  font-family: "Baloo 2", system-ui, sans-serif;
}

/* ===== cabeçalho unificado (mesmo menu da Sobre nós) ===== */
.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(101, 69, 214, 0.18);
  backdrop-filter: blur(16px);
}
.logo-lockup { display: inline-flex; align-items: center; gap: 11px; }
.main-nav { display: flex; gap: 40px; margin-left: 26px; font-size: 13px; font-weight: 600; }
.main-nav a { position: relative; padding: 24px 0 22px; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav .active { color: var(--purple); }
.main-nav .active::after { position: absolute; right: 0; bottom: 13px; left: 0; height: 2px; content: ""; border-radius: 4px; background: var(--purple); }
.header-actions { display: flex; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 17px; border: 1px solid transparent; border-radius: 9px; font-size: 12px; font-weight: 750; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn-ghost { border-color: #b9a9ed; color: var(--purple); background: rgba(255, 255, 255, 0.72); }
.btn-primary { min-width: 139px; color: #fff; background: linear-gradient(135deg, #7254df, #5631bd); box-shadow: 0 10px 22px rgba(101, 69, 214, 0.24); }

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header,
main {
  width: min(1200px, calc(100% - 72px));
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 92px;
}

.brand img {
  width: 282px;
  max-width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 54px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(120deg, #26a8df 0%, #7632d4 100%);
  box-shadow: 0 14px 30px rgba(96, 63, 214, 0.25);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: #b7d1f1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.02fr) minmax(330px, 0.86fr) minmax(210px, 0.52fr);
  align-items: center;
  gap: 28px;
  padding: 38px 0 22px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--purple);
}

.hero-copy p {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: end center;
  min-height: 390px;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  width: min(470px, 100%);
  border-radius: 18px;
  filter: drop-shadow(0 22px 30px rgba(55, 42, 112, 0.16));
}

.geni-card {
  padding: 28px 28px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.geni-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.geni-card h2 span {
  color: var(--violet);
}

.geni-card p {
  margin: 14px 0 24px;
  color: var(--text);
  font-size: 17px;
}

.geni-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.geni-card li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.geni-card li span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #6755cf;
  border-radius: 999px;
  color: #6755cf;
  font-size: 12px;
  line-height: 1;
}

.belief-strip,
.audience,
.journey,
.story,
.closing-strip {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(79, 82, 140, 0.06);
}

.belief-strip {
  display: grid;
  grid-template-columns: auto 1.25fr 1px 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px 34px;
}

.belief-strip strong {
  display: block;
  color: #5032cb;
  font-size: 17px;
}

.belief-strip p {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 16px;
}

.heart-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #6e47d7;
  background: #f0ebff;
  font-size: 48px;
  line-height: 1;
}

.belief-divider {
  width: 1px;
  min-height: 82px;
  background: var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.feature-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 176px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(79, 82, 140, 0.06);
}

.feature-card h2,
.audience h2,
.journey h2,
.story h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.14;
}

.feature-card p,
.audience p,
.story p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 16px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
}

.person-icon {
  position: relative;
  background: #e3faf5;
}

.person-icon::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 8px solid #079b87;
  border-radius: 50%;
  transform: translateY(-10px);
}

.person-icon::after {
  content: "";
  position: absolute;
  bottom: 26px;
  width: 52px;
  height: 34px;
  border: 8px solid #079b87;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  border-bottom: 0;
}

.robot-icon {
  background: #f1ecff;
  overflow: visible;
}

.robot-icon img {
  width: 130px;
  max-width: none;
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
  filter: drop-shadow(0 10px 16px rgba(106, 52, 211, 0.18));
}

.play-icon {
  position: relative;
  background: #eef3ff;
}

.play-icon::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #42a7e6, #6650d8);
}

.play-icon::after {
  content: "";
  position: absolute;
  border-left: 18px solid #ffffff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

.audience {
  margin-top: 28px;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,251,255,0.98));
}

.audience-reference {
  width: 100%;
  margin: 28px auto 0;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  aspect-ratio: 882 / 227;
}

.audience-reference img {
  display: block;
  width: 116.1%;
  max-width: none;
  height: auto;
  margin: 0;
  transform: translateX(-7.8125%);
}

.audience-titlebar {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.audience-titlebar p {
  max-width: 690px;
  margin: 10px auto 0;
  color: #48577f;
  font-size: 16px;
  line-height: 1.5;
}

.audience-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.audience-tile {
  --tile-color: #2397df;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 18px 22px;
  border: 1px solid #dfe6ee;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: #14214b;
  box-shadow: 0 8px 22px rgba(20, 33, 75, 0.028);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.audience-tile svg {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--tile-color);
  background: transparent;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-tile strong {
  color: #07194b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.audience-tile:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--tile-color) 42%, #dfe5f4);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(20, 33, 75, 0.09);
}

.audience-tile.blue { --tile-color: #2397df; }
.audience-tile.purple { --tile-color: #6f43d6; }
.audience-tile.teal { --tile-color: #0ea892; }
.audience-tile.orange { --tile-color: #eb7a2f; }

.journey {
  margin-top: 28px;
  padding: 26px 0 0;
  overflow: hidden;
}

.journey h2 {
  text-align: center;
}

/* ===== Jornada v2: icones modernos em circulos suaves ===== */
.journey-v2 { padding: 38px 0 6px; }
.journey-sub {
  text-align: center;
  max-width: 660px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.journey-v2 .journey-grid {
  position: relative;
  margin-top: 46px;
  border-top: 0;
}
.journey-v2 .journey-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
  border-top: 2px dashed #dcd5f4;
  z-index: 0;
}
.journey-v2 .journey-step {
  min-height: 0;
  padding: 34px 12px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.journey-v2 .journey-step > span {
  z-index: 2;
  width: 34px;
  height: 34px;
  top: -17px;
  box-shadow: 0 6px 14px rgba(20, 33, 75, 0.14);
}
.step-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 10px 0 16px;
  background: color-mix(in srgb, var(--step) 13%, #ffffff);
}
.step-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--step);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.journey-v2 .journey-step h3 {
  min-height: 38px;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.step-line {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--step);
  margin: 12px 0 14px;
}
.journey-v2 .journey-step p {
  font-size: 12px;
  line-height: 1.5;
}

.journey-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 26px 16px 20px;
  padding: 20px 28px;
  border-radius: 18px;
  background: #efeaff;
}
.jb-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex: none;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #7254df, #5631bd);
}
.jb-icon svg { width: 26px; height: 26px; fill: currentColor; stroke: none; }
.journey-banner strong { display: block; color: #5b34c9; font-size: 17px; }
.journey-banner > div p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

@media (max-width: 1080px) {
  .journey-v2 .journey-grid::before { display: none; }
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(104px, 1fr));
  align-items: stretch;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.journey-step {
  position: relative;
  min-height: 238px;
  padding: 36px 14px 18px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.journey-step:first-child {
  border-left: 0;
}

.journey-step > span {
  position: absolute;
  left: 50%;
  top: -18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--step);
  font-size: 15px;
  font-weight: 900;
  transform: translateX(-50%);
}

.journey-step > span::before {
  content: attr(data-number);
}

.journey-step h3 {
  min-height: 44px;
  margin: 13px 0 8px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.journey-step p {
  margin: 0;
  color: var(--text);
  font-size: 11px;
  line-height: 1.42;
}

.teal { --step: #0fa994; color: #0fa994; }
.blue { --step: #229de1; color: #229de1; }
.indigo { --step: #4051af; color: #4051af; }
.violet { --step: #7d43d7; color: #7d43d7; }
.magenta { --step: #a83bc4; color: #a83bc4; }
.orange { --step: #e9632c; color: #e9632c; }
.amber { --step: #e6a50b; color: #e6a50b; }
.green { --step: #18a66c; color: #18a66c; }

.line-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.user-shape::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.user-shape::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 2px;
  width: 34px;
  height: 25px;
  border: 3px solid currentColor;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  border-bottom: 0;
}

.path-shape::before,
.path-shape::after {
  content: "";
  position: absolute;
  border: 3px solid currentColor;
}

.path-shape::before {
  width: 30px;
  height: 30px;
  left: 8px;
  top: 8px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.path-shape::after {
  width: 8px;
  height: 8px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  box-shadow: 30px 29px 0 -1px #ffffff, 30px 29px 0 2px currentColor;
}

.doc-shape::before,
.report-shape::before {
  content: "";
  position: absolute;
  inset: 4px 10px;
  border: 3px solid currentColor;
  border-radius: 2px;
}

.doc-shape::after,
.report-shape::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 16px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
}

.game-shape::before {
  content: "";
  position: absolute;
  inset: 15px 4px 10px;
  border: 3px solid currentColor;
  border-radius: 18px;
}

.game-shape::after {
  content: "+";
  position: absolute;
  left: 12px;
  top: 13px;
  color: currentColor;
  font-size: 18px;
  font-weight: 800;
}

.chat-shape::before {
  content: "";
  position: absolute;
  inset: 8px 4px 12px;
  border: 3px solid currentColor;
  border-radius: 18px;
}

.chat-shape::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor;
}

.video-shape::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 28px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.video-shape::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 17px;
  border-left: 14px solid currentColor;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.heart-shape::before {
  content: "♡";
  position: absolute;
  inset: -9px 0 0;
  font-size: 60px;
  line-height: 1;
}

.chart-shape::before {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 6px;
  height: 16px;
  border: 3px solid currentColor;
  box-shadow: 12px -8px 0 -3px #ffffff, 12px -8px 0 0 currentColor, 24px -18px 0 -3px #ffffff, 24px -18px 0 0 currentColor;
}

.chart-shape::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 6px;
  width: 28px;
  height: 20px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: skewY(-30deg);
}

.story {
  display: grid;
  grid-template-columns: 320px 1fr 1.6fr;
  gap: 34px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
}

.story-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

.story-copy {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

/* ====== Secao 2 colunas (texto+imagem | diferenciais) ====== */
.story-2col {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 44px;
}
.story-2col .story-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.story-2col .story-photo img {
  width: 100%;
  border-radius: 20px;
}
.story-2col .story-copy {
  padding-right: 0;
  border-right: 0;
}
.story-2col .story-copy h2 {
  font-size: 27px;
  line-height: 1.25;
  margin: 0 0 16px;
}
.story-2col .story-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 14px;
}
.story-2col .story-copy p:last-child { margin-bottom: 0; }

.story-2col .difference h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}

/* Grid de diferenciais premium */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 28px;
  margin-top: 30px;
}
.diff-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diff-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: none;
}
.diff-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.diff-item strong {
  display: block;
  color: #07194b;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}
.diff-item p {
  margin: 0;
  color: #5c6592;
  font-size: 14.5px;
  line-height: 1.65;
}
.ic-blue   { color: #2397df; background: rgba(35, 151, 223, 0.1); }
.ic-purple { color: #6f43d6; background: rgba(111, 67, 214, 0.1); }
.ic-green  { color: #0ea892; background: rgba(14, 168, 146, 0.1); }
.ic-orange { color: #eb7a2f; background: rgba(235, 122, 47, 0.1); }

@media (max-width: 900px) {
  .story-2col { grid-template-columns: 1fr; gap: 36px; padding: 32px 24px; }
}
@media (max-width: 560px) {
  .diff-grid { grid-template-columns: 1fr; }
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  margin-top: 22px;
}

.difference-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  align-items: start;
}

.difference-grid strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.difference-grid p {
  grid-column: 2;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.35;
}

.bubble {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #6650d8;
  font-size: 28px;
}

.blue-soft { background: #e9f4ff; color: #2b91d0; }
.pink-soft { background: #ffeefa; color: #d244b2; }
.mint-soft { background: #e9fbf5; color: #18a687; }
.purple-soft { background: #eeeaff; color: #6e55d8; }
.peach-soft { background: #fff0e8; color: #ee6b38; }
.lilac-soft { background: #f4edff; color: #7f43d8; }

.empathy-list {
  margin-top: 28px;
  padding: 34px 44px 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(79, 82, 140, 0.06);
}

.empathy-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.empathy-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.18;
}

.empathy-heading p {
  max-width: 760px;
  margin: 12px auto 0;
  color: #48577f;
  font-size: 16px;
  line-height: 1.5;
}

.empathy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 28px auto 0;
}

/* Grid de personas com ilustracoes (6 colunas) */
.persona-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 26px auto 0;
}

.empathy-card {
  --card-color: #2397df;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 16px 20px;
  border: 1px solid #dce3eb;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(20, 33, 75, 0.03);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

/* Card de persona: vertical, ilustracao em cima e rotulo embaixo */
.persona-grid .empathy-card {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-height: 0;
  padding: 8px 8px 10px;
  border-radius: 14px;
  text-align: center;
}

.empathy-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--card-color) 42%, #dce3eb);
  box-shadow: 0 16px 34px rgba(20, 33, 75, 0.08);
}

.persona-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  background: #f4f6fb;
  display: block;
}

.empathy-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  color: var(--card-color);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.empathy-card strong {
  color: #07194b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.persona-grid .empathy-card strong {
  color: var(--card-color);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 700;
  overflow-wrap: break-word;
  hyphens: auto;
}

.empathy-card.blue { --card-color: #238cc8; }
.empathy-card.purple { --card-color: #7d4cc9; }
.empathy-card.teal { --card-color: #139a7e; }
.empathy-card.orange { --card-color: #c88432; }

.closing-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  margin: 18px auto 32px;
  padding: 22px 42px;
  color: var(--muted);
  background: #f1ecff;
}

.closing-strip strong {
  color: #683fd6;
  font-size: 20px;
  text-align: center;
}

.closing-strip span {
  padding-left: 34px;
  border-left: 1px solid #d6cffa;
  font-size: 16px;
}

/* ── Acessibilidade para neurodivergentes ────────────────── */
.a11y-neuro {
  margin: 28px 0 0;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(79, 82, 140, 0.06);
}

.a11y-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.a11y-heading h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
}

.a11y-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.a11y-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.a11y-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 22px;
  background: var(--soft);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.a11y-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(55, 56, 125, 0.1);
}

.a11y-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
}

.a11y-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a11y-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.a11y-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .site-header,
  main {
    width: calc(100% - 38px);
    max-width: 920px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-visual {
    min-height: 300px;
    order: 2;
  }

  .hero-visual img {
    width: 100%;
  }

  .geni-card {
    order: 3;
  }

  .feature-grid,
  .story,
  .belief-strip {
    grid-template-columns: 1fr;
  }

  .belief-divider,
  .story-copy {
    border-right: 0;
    padding-right: 0;
  }

  .belief-divider {
    display: none;
  }

  .audience-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey {
    padding-inline: 18px;
  }

  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    border-top: 0;
  }

  .journey-step {
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .empathy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .persona-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .a11y-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .site-header,
  main,
  .hero,
  .hero-copy,
  .hero-actions,
  .hero-visual,
  .geni-card,
  .belief-strip,
  .feature-card,
  .audience,
  .journey,
  .story,
  .empathy-list,
  .a11y-neuro,
  .closing-strip {
    max-width: 100%;
    min-width: 0;
  }

  .site-header,
  main {
    width: calc(100vw - 38px);
    max-width: 352px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    min-height: 76px;
  }

  .brand img {
    width: 210px;
  }

  .site-header > .button {
    display: none;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-copy p,
  .geni-card p {
    font-size: 16px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-actions,
  .feature-card {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-card {
    padding: 26px;
  }

  .audience {
    padding: 26px 20px;
  }

  .audience-reference {
    padding: 0;
  }

  .audience-titlebar {
    max-width: 100%;
    text-align: left;
  }

  .audience-titlebar p {
    margin-top: 8px;
  }

  .audience-row,
  .journey-grid,
  .difference-grid,
  .empathy-grid,
  .closing-strip {
    grid-template-columns: 1fr;
  }

  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .empathy-list,
  .a11y-neuro {
    padding: 26px 18px;
  }

  .a11y-grid {
    grid-template-columns: 1fr;
  }

  .empathy-heading {
    text-align: left;
  }

  .empathy-heading h2 {
    font-size: 24px;
  }

  .empathy-card {
    min-height: 78px;
    padding: 14px 16px;
  }

  .empathy-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .closing-strip span {
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }
}

/* ===================== Acessibilidade para todos ===================== */
.acc-v2 { margin-top: 28px; padding: 40px 44px 44px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: 0 10px 28px rgba(79,82,140,.05); }
.acc-heading { max-width: 760px; margin: 0 auto; text-align: center; }
.acc-heading h2 { margin: 0; color: #1f2249; font-size: clamp(28px,3vw,36px); font-weight: 800; }
.acc-heading p { max-width: 660px; margin: 12px auto 0; color: #5c6592; font-size: 16px; line-height: 1.5; }
.acc-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px; margin-top: 34px; align-items: start; }
.acc-v2 .ic-green { color: #1f9d57; background: rgba(31,157,87,.12); }

/* Promo */
.acc-promo { position: relative; padding: 28px; border: 1px solid #e7e9f5; border-radius: 22px; background: linear-gradient(180deg,#fbfcff,#fff); box-shadow: 0 12px 30px rgba(79,82,140,.06); }
.acc-heart { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid #cdebd8; color: #1f9d57; }
.acc-heart svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.acc-promo-top { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.acc-promo-top h3 { flex: 1; margin: 0; color: #1f2249; font-size: 23px; font-weight: 800; line-height: 1.2; }
.acc-illu { flex: none; width: 116px; }
.acc-illu svg { width: 100%; height: auto; }
.acc-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.acc-pill { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border: 1px solid #ececf4; border-radius: 14px; background: #fff; }
.acc-pill b { font-weight: 700; color: #1f2249; font-size: 12.5px; line-height: 1.2; }
.ap-ic { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.ap-ic svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ap-ic.txt, .af-ic.txt { font-weight: 800; letter-spacing: -.5px; }
.ap-ic.txt { font-size: 15px; } .ap-ic.txt b { font-size: 1.25em; }
.acc-shield { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid #eef0f6; color: #5c6592; font-size: 13.5px; line-height: 1.45; }
.acc-shield-ic { color: #1f9d57; flex: none; } .acc-shield-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.acc-btn { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; padding: 15px; border-radius: 14px; background: linear-gradient(135deg,#1faa57,#168a47); color: #fff; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 10px 22px rgba(24,138,71,.22); transition: transform .18s ease; }
.acc-btn:hover { transform: translateY(-2px); }

/* 6 features */
.acc-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.acc-feat { padding: 22px 20px; border: 1px solid #ececf4; border-radius: 16px; background: #fff; box-shadow: 0 8px 22px rgba(79,82,140,.04); }
.af-ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; }
.af-ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.af-ic.txt { font-size: 20px; } .af-ic.txt b { font-size: 1.3em; }
.acc-feat h4 { margin: 0 0 8px; color: #1f2249; font-size: 16px; font-weight: 800; }
.acc-feat p { margin: 0; color: #5c6592; font-size: 13.5px; line-height: 1.55; }

@media (max-width: 980px) {
  .acc-v2 { padding: 32px 24px; }
  .acc-layout { grid-template-columns: 1fr; }
  .acc-features { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .acc-pills, .acc-features { grid-template-columns: 1fr; }
  .acc-promo-top { flex-direction: column-reverse; align-items: flex-start; }
}

/* Acessibilidade — imagem fiel ao mockup (sem moldura de card) */
.acc-v2 { border: none; background: transparent; box-shadow: none; padding: 0; }
.acc-img { display: block; width: 100%; height: auto; border-radius: 16px; }
@media (max-width: 980px) { .acc-v2 { padding: 0; } }

/* ===== header DEFINITIVO: idêntico ao da Sobre nós em qualquer aba (sem "dança") =====
   Override forte porque há regras antigas/responsivas que centralizavam o header. */
.site-header {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 24px !important;
  height: 68px !important;
  min-height: 68px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
}
.site-header .logo-lockup { margin: 0 !important; }
.main-nav { margin-left: 26px !important; gap: 40px !important; max-width: none !important; width: auto !important; }
