body.ebook-page {
  --white: #ffffff;
  --off: #faf8f4;
  --cream: #f5ecd4;
  --green: #3b5140;
  --green-lt: rgba(59,81,64,0.08);
  --blue: #243fda;
  --orange: #f98512;
  --orange2: #ffa033;
  --graphite: #1c1c1c;
  --text: #1e1b1b;
  --text-2: #514b4b;
  --muted: #9a908f;
  --border: rgba(30,27,27,0.08);
  --font: 'Raleway', sans-serif;

  margin: 0;
  background: var(--off);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  border: 0 !important;
}

html,
body.ebook-page {
  margin: 0 !important;
  padding: 0 !important;
}

html:has(body.ebook-page) {
  background: #1c1c1c;
}

body.ebook-page #page,
body.ebook-page .site,
body.ebook-page .site-content,
body.ebook-page .wp-site-blocks {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.ebook-page *,
body.ebook-page *::before,
body.ebook-page *::after { box-sizing: border-box; }

body.ebook-page img { display: block; max-width: 100%; height: auto; }
body.ebook-page a { color: inherit; text-decoration: none; }


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.05s cubic-bezier(.22,1,.36,1), transform 1.05s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: .2s; }
.reveal--delay-2 { transition-delay: .38s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.ebook-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 36px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.ebook-header__inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-header__brand {
  height: 36px;
  max-width: min(320px, 70vw);
  display: flex;
  align-items: center;
}
.ebook-header__brand img {
  display: block;
  height: 100% !important;
  max-height: 36px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
}

.ebook-main {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding: 64px 0 0;
}

.ebook-hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding: 56px 0 56px;
  position: relative;
  background: var(--off);
  color: var(--text);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(28px, calc((100vw - 1160px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1160px) / 2 + 28px));
  overflow: hidden;
  border-bottom: 1px solid rgba(30,27,27,0.08);
}

.ebook-hero::after {
  content: none;
}

.ebook-hero__cover-wrap {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  position: relative;
  z-index: 2;
}

.ebook-hero__cover-stage {
  position: relative;
  width: clamp(250px, 33vw, 410px);
  padding: 0;
  border-radius: 8px;
  background: transparent;
  border: none;
  box-shadow: none;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.28));
}

.ebook-hero__cover-stage::before {
  display: none;
}

.ebook-hero__cover-stage::after {
  display: none;
}

.ebook-hero__cover {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 8px;
  border: none;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 14px 30px rgba(0,0,0,0.12);
}

.ebook-hero__cover-stage .ebook-hero__cover,
.ebook-hero__cover-stage .ebook-hero__cover--placeholder {
  aspect-ratio: 3 / 4;
}

.ebook-hero__cover-stage .ebook-hero__cover-stage-home {
  display: none;
}

.ebook-hero__cover--placeholder {
  aspect-ratio: 3/4;
  border: 1px solid rgba(59,81,64,0.2);
  border-radius: 18px;
  background: linear-gradient(160deg, #f6f2e8, #ece5d2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
}

.ebook-hero__cover--placeholder span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}

.ebook-hero__cover--placeholder strong {
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  color: var(--text);
}

.ebook-hero__shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 75%);
  filter: blur(8px);
  z-index: -1;
}

.ebook-hero__content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.ebook-hero__bg-globo {
  position: absolute;
  right: clamp(-50px, -2vw, -12px);
  bottom: clamp(-82px, -5vw, -36px);
  width: clamp(250px, 24vw, 430px);
  opacity: .2;
  filter: saturate(0) brightness(0.88);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.ebook-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(59,81,64,0.2);
  background: var(--green-lt);
  margin: 0 0 22px;
}

.ebook-hero__title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text);
}

.ebook-hero__author {
  margin: 14px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--green);
}

.ebook-hero__subtitle {
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-2);
  max-width: 50ch;
  font-size: clamp(.95rem, 1.35vw, 1.08rem);
  max-width: 58ch;
}

