@font-face {
  font-family: "Gabarito Local";
  src: url("/assets/fonts/gabarito-500-800-latin.woff2") format("woff2");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Atkinson Local";
  src: url("/assets/fonts/atkinson-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #142033;
  --muted: #61728a;
  --blue: #1763ff;
  --deep-blue: #0d3ea8;
  --teal: #2f9e77;
  --coral: #d9815f;
  --lime: #b9df4d;
  --line: #d8e2ef;
  --paper: #f7f9fc;
  --white: #fff;
  --night: #0b1730;
  --display: "Gabarito Local", "Arial Black", sans-serif;
  --body: "Atkinson Local", Arial, sans-serif;
  --max: 1160px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -100px;
  padding: 10px 14px;
  background: var(--night);
  color: #fff;
}
.skip:focus { top: 12px; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  padding-top: 22px;
}
.nav {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  min-height: 70px;
  padding: 11px 14px 11px 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 9px;
  backdrop-filter: blur(14px);
}
.brand img { width: 176px; height: auto; }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}
.button-primary { background: var(--blue); color: #fff; }
.button-outline { border-color: var(--ink); background: transparent; }
.button-light { background: #fff; color: var(--ink); }
.button-night-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.55);
}
.button-whatsapp { color: #fff; background: #075e54; border-color: #075e54; }
.button-instagram {
  color: var(--ink);
  background: #fff;
  border-color: #d7e0ec;
}
.button-facebook { color: var(--ink); background: #fff; border-color: #d7e0ec; }
.button-whatsapp,
.button-instagram,
.button-facebook {
  gap: 10px;
}
.button-whatsapp::before,
.button-instagram::before,
.button-facebook::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.button-whatsapp::before {
  -webkit-mask-image: url("/shared/icons/whatsapp.svg");
  mask-image: url("/shared/icons/whatsapp.svg");
}
.button-instagram::before {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 24%, #d62976 50%, #962fbf 74%, #4f5bd5 100%);
  -webkit-mask-image: url("/shared/icons/instagram.svg");
  mask-image: url("/shared/icons/instagram.svg");
}
.button-facebook::before {
  background: #1877f2;
  -webkit-mask-image: url("/shared/icons/facebook.svg");
  mask-image: url("/shared/icons/facebook.svg");
}
.button:hover { transform: translateY(-2px); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: 165px 0 80px;
  background:
    radial-gradient(circle at 90% 25%, rgba(23,99,255,.18), transparent 27%),
    linear-gradient(120deg, #fff 0%, #f7f9fc 62%, #eef4ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  top: 125px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(23,99,255,.35);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
  align-items: center;
  gap: clamp(48px, 5vw, 64px);
}
.eyebrow {
  margin: 0 0 28px;
  color: var(--deep-blue);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  text-wrap: balance;
}
p { text-wrap: pretty; }
h1 {
  max-width: 820px;
  margin-bottom: var(--space-xl);
  font-size: clamp(60px, 6.2vw, 96px);
  letter-spacing: -.04em;
  line-height: .93;
}
h1 .accent { color: var(--blue); }
.lede {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.honesty {
  display: flex;
  gap: 10px;
  max-width: 680px;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: #eef8f4;
  border: 1px solid rgba(47,158,119,.35);
  border-radius: 6px;
  color: #4d5f76;
  font-size: 15px;
}
.honesty::before { content: "✓"; color: var(--teal); font-weight: 800; }
.honesty + .hero-actions { margin-top: var(--space-md); }

.hero-art {
  position: relative;
  min-height: 520px;
}
.screen-frame {
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 26px 68px rgba(20,32,51,.22);
}
.hero-art .screen-frame {
  position: absolute;
  inset: 42px -72px auto 0;
  transform: none;
}
.screen-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  background: #f0f3f7;
  border-bottom: 1px solid var(--line);
}
.screen-chrome i { width: 8px; height: 8px; border-radius: 50%; background: #bbc6d4; }
.screen-frame > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top;
}
.phone-frame {
  position: absolute;
  inset: 0 65px 0 auto;
  width: 270px;
  padding: 11px;
  background: var(--night);
  border-radius: 34px;
  box-shadow: 0 26px 68px rgba(20,32,51,.26);
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 25px;
}
.hero-sticker {
  position: absolute;
  z-index: 4;
  right: 0;
  top: 4px;
  padding: 9px 12px;
  background: var(--lime);
  border-radius: 4px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  transform: none;
}
.diagram-card {
  position: absolute;
  inset: 55px 0 auto 25px;
  padding: 28px;
  background: var(--night);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(20,32,51,.2);
}
.diagram-card h3 { margin-bottom: 28px; font-size: 34px; letter-spacing: -.03em; }
.flow-row {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 9px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.flow-row b { color: var(--lime); font-size: 14px; }
.flow-row span { color: #b8c5d8; font-size: 14px; }
.flow-arrow { color: var(--coral); text-align: center; }

.ticker {
  overflow: hidden;
  background: var(--night);
  color: #fff;
  border-block: 1px solid rgba(255,255,255,.1);
}
.ticker-row {
  display: flex;
  width: max-content;
  min-width: 100%;
}
.ticker span {
  flex: 1 0 auto;
  padding: 18px 34px;
  font-family: var(--display);
  font-weight: 700;
}
.ticker span::after { content: "•"; margin-left: 68px; color: var(--coral); }

.section { padding: clamp(96px, 9vw, 128px) 0; }
.section-white { background: #fff; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 64px);
}
.section-head h2, .closing h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: -.04em;
  line-height: .98;
}
.section-head p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.problem-card {
  min-height: 290px;
  padding: var(--space-xl);
  border-right: 1px solid var(--line);
}
.problem-card:last-child { border-right: 0; }
.problem-card b { color: var(--blue); font-family: var(--display); font-size: 13px; letter-spacing: .08em; }
.problem-card:nth-child(2) { padding-top: var(--space-2xl); }
.problem-card h3 { max-width: 300px; margin: var(--space-2xl) 0 var(--space-md); font-size: 31px; letter-spacing: -.03em; line-height: 1.05; }
.problem-card p { color: var(--muted); }

.step-list { border-top: 1px solid var(--ink); }
.step-row {
  display: grid;
  grid-template-columns: 72px 1fr 1.15fr;
  gap: var(--space-lg);
  align-items: center;
  min-height: 144px;
  border-bottom: 1px solid var(--line);
}
.step-row b { color: var(--blue); font-family: var(--display); }
.step-row h3 { margin-bottom: 0; font-size: 34px; letter-spacing: -.03em; }
.step-row p { margin-bottom: 0; color: var(--muted); }

.chapters { background: var(--night); color: #fff; }
.chapter {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(44px, 6vw, 72px);
  align-items: center;
  min-height: 700px;
  padding: clamp(72px, 8vw, 96px) 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.chapter:nth-child(even) { grid-template-columns: 1.25fr .75fr; }
.chapter:nth-child(even) .chapter-copy { order: 2; }
.chapter-copy span {
  color: #a9c4ff;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.chapter-copy h3 { margin: var(--space-md) 0 var(--space-lg); font-size: 48px; letter-spacing: -.04em; line-height: 1; }
.chapter-copy p { color: #b7c3d6; font-size: 19px; }
.chapter-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background: linear-gradient(145deg, #eef4ff, #fff);
  border-radius: 10px;
}
.chapter-media img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
  box-shadow: 0 16px 44px rgba(0,0,0,.16);
}
.chapter-media.wide img { max-height: none; width: 100%; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}
.proof-item {
  display: flex;
  gap: var(--space-md);
  min-height: 112px;
  padding: var(--space-lg);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-item:nth-child(even) { border-right: 0; }
.proof-item::before {
  content: "✓";
  flex: 0 0 30px;
  color: var(--teal);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
}
.proof-item p { margin: 0; }

.example-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 540px;
  overflow: hidden;
  background: var(--night);
  color: #fff;
  border-radius: 10px;
}
.example-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(40px, 5vw, 60px); }
.example-copy h3 { max-width: 440px; margin: 16px 0 24px; font-size: 48px; letter-spacing: -.04em; line-height: .98; }
.example-copy p { color: #b7c3d6; }
.example-media { display: flex; align-items: center; justify-content: center; padding: clamp(32px, 4vw, 48px); background: #eef4ff; }
.example-media img { max-height: 460px; box-shadow: 0 16px 44px rgba(20,32,51,.18); }
.example-stack { display: grid; gap: 24px; }
.example-stack .example-panel { min-height: 460px; }
.example-stack .example-panel:nth-child(even) { grid-template-columns: 1.15fr 1fr; }
.example-stack .example-panel:nth-child(even) .example-copy { order: 2; }
.example-stack .example-panel:nth-child(even) .example-media { order: 1; }
.example-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.closing { padding: clamp(96px, 9vw, 128px) 0; background: linear-gradient(125deg, #0b1730, #0d2445); color: #fff; }
.closing-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.closing p { max-width: 680px; margin: 24px 0 0; color: #b7c3d6; font-size: 20px; }
.closing-actions { display: grid; gap: 12px; }

.footer { padding: 44px 0; background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 190px minmax(190px, 1fr) auto; align-items: center; gap: 24px; }
.footer img { width: 185px; height: auto; }
.footer p { margin: 0; color: var(--muted); font-size: 15px; text-align: center; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 15px; }

@media (max-width: 950px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 520px; }
  .hero-art .screen-frame { right: 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-card h3 { margin-top: 25px; }
  .section-head { grid-template-columns: 1fr; }
  .section-head p { max-width: 650px; }
  .chapter, .chapter:nth-child(even) { grid-template-columns: 1fr; min-height: 0; }
  .chapter:nth-child(even) .chapter-copy { order: 0; }
  .example-panel { grid-template-columns: 1fr; }
  .example-stack .example-panel:nth-child(even) { grid-template-columns: 1fr; }
  .example-stack .example-panel:nth-child(even) .example-copy,
  .example-stack .example-panel:nth-child(even) .example-media { order: initial; }
  .footer-grid { grid-template-columns: 190px 1fr auto; }
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { padding-top: 14px; }
  .nav { min-height: 58px; padding: 8px 8px 8px 11px; gap: 10px; }
  .brand img { width: 120px; }
  .nav .button { min-height: 40px; padding: 9px 11px; font-size: 11px; }
  .hero { padding: 120px 0 52px; }
  .hero-grid { gap: 34px; }
  .eyebrow { margin-bottom: 22px; font-size: 11px; line-height: 1.35; }
  h1 { font-size: clamp(42px, 11.5vw, 52px); line-height: .96; letter-spacing: -.035em; }
  .lede { font-size: 18px; }
  .hero-actions .button { width: 100%; }
  .honesty { font-size: 14px; }
  .hero-art { min-height: 330px; }
  .hero-art .screen-frame { position: absolute; inset: 18px 0 auto 10px; }
  .phone-frame { inset: 0 auto 0 50%; width: 190px; transform: translateX(-50%); border-radius: 25px; }
  .phone-frame img { border-radius: 18px; }
  .hero-sticker { right: 8px; top: 0; font-size: 10px; }
  .diagram-card { inset: 20px 0 auto; padding: 20px; }
  .diagram-card h3 { font-size: 27px; }
  .flow-row { grid-template-columns: 1fr 18px 1fr; }
  .ticker span { padding: 14px 20px; font-size: 14px; }
  .ticker span::after { margin-left: 40px; }
  .section { padding: 84px 0; }
  .section-head { gap: 24px; margin-bottom: 40px; }
  .section-head h2, .closing h2 { font-size: 44px; }
  .section-head p { font-size: 18px; }
  .problem-card, .problem-card:nth-child(2) { padding: 28px 8px; }
  .problem-card h3 { font-size: 29px; }
  .step-row { grid-template-columns: 44px 1fr; gap: 10px; padding: 24px 0; }
  .step-row h3 { font-size: 27px; }
  .step-row p { grid-column: 2; }
  .chapter { gap: var(--space-xl); padding: var(--space-3xl) 0; }
  .chapter-copy h3 { font-size: 38px; }
  .chapter-media { min-height: 330px; padding: var(--space-lg); }
  .chapter-media img { max-height: 410px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:nth-child(even) { border-right: 0; }
  .example-copy { padding: 34px 24px; }
  .example-copy h3 { font-size: 39px; }
  .example-media { min-height: 370px; padding: 25px; }
  .example-stack { gap: 16px; }
  .example-stack .example-panel { min-height: 0; }
  .closing { padding: 84px 0; }
  .closing-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: start; gap: 22px; }
  .footer p { text-align: left; }
}

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