:root {
  --navy-950: #0a1626;
  --navy-900: #0d1b2a;
  --navy-800: #163049;
  --blue-600: #1e5bbf;
  --graphite: #2b2f36;
  --silver-100: #eef2f5;
  --silver-200: #e0e2e2;
  --silver-500: #b8bdc4;
  --silver-700: #6a7078;
  --gold-300: #1e5bbf;
  --gold-500: #164fb0;
  --gold-700: #0f3c86;
  --white: #ffffff;
  --paper: #f2f5f9;
  --ink: #0d1b2a;
  --muted: #52627a;
  --danger: #a33a2b;
  --success: #1f7a4f;
  --shadow: 0 18px 60px rgba(10, 22, 38, 0.14);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold-300);
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.top-strip {
  background: var(--navy-950);
  color: var(--silver-200);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-size: 0.88rem;
  text-align: center;
}

.top-strip strong {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 38, 0.98);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-height: 48px;
}

.brand img {
  width: clamp(154px, 36vw, 210px);
  display: block;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  position: relative;
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle__bar::before {
  top: -7px;
}

.menu-toggle__bar::after {
  top: 7px;
}

.main-nav {
  position: fixed;
  inset: 114px 0 auto 0;
  background: var(--navy-950);
  padding: 18px 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transform: translateY(calc(-100% - 140px));
  transition: transform 180ms ease;
  pointer-events: none;
}

.main-nav.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.main-nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(100%, var(--container));
  display: grid;
  gap: 8px;
}

.main-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--silver-200);
  text-decoration: none;
  font-weight: 700;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.main-nav .nav-cta {
  color: var(--navy-950);
  background: var(--gold-300);
  justify-content: center;
}

.hero {
  background:
    linear-gradient(110deg, rgba(10, 22, 38, 0.97), rgba(23, 41, 63, 0.9)),
    radial-gradient(circle at 82% 8%, rgba(30, 91, 191, 0.20), transparent 32%),
    var(--navy-950);
  color: var(--white);
  overflow: hidden;
}

.hero__inner {
  min-height: min(760px, calc(100svh - 116px));
  display: grid;
  align-items: center;
  gap: 28px;
  padding: 44px 0 28px;
}

.hero__content {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--gold-300);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2rem, 9vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero__lead {
  margin: 0;
  max-width: 680px;
  color: #e8edf3;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.hero__actions,
.section-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font-weight: 850;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}

.button--primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 10px 28px rgba(30, 91, 191, 0.22);
}

.button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.button--light {
  color: var(--navy-950);
  background: var(--white);
}

.button--outline {
  color: var(--navy-900);
  background: transparent;
  border-color: var(--blue-600);
}

.button--full {
  width: 100%;
}

.hero__panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
}

.hero__panel img {
  width: min(100%, 440px);
  display: block;
  margin: 0 auto 18px;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.trust-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.trust-list dt {
  font-weight: 850;
  color: var(--white);
}

.trust-list dd {
  margin: 0;
  color: var(--silver-200);
}

.mini-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(30, 91, 191, 0.14);
  color: var(--gold-300);
  font-weight: 900;
}

.section {
  padding: clamp(48px, 8vw, 86px) 0;
}

.section--white {
  background: var(--white);
}

.section--navy {
  background: var(--navy-950);
  color: var(--white);
}

.section--soft {
  background: var(--silver-100);
}

.section__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section__header h2,
.legal h1,
.article-page h1 {
  margin: 0 0 12px;
  color: inherit;
  font-size: clamp(1.65rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section__header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section--navy .section__header p,
.section--navy .muted {
  color: var(--silver-200);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  border: 1px solid rgba(23, 41, 63, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 38px rgba(10, 22, 38, 0.07);
}

.section--navy .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.17rem;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.section--navy .card p {
  color: var(--silver-200);
}

.step-card {
  position: relative;
  padding-top: 58px;
}

.step-number {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--navy-950);
  background: var(--gold-300);
  font-weight: 900;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--silver-200), var(--silver-500));
  font-weight: 900;
}