.ebook-hero__meta {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.ebook-hero__meta li {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(30,27,27,0.58);
}

.ebook-links {
  margin-top: 34px;
  width: 100%;
  max-width: 50ch;
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ebook-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  color: inherit;
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 6px;
  transition: background .22s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ebook-links__item--primary {
  background: var(--blue);
  color: #fff;
  border-color: transparent;
  box-shadow: none;
}

.ebook-links__item--primary:hover {
  background: #1f34b8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(36,63,218,0.3);
}

.ebook-links__item--secondary {
  background: #ffffff;
  border-color: rgba(30,27,27,0.16);
  border-width: 2px;
  box-shadow: none;
  color: var(--text-2);
}

.ebook-links__item--secondary span {
  color: inherit;
}

.ebook-links__item--primary span {
  color: inherit;
}

.ebook-links__item--primary:visited,
.ebook-links__item--secondary:visited {
  color: inherit;
}

.ebook-links__item--secondary:hover {
  color: var(--text);
  border-color: var(--text-2);
}

.ebook-links__item:focus-visible {
  outline: 2px solid rgba(36,63,218,0.5);
  outline-offset: 2px;
}

.ebook-links__item:active {
  transform: translateY(0);
}

.ebook-links__item--primary,
.ebook-links__item--primary:visited,
.ebook-links__item--primary span {
  color: #fff !important;
}

.ebook-links__item--secondary,
.ebook-links__item--secondary:visited,
.ebook-links__item--secondary span {
  color: var(--text-2) !important;
}

@media (max-width: 640px) {
  .ebook-links {
    gap: 10px;
  }
  .ebook-links__item {
    width: 100%;
    min-height: 50px;
    font-size: .94rem;
  }
}

.ebook-form-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #3b5140 !important;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-top: 1px solid rgba(245,236,212,0.16);
  box-shadow: none;
  z-index: 4;
}

body.ebook-page #lead-form.ebook-form-bg {
  padding: 50px 0 80px !important;
  background: #3b5140 !important;
  border-top: 1px solid rgba(245,236,212,0.16) !important;
}

.ebook-form-section {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.ebook-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.95);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(245,236,212,0.22);
  background: rgba(245,236,212,0.08);
}

.ebook-form-section__title {
  margin: 20px 0 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--cream);
  max-width: 13ch;
  font-weight: 800;
}

.ebook-form-section__desc {
  margin: 24px 0 0;
  color: rgba(245,236,212,0.8);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 42ch;
}

.ebook-form-section__checks {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.ebook-form-section__checks li {
  color: rgba(245,236,212,0.72);
  line-height: 1.6;
  font-size: .96rem;
}

.ebook-form-section__checks strong { color: var(--cream); }

.ebook-form-card {
  background: #fff;
  border: 1px solid rgba(30,27,27,0.06);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(30,27,27,0.08);
}

.ebook-form-card__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.ebook-form-card__subtitle {
  margin: 2px 0 18px;
  font-size: 1rem;
  color: var(--muted);
}

.ebook-fallback-form__dynamic {
  margin-top: 8px;
  border-top: 1px dashed #e6dfd3;
  padding-top: 12px;
}

.ebook-fallback-form__dynamic-title {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7b7671;
  font-weight: 700;
}

.ebook-fallback-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ebook-fallback-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ebook-fallback-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ebook-fallback-form__field--full {
  grid-column: 1 / -1;
}

.ebook-fallback-form__field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b7671;
}