.associacao {
  display: grid;
  gap: 22px;
}

.associacao__aside {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
}

.associacao__aside h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 5vw, 2.4rem);
  line-height: 1.1;
}

.associacao__aside p {
  color: var(--silver-200);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.check-list li::before {
  content: "OK";
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 91, 191, 0.14);
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 900;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(23, 41, 63, 0.1);
  box-shadow: var(--shadow);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.form-progress span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--silver-100);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-progress span.is-active,
.form-progress span.is-complete {
  background: var(--navy-800);
  color: var(--white);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label,
.checkbox-card strong {
  font-weight: 850;
  color: var(--navy-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #b9c2cc;
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field small {
  color: var(--muted);
}

.checkbox-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(23, 41, 63, 0.14);
  border-radius: var(--radius-sm);
}

.checkbox-card input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
}

.form-feedback {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: #e8f5ef;
  color: #0f5132;
  font-weight: 800;
}

.contact-band {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.contact-band p {
  margin: 0;
  color: var(--silver-200);
}

.contact-facts {
  display: grid;
  gap: 10px;
}

.contact-fact {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  min-height: 72px;
}

.contact-fact span {
  color: var(--silver-200);
  font-size: 0.88rem;
}

.contact-fact strong {
  color: var(--white);
}

.is-pending {
  color: #f8d993 !important;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(23, 41, 63, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
}

summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-weight: 850;
  cursor: pointer;
  color: var(--navy-900);
}

details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.article-card {
  display: grid;
  gap: 12px;
  text-decoration: none;
}

.article-card .meta {
  color: var(--blue-600);
  font-size: 0.86rem;
  font-weight: 850;
}

.article-card:hover h3 {
  text-decoration: underline;
}

.proof-note {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(30, 91, 191, 0.32);
  border-radius: var(--radius);
  background: #eef4fd;
  color: var(--ink);
}

.proof-note p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: var(--navy-950);
  color: var(--silver-200);
  padding: 36px 0 92px;
}

.site-footer__grid {
  display: grid;
  gap: 22px;
}

.site-footer img {
  width: min(210px, 68vw);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  margin: 0 0 10px;
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer a,
.footer-button {
  color: var(--silver-200);
}

.footer-button {
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 44px;
  text-align: left;
  text-decoration: underline;
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  min-height: 56px;
  max-width: min(320px, calc(100vw - 28px));
  padding: 13px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1f7a4f;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-whatsapp::before {
  content: "WA";
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.cookie-visible .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(23, 41, 63, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}

.cookie-banner p {
  margin: 0 0 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 46px;
  padding: 10px 12px;
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 22, 38, 0.66);
  display: grid;
  place-items: center;
  padding: 16px;
}

.cookie-panel[hidden],
.cookie-banner[hidden],
[hidden] {
  display: none !important;
}

.cookie-dialog {
  width: min(100%, 620px);
  max-height: min(88svh, 760px);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.cookie-dialog h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  outline: none;
}

.cookie-option {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(23, 41, 63, 0.1);
}

.cookie-option input {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 54px 0;
}

.page-hero p {
  max-width: 760px;
  color: var(--silver-200);
  font-size: 1.08rem;
}

.legal,
.article-page {
  background: var(--white);
}

.legal__content,
.article-layout {
  width: min(100% - 32px, 860px);
  margin-inline: auto;
  padding: 44px 0 72px;
}

.legal h2,
.article-page h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.15;
}

.legal p,
.legal li,
.article-page p,
.article-page li {
  color: var(--muted);
}

.legal ul,
.article-page ul {
  padding-left: 22px;
}

.search-box {
  display: grid;
  gap: 8px;
  margin: 20px 0 28px;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #b9c2cc;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.article-section {
  scroll-margin-top: 120px;
  border-top: 1px solid rgba(23, 41, 63, 0.1);
  padding-top: 30px;
  margin-top: 34px;
}

.notice-box {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--silver-100);
  border: 1px solid rgba(23, 41, 63, 0.1);
}