.ebook-fallback-form input,
.ebook-form-card input,
.ebook-form-card select,
.ebook-form-card textarea {
  width: 100%;
  border: 1px solid #ece8df;
  background: #f5f2ec;
  color: #2b2b2b;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: .95rem;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ebook-fallback-form input::placeholder,
.ebook-form-card input::placeholder {
  color: #a49c94;
}

.ebook-fallback-form :is(input, select, textarea):focus,
.ebook-form-card :is(input, select, textarea):focus {
  outline: none !important;
  outline-offset: 0 !important;
  border-color: #ece8df !important;
  border-width: 1px !important;
  border-style: solid !important;
  box-shadow: 0 0 0 3px rgba(59,81,64,0.08) !important;
}

.ebook-fallback-form :is(input, select, textarea):focus-visible,
.ebook-form-card :is(input, select, textarea):focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  border-color: #ece8df !important;
  border-width: 1px !important;
  border-style: solid !important;
  box-shadow: 0 0 0 3px rgba(59,81,64,0.08) !important;
}

.ebook-form-card select::-ms-expand { display: none; }

.ebook-form-card input,
.ebook-form-card select,
.ebook-fallback-form input {
  text-decoration: none !important;
  outline-offset: 0 !important;
}

.ebook-fallback-form button,
.ebook-form-card button,
.ebook-form-card input[type="submit"] {
  width: 100%;
  margin-top: 14px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s ease, box-shadow .2s ease;
}

.ebook-fallback-form button:hover,
.ebook-form-card button:hover,
.ebook-form-card input[type="submit"]:hover {
  background: #1f34b8;
  color: #fff;
  box-shadow: 0 10px 24px rgba(36,63,218,0.28);
  transform: translateY(-1px);
}

.ebook-fallback-form button:active,
.ebook-form-card button:active,
.ebook-form-card input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(36,63,218,0.2);
}

.ebook-fallback-form button:focus-visible,
.ebook-form-card button:focus-visible,
.ebook-form-card input[type="submit"]:focus-visible {
  outline: 2px solid transparent !important;
  box-shadow: 0 0 0 3px rgba(36,63,218,0.2) !important;
}

.ebook-fallback-form__lgpd {
  margin: 2px 0 0;
  text-align: center;
  color: #9a908f;
  font-size: 12px;
}

/* About section (igual a landing) */
#about {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #312d2d;
}

.about-overlay { display: none; }

.about-logo-gfx {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 580px;
  height: auto;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

#about .container {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  padding: 50px max(28px, calc((100vw - 1160px) / 2 + 28px)) 80px;
}

.about-inner {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 3.8vw, 52px);
  align-items: stretch;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(245,236,212,0.25);
  background: rgba(245,236,212,0.1);
  color: var(--cream);
  align-self: flex-start;
}

.about-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-titulo {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--cream);
}

.about-titulo em {
  font-style: normal;
  color: var(--orange);
  font-weight: 700;
}

.about-subtitulo {
  margin: 4px 0 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.52);
  line-height: 1.5;
}

.about-copy > .about-texto,
.about-copy > .about-texto--destaque {
  display: none !important;
}

.about-method-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.about-method-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(245,236,212,0.16);
}

.about-method-card:first-child {
  border-top: none;
  padding-top: 0;
}

.about-method-card__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.about-method-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(8);
}

.about-method-card__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-method-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--cream);
}

.about-method-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,236,212,0.74);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  align-self: stretch;
}

.about-grid__frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 120px;
  cursor: default;
  box-shadow: 0 20px 44px rgba(0,0,0,0.25);
}

.about-grid__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-grid__frame:hover img {
  transform: scale(1.06);
}

.about-grid__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20, 40, 30, 0.25) 0%,
    rgba(20, 40, 30, 0) 40%,
    rgba(10, 20, 15, 0.75) 75%,
    rgba(5, 12, 8, 0.92) 100%
  );
  transition: background 0.4s ease;
}

.about-grid__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 18px 20px;
}

.about-grid__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-grid__label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.about-grid__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.about-grid__title {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.about-grid__item--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.about-grid__item--2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.about-grid__item--3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.about-grid__item--4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  background: var(--blue);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: .24s cubic-bezier(0.4,0,0.2,1);
  margin-top: 14px;
}