@media (min-width: 760px) {
  .top-strip__inner {
    justify-content: space-between;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    padding: 58px 0 40px;
  }

  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .associacao {
    grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
    align-items: start;
  }

  .contact-band {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }

  .contact-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
  }

  .cookie-banner {
    left: auto;
    width: min(560px, calc(100vw - 24px));
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    transform: none;
    pointer-events: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    width: auto;
  }

  .main-nav a {
    padding: 10px 11px;
    min-height: 44px;
    font-size: 0.94rem;
  }

  .main-nav .nav-cta {
    padding-inline: 15px;
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 420px) {
  .container,
  .legal__content,
  .article-layout {
    width: min(100% - 24px, var(--container));
  }

  .hero__actions .button,
  .section-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .form-progress {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    justify-content: center;
    bottom: 12px;
  }

  .cookie-banner {
    bottom: 12px;
  }
}

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

/* ===== Rebrand Habilita Brasil: ajustes de contraste ===== */
.button--primary { color: #ffffff; background: linear-gradient(135deg, #1e5bbf, #164fb0); box-shadow: 0 10px 28px rgba(30, 91, 191, 0.28); }
.step-number { color: #ffffff; }
.hero .eyebrow, .section--navy .eyebrow { color: #8fb8f0; }
.mini-icon { background: rgba(143, 184, 240, 0.18); color: #cfe0f8; }
.check-list li::before { background: rgba(143, 184, 240, 0.16); color: #cfe0f8; }
/* ===== Habilita Brasil: tipografia distintiva + atmosfera + page-load ===== */
:root{
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
}
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; }
h3 { font-weight: 700; }
.eyebrow { font-family: var(--font-sans); }
.section--navy { background: radial-gradient(1100px 520px at 100% -12%, rgba(30,91,191,0.16), transparent 60%), var(--navy-950); }
.associacao__aside { background: linear-gradient(158deg, #16304a 0%, #0d1b2a 72%); }
.site-footer { background: linear-gradient(180deg, #0d1b2a, #0a1420); }
@media (prefers-reduced-motion: no-preference){
  .hero__content > *, .hero__panel { opacity: 0; transform: translateY(16px); animation: hbUp .7s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero__content > *:nth-child(1){ animation-delay: .06s }
  .hero__content > *:nth-child(2){ animation-delay: .14s }
  .hero__content > *:nth-child(3){ animation-delay: .22s }
  .hero__content > *:nth-child(4){ animation-delay: .30s }
  .hero__panel { animation-delay: .40s }
  @keyframes hbUp { to { opacity: 1; transform: none } }
}
/* ===== Habilita Brasil: seção e-book "O Preço da Paz" ===== */
.ebook{ display:grid; grid-template-columns:1fr; gap:28px; align-items:center; }
@media (min-width:820px){ .ebook{ grid-template-columns:1.15fr .85fr; gap:44px; } }
.ebook__sub{ color:var(--silver-200); font-size:1.06rem; margin:8px 0 2px; max-width:56ch; }
.ebook .check-list{ margin:18px 0 22px; }
.ebook .check-list li{ color:var(--silver-200); }
.ebook__cover{ display:flex; justify-content:center; }
.ebook__book{ width:min(280px,78%); aspect-ratio:3/4; border-radius:12px; padding:26px 22px 24px 30px; display:flex; flex-direction:column; justify-content:space-between;
  background:linear-gradient(160deg,#16304a 0%,#0a1420 82%); border:1px solid rgba(143,184,240,.28); box-shadow:0 26px 60px rgba(0,0,0,.42); position:relative; overflow:hidden; }
.ebook__book::before{ content:""; position:absolute; left:14px; top:14px; bottom:14px; width:3px; border-radius:3px; background:linear-gradient(180deg,#1e5bbf,#8fb8f0); }
.ebook__kicker{ font-family:var(--font-sans); font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:#8fb8f0; }
.ebook__title{ font-family:var(--font-display); font-weight:600; font-size:2.1rem; line-height:1.04; color:#fff; letter-spacing:-.01em; }
.ebook__author{ font-size:.85rem; color:var(--silver-200); }