.btn-about:hover {
  background: #1f34b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(36,63,218,0.3);
}

#about.about-visible .about-badge,
#about.about-visible .about-titulo,
#about.about-visible .about-progress,
#about.about-visible .about-texto,
#about.about-visible .btn-about {
  opacity: 1 !important;
  animation: none !important;
}

.ebook-footer {
  background: var(--graphite);
  color: var(--cream);
}

.ebook-footer__rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,242,236,0.12) 20%, rgba(245,242,236,0.12) 80%, transparent);
}

.ebook-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  min-height: 96px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-footer__logo {
  height: 42px;
  max-width: min(380px, 78vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-footer__logo img {
  display: block;
  height: 100% !important;
  max-height: 42px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
}

.ebook-footer__bottom {
  border-top: 1px solid rgba(245,242,236,0.07);
  padding: 14px 0;
}

.ebook-footer__bottom-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: center;
}

.ebook-footer__copy {
  margin: 0;
  font-size: 12px;
  color: rgba(245,242,236,0.28);
  text-align: center;
}

@media (max-width: 980px) {
  .ebook-hero {
    min-height: calc(100vh - 64px);
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 34px;
    padding-left: max(20px, calc((100vw - 1160px) / 2 + 20px));
    padding-right: max(20px, calc((100vw - 1160px) / 2 + 20px));
  }

  .ebook-hero__cover-wrap { margin-bottom: 8px; }

  .ebook-form-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .ebook-form-section__title { max-width: 100%; }

  #about {
    min-height: auto;
  }
  #about .container { padding-top: 50px; padding-bottom: 80px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-grid { margin-top: 4px; align-self: auto; }
  .ebook-hero__bg-globo { width: 310px; right: -64px; bottom: -108px; opacity: .2; }
}

@media (max-width: 640px) {
  .ebook-header { padding: 0 16px; }
  .ebook-header__inner { height: 56px; }
  .ebook-header__brand { height: 30px; max-width: 62vw; }
  .ebook-header__brand img { max-height: 30px !important; }

  .ebook-main { padding-top: 56px; }
  .ebook-hero { min-height: calc(100vh - 56px); }
  .ebook-hero__bg-globo { width: 250px; right: -86px; bottom: -82px; opacity: .2; }

  .ebook-footer__inner { min-height: 82px; }
  .ebook-footer__logo { height: 34px; max-width: 70vw; }
  .ebook-footer__logo img { max-height: 34px !important; }

  .ebook-main,
  .ebook-form-section,
  .ebook-footer__inner,
  .ebook-footer__bottom-inner {
    width: calc(100% - 28px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .ebook-form-section__checks {
    margin-top: 22px;
    gap: 10px;
  }
  .ebook-form-section__checks li {
    font-size: .9rem;
    line-height: 1.45;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-grid__content {
    padding: 14px 14px 16px;
  }

  .about-grid__label {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .about-grid__title {
    font-size: clamp(14px, 4vw, 18px);
  }

  .about-grid__item--1,
  .about-grid__item--2,
  .about-grid__item--3,
  .about-grid__item--4 {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .about-grid__item--1 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .about-grid__item--2 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .about-grid__item--3 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .about-grid__item--4 { grid-column: 2 / 3; grid-row: 2 / 3; }

  .about-method-card {
    align-items: center;
    gap: 12px;
  }

  .about-method-card__icon {
    width: 36px;
    height: 36px;
    margin-top: 0;
  }

  .about-method-card__content {
    flex: 1;
  }

  .btn-about {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    align-self: stretch;
    margin-left: 0;
    margin-right: 0;
    padding: 14px 24px;
    font-size: .94rem;
  }

  .ebook-fallback-form__row { grid-template-columns: 1fr; }
  .ebook-links__item { font-size: .94rem; min-height: 52px; }
  .ebook-form-card { padding: 18px; border-radius: 12px; }
  #about .container { padding-left: 14px; padding-right: 14px; }
}
