/* ==========================================================================
   AstralPet — «o céu vira PDF»
   Cream stationery world; the navy report pages are the only night sky.
   Palette from the brand board: cream / deep plum / soft lilac-pink / antique gold.
   ========================================================================== */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-5.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-1.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../assets/fonts/ebgaramond-9.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../assets/fonts/ebgaramond-11.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

/* ---------- tokens ---------- */

:root {
  --cream: oklch(96.8% 0.018 84);
  --cream-2: oklch(94.6% 0.026 82);
  --cream-card: oklch(98.4% 0.012 86);
  --plum: oklch(33% 0.085 322);
  --plum-deep: oklch(25% 0.072 320);
  --plum-night: oklch(21% 0.06 318);
  --plum-nightest: oklch(16% 0.05 316);
  --ink: oklch(31% 0.062 322);
  --ink-soft: oklch(47% 0.04 322);
  --lilac: oklch(89% 0.035 318);
  --lilac-deep: oklch(74% 0.055 318);
  --pink: oklch(60% 0.095 358);
  --gold: oklch(73% 0.105 78);
  --gold-deep: oklch(55% 0.1 70);
  --gold-soft: oklch(86% 0.06 84);
  --navy: oklch(24% 0.048 264);
  --navy-deep: oklch(18% 0.042 262);
  --line: oklch(33% 0.06 322 / 0.16);
  --line-soft: oklch(33% 0.06 322 / 0.1);
  --shadow-page:
    0 2px 6px oklch(25% 0.07 320 / 0.12),
    0 24px 48px oklch(25% 0.07 320 / 0.2),
    0 48px 90px oklch(25% 0.07 320 / 0.16);
  --shadow-card: 0 18px 48px oklch(30% 0.06 322 / 0.12);
  --shadow-sticker: 0 10px 26px oklch(30% 0.06 322 / 0.18);
  --radius-card: 14px;
  --radius-page: 10px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- base ---------- */

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.landing {
  background:
    radial-gradient(circle at 12% 8%, oklch(73% 0.105 78 / 0.06), transparent 34%),
    var(--cream);
}

::selection {
  color: var(--plum-deep);
  background: var(--gold-soft);
}

img,
svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: 0;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

h1 {
  color: var(--plum);
  font-size: clamp(3rem, 7.4vw, 6.4rem);
  line-height: 0.98;
}

h2 {
  color: var(--plum);
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
  line-height: 1.02;
}

h3 {
  color: var(--plum);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

/* ---------- doodles (hand-drawn line art) ---------- */

.doodle {
  position: absolute;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.doodle-paws {
  stroke: none;
}

.doodle-paws .paw-step {
  fill: var(--lilac-deep);
  opacity: 0.55;
}

.float-slow {
  animation: floatY 7s ease-in-out infinite alternate;
}

.float-fast {
  animation: floatY 4.5s ease-in-out infinite alternate;
}

@keyframes floatY {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -9px;
  }
}

/* ---------- buttons & links ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    background-color 200ms var(--ease-out),
    color 200ms var(--ease-out),
    border-color 200ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--cream-card);
  background: linear-gradient(180deg, var(--plum), var(--plum-deep));
  box-shadow: 0 16px 34px oklch(25% 0.072 320 / 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 44px oklch(25% 0.072 320 / 0.34);
}

.button-gold {
  color: var(--plum-deep);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 14px 32px oklch(55% 0.1 70 / 0.3);
}

.button-ghost {
  color: var(--plum);
  border-color: oklch(33% 0.085 322 / 0.35);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--gold-deep);
  background: var(--cream-card);
}

.button-secondary {
  color: var(--plum);
  border-color: oklch(33% 0.085 322 / 0.3);
  background: var(--cream-card);
}

.button-secondary:hover {
  border-color: var(--gold-deep);
}

.text-cta-quiet {
  align-self: center;
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: oklch(55% 0.1 70 / 0.5);
  text-underline-offset: 4px;
  transition: color 180ms var(--ease-out);
}

.text-cta-quiet:hover {
  color: var(--gold-deep);
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 4vw, 52px);
  background: oklch(96.8% 0.018 84 / 0.82);
  border-bottom: 1px solid oklch(33% 0.06 322 / 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 240ms var(--ease-out), background-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: oklch(96.8% 0.018 84 / 0.96);
  box-shadow: 0 10px 30px oklch(30% 0.06 322 / 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo-img {
  width: clamp(126px, 12vw, 172px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 34px);
  color: var(--plum);
  font-size: 1.02rem;
  font-weight: 600;
}

.main-nav a {
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.main-nav a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid oklch(33% 0.085 322 / 0.28);
  border-radius: 50%;
  color: var(--plum);
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.icon-link:hover {
  color: var(--cream-card);
  border-color: var(--plum);
  background: var(--plum);
  transform: translateY(-2px);
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  color: var(--plum-deep);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  font-weight: 600;
  line-height: 1.1;
  box-shadow: 0 10px 24px oklch(55% 0.1 70 / 0.26);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px oklch(55% 0.1 70 / 0.32);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(128px, 15vh, 172px) 0 clamp(56px, 8vh, 96px);
  background:
    radial-gradient(52% 46% at 78% 46%, oklch(89% 0.035 318 / 0.5), transparent 70%),
    radial-gradient(circle at 16% 18%, oklch(73% 0.105 78 / 0.1) 0 2px, transparent 3px),
    radial-gradient(circle at 8% 62%, oklch(73% 0.105 78 / 0.12) 0 1.5px, transparent 3px),
    radial-gradient(circle at 42% 88%, oklch(74% 0.055 318 / 0.2) 0 1.5px, transparent 3px),
    var(--cream);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  right: -8%;
  top: 4%;
  width: min(62vw, 880px);
  height: auto;
  fill: none;
  stroke: oklch(55% 0.1 70 / 0.3);
  stroke-width: 1.2;
  stroke-dasharray: 3 9;
  stroke-linecap: round;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.h1-line {
  display: block;
}

.h1-accent {
  position: relative;
  display: inline-block;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}

.squiggle {
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -0.08em;
  width: 96%;
  height: 0.14em;
  fill: none;
  stroke: var(--gold);
  stroke-width: 3.4;
  stroke-linecap: round;
}

.hero-copy {
  max-width: 54ch;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--plum);
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid oklch(55% 0.1 70 / 0.4);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  background: oklch(98.4% 0.012 86 / 0.8);
}

/* hero collage */

.hero-product {
  position: relative;
  min-height: clamp(480px, 46vw, 640px);
}

.hero-page,
.zeca-page {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(73% 0.105 78 / 0.45);
  border-radius: var(--radius-page);
  background: var(--navy-deep);
  box-shadow: var(--shadow-page);
}

.hero-page::after,
.zeca-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.07), transparent 20%, transparent 80%, oklch(0% 0 0 / 0.12)),
    linear-gradient(180deg, transparent 48%, oklch(18% 0.042 262 / 0.9) 100%);
}

.hero-page img,
.zeca-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-page-cover {
  left: 2%;
  top: 3%;
  z-index: 2;
  width: min(58%, 322px);
  aspect-ratio: 1054 / 1492;
  transform: rotate(-5deg);
}

.hero-page-inside {
  right: 0;
  top: 22%;
  z-index: 1;
  width: min(53%, 296px);
  aspect-ratio: 862 / 1430;
  transform: rotate(4.5deg);
}

.page-tag {
  position: absolute;
  z-index: 3;
  left: 13px;
  bottom: 13px;
  border-radius: var(--radius-pill);
  padding: 4px 11px;
  color: var(--navy-deep);
  background: oklch(96.8% 0.018 84 / 0.92);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* stickers — lilac speech bubbles from the brand board */

.sticker {
  position: absolute;
  z-index: 4;
  margin: 0;
  border-radius: 16px;
  padding: 14px 20px;
  color: var(--plum);
  background: var(--lilac);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.34rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.18;
  box-shadow: var(--shadow-sticker);
}

.sticker::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -7px;
  width: 15px;
  height: 15px;
  background: var(--lilac);
  border-radius: 3px;
  transform: rotate(45deg);
}

.sticker-hero {
  left: -2%;
  bottom: 7%;
  max-width: 236px;
  transform: rotate(-4deg);
}

.sticker-heart {
  position: absolute;
  right: -11px;
  top: -13px;
  width: 26px;
  height: 26px;
  fill: var(--pink);
  stroke: none;
}

/* hero doodles */

.doodle-moon {
  left: 8%;
  top: -4%;
  width: 40px;
  height: 40px;
  stroke: var(--gold-deep);
}

.spark-1 {
  right: -3%;
  top: 8%;
  width: 30px;
  height: 30px;
}

.spark-2 {
  left: 34%;
  bottom: -3%;
  width: 20px;
  height: 20px;
  stroke: var(--lilac-deep);
}

.doodle-paws {
  left: -13%;
  bottom: 6%;
  width: 110px;
  height: auto;
}

/* ---------- marquee ---------- */

.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 10px;
  background: var(--cream);
}

.marquee-track {
  display: flex;
  width: max-content;
  transform: rotate(-1.1deg);
  margin-inline: -2%;
  color: var(--cream);
  background: linear-gradient(90deg, var(--plum-deep), var(--plum) 50%, var(--plum-deep));
  animation: marqueeScroll 42s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 52px;
  flex: none;
  min-width: 104vw;
  justify-content: space-around;
  padding: 15px 26px 15px 52px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-style: italic;
  white-space: nowrap;
}

.marquee-mark {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes marqueeScroll {
  from {
    transform: rotate(-1.1deg) translate3d(0, 0, 0);
  }

  to {
    transform: rotate(-1.1deg) translate3d(-50%, 0, 0);
  }
}

/* ---------- sample (caso Zeca) ---------- */

.sample-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 148px) 0 clamp(64px, 7vw, 104px);
  background:
    radial-gradient(46% 42% at 82% 30%, oklch(89% 0.035 318 / 0.42), transparent 72%),
    radial-gradient(circle at 6% 34%, oklch(73% 0.105 78 / 0.1) 0 1.5px, transparent 3px),
    var(--cream-2);
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.sample-copy h2 {
  max-width: 15ch;
}

.sample-copy p {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.zeca-stack {
  position: relative;
  min-height: clamp(520px, 52vw, 730px);
}

.zeca-page-cover {
  left: 0;
  top: 1%;
  z-index: 2;
  width: min(56%, 418px);
  aspect-ratio: 1054 / 1492;
  transform: rotate(-4deg);
}

.zeca-page-inside {
  right: 1%;
  top: 12%;
  z-index: 1;
  width: min(50%, 375px);
  aspect-ratio: 862 / 1430;
  transform: rotate(3.5deg);
}

.sticker-zeca {
  right: 4%;
  bottom: 2%;
  max-width: 300px;
  transform: rotate(2.5deg);
}

.sticker-zeca::after {
  left: auto;
  right: 34px;
}

.spark-3 {
  left: 47%;
  top: -3%;
  width: 26px;
  height: 26px;
}

.sample-note {
  margin-top: clamp(40px, 5vw, 64px);
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  font-style: italic;
  text-align: center;
}

/* ---------- índice do mapa ---------- */

.toc-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0;
  background: var(--cream);
}

.toc-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.toc-heading {
  position: sticky;
  top: 122px;
}

.toc-heading h2 {
  max-width: 13ch;
}

.toc-lead {
  max-width: 40ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px dashed oklch(33% 0.085 322 / 0.24);
}

.toc-item:first-child {
  padding-top: 6px;
}

.toc-num {
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.toc-body h3 {
  font-size: clamp(1.45rem, 1.8vw, 1.75rem);
}

.toc-body p {
  max-width: 44ch;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.5;
}

.toc-tag {
  align-self: center;
  border-radius: var(--radius-pill);
  padding: 5px 13px;
  color: var(--plum);
  background: var(--lilac);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.toc-tag-open {
  color: var(--gold-deep);
  background: transparent;
  border: 1px solid oklch(55% 0.1 70 / 0.45);
}

.toc-honesty {
  max-width: 34ch;
  margin: 40px 0 0;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-style: italic;
  line-height: 1.25;
}

/* ---------- como funciona ---------- */

.process-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 148px) 0;
  background:
    radial-gradient(40% 46% at 12% 16%, oklch(89% 0.035 318 / 0.4), transparent 70%),
    var(--cream-2);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.process-heading {
  position: sticky;
  top: 122px;
}

.process-heading h2 {
  max-width: 12ch;
}

.process-lead {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.process-path {
  position: relative;
  display: grid;
  gap: 8px;
}

.process-path::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 0;
  border-left: 2px dashed oklch(55% 0.1 70 / 0.4);
}

.process-path article {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 18px 0;
}

.step-badge {
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1.5px solid oklch(55% 0.1 70 / 0.55);
  border-radius: 50%;
  color: var(--gold-deep);
  background: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  box-shadow: 0 8px 20px oklch(55% 0.1 70 / 0.14);
}

.process-path h3 {
  margin-top: 12px;
}

.process-path p {
  max-width: 48ch;
  margin: 8px 0 0;
  color: var(--ink-soft);
}

/* ---------- planos ---------- */

.plans-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0 clamp(72px, 8vw, 112px);
  background:
    radial-gradient(44% 40% at 86% 12%, oklch(89% 0.035 318 / 0.45), transparent 70%),
    radial-gradient(circle at 10% 80%, oklch(73% 0.105 78 / 0.1) 0 1.5px, transparent 3px),
    var(--cream);
}

.plans-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(520px, 1.12fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.plans-copy h2 {
  max-width: 12ch;
}

.plans-lead {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.plan-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.plan-proof span {
  border: 1px solid oklch(55% 0.1 70 / 0.42);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  color: var(--plum);
  background: var(--cream-card);
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 30px;
  background: var(--cream-card);
  box-shadow: var(--shadow-card);
}

.price-primary {
  color: oklch(95% 0.02 84);
  border-color: oklch(73% 0.105 78 / 0.55);
  background:
    radial-gradient(circle at 82% 10%, oklch(96% 0.02 84 / 0.2) 0 1.5px, transparent 3px),
    radial-gradient(circle at 16% 22%, oklch(73% 0.105 78 / 0.4) 0 1px, transparent 2.5px),
    radial-gradient(circle at 64% 84%, oklch(96% 0.02 84 / 0.16) 0 1px, transparent 2.5px),
    radial-gradient(110% 90% at 50% 0%, oklch(29% 0.055 268), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  box-shadow: 0 30px 70px oklch(18% 0.042 262 / 0.35);
  transform: translateY(-14px);
}

.price-label {
  margin: 0 0 12px;
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-primary .price-label {
  color: var(--gold);
}

.price-card h3 {
  font-size: clamp(1.7rem, 2.2vw, 2.1rem);
}

.price-primary h3 {
  color: oklch(96% 0.02 84);
}

.price {
  margin: 16px 0;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1;
}

.price-primary .price {
  color: var(--gold-soft);
}

.price-summary {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.42;
}

.price-primary .price-summary {
  color: oklch(92% 0.025 84 / 0.85);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.price-primary li {
  color: oklch(92% 0.025 84 / 0.85);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lilac-deep);
}

.price-primary li::before {
  background: var(--gold);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

/* ---------- CTA final (a única noite da página) ---------- */

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(104px, 12vw, 170px) 0 clamp(88px, 10vw, 140px);
  color: oklch(95% 0.02 84);
  background:
    radial-gradient(90% 70% at 50% 0%, oklch(27% 0.07 318), transparent 72%),
    linear-gradient(180deg, var(--plum-night), var(--plum-nightest));
}

.night-stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 11% 24%, oklch(95% 0.02 84 / 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 27% 68%, oklch(73% 0.105 78 / 0.6) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 18%, oklch(95% 0.02 84 / 0.4) 0 1.4px, transparent 2.6px),
    radial-gradient(circle at 61% 54%, oklch(73% 0.105 78 / 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 26%, oklch(95% 0.02 84 / 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 89% 64%, oklch(73% 0.105 78 / 0.55) 0 1.2px, transparent 2.4px),
    radial-gradient(circle at 18% 88%, oklch(95% 0.02 84 / 0.35) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 90%, oklch(95% 0.02 84 / 0.4) 0 1px, transparent 2px);
  animation: twinkle 5.5s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.55;
  }

  to {
    opacity: 1;
  }
}

.doodle-moon-final {
  right: clamp(20px, 9vw, 130px);
  top: clamp(48px, 8vw, 110px);
  width: 46px;
  height: 46px;
  stroke: var(--gold);
}

.final-layout {
  display: grid;
  justify-items: start;
  gap: 22px;
  max-width: 900px;
}

.eyebrow-night {
  color: var(--gold);
  margin-bottom: 0;
}

.final-layout h2 {
  color: oklch(96% 0.02 84);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  max-width: 18ch;
}

.final-layout > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: oklch(92% 0.025 84 / 0.78);
  font-size: 1.15rem;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  border: 1px solid oklch(95% 0.02 84 / 0.32);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  color: oklch(95% 0.02 84 / 0.9);
  font-weight: 600;
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.pill-link:hover {
  color: var(--plum-deep);
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-2px);
}

.pill-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-signature {
  margin: 26px 0 0;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-style: italic;
}

/* ---------- footer ---------- */

.site-footer {
  padding: 26px 0;
  color: oklch(92% 0.025 84 / 0.7);
  background: var(--plum-nightest);
  border-top: 1px solid oklch(73% 0.105 78 / 0.2);
  font-size: 0.98rem;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-layout p {
  margin: 0;
  max-width: 52ch;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-layout a {
  transition: color 160ms var(--ease-out);
}

.footer-layout a:hover {
  color: var(--gold);
}

/* ---------- reveal ---------- */

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease-soft), transform 720ms var(--ease-soft);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   checkout + legal
   ========================================================================== */

.checkout-page,
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 6%, oklch(73% 0.105 78 / 0.06), transparent 30%),
    var(--cream);
}

.checkout-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 4vw, 52px);
  background: oklch(96.8% 0.018 84 / 0.94);
  border-bottom: 1px solid oklch(33% 0.06 322 / 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.checkout-header .brand-logo-img {
  width: clamp(138px, 14vw, 186px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1.5px solid oklch(33% 0.085 322 / 0.32);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  color: var(--plum);
  font-weight: 600;
  line-height: 1.1;
  transition: border-color 180ms var(--ease-out), background-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.text-link:hover {
  border-color: var(--gold-deep);
  background: var(--cream-card);
  transform: translateY(-1px);
}

.checkout-shell,
.legal-shell {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: 64px 0 110px;
}

.checkout-intro {
  max-width: 720px;
}

.checkout-intro h1,
.legal-shell h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.checkout-intro p,
.legal-intro {
  color: var(--ink-soft);
}

.checkout-form {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.checkout-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: 30px;
  background: var(--cream-card);
  box-shadow: 0 12px 34px oklch(30% 0.06 322 / 0.07);
}

.panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  border-bottom: 1px dashed oklch(33% 0.085 322 / 0.2);
  padding-bottom: 16px;
}

.panel-heading span {
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.plan-option {
  display: flex;
  gap: 14px;
  min-height: 92px;
  border: 1.5px solid var(--line-soft);
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.plan-option:has(input:checked) {
  border-color: var(--gold-deep);
  background: oklch(86% 0.06 84 / 0.28);
}

.plan-option input {
  margin-top: 6px;
  accent-color: var(--gold-deep);
}

.plan-option strong,
.plan-option small {
  display: block;
}

.plan-option strong {
  color: var(--plum);
}

.plan-option small,
.helper-note {
  color: var(--ink-soft);
}

.helper-note {
  margin: 16px 0 0;
  font-size: 0.98rem;
}

.pet-list {
  display: grid;
  gap: 18px;
}

.pet-card {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 22px;
  background: var(--cream);
}

.pet-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.pet-card-head h3 {
  margin: 0;
  font-size: 1.5rem;
}

.remove-pet {
  color: var(--pink);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field span,
.check-row span {
  color: var(--plum);
  font-weight: 600;
}

.check-row span {
  font-weight: 400;
  color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid oklch(33% 0.085 322 / 0.24);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--cream-card);
  transition: border-color 160ms var(--ease-out);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold-deep);
}

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

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

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.check-row input {
  margin-top: 6px;
  accent-color: var(--gold-deep);
}

.check-row a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pet-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.review-copy {
  color: var(--ink-soft);
}

.form-errors {
  margin-bottom: 18px;
  color: oklch(46% 0.13 25);
}

.form-errors ul {
  margin: 0;
  padding-left: 20px;
}

.button-submit {
  width: min(320px, 100%);
}

.checkout-summary {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: oklch(21% 0.06 318 / 0.66);
}

.summary-inner {
  width: min(720px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  border: 1px solid oklch(73% 0.105 78 / 0.4);
  border-radius: var(--radius-card);
  padding: 34px;
  background: var(--cream);
  box-shadow: 0 40px 90px oklch(16% 0.05 316 / 0.4);
}

.summary-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.summary-inner dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px 18px;
}

.summary-inner dt {
  color: var(--plum);
  font-weight: 600;
}

.summary-inner dd {
  margin: 0;
  color: var(--ink-soft);
}

.summary-inner .button {
  margin-top: 18px;
  margin-right: 10px;
}

.legal-shell {
  max-width: 780px;
  padding-top: 72px;
}

.legal-block {
  margin-top: 42px;
  border-top: 1px dashed oklch(33% 0.085 322 / 0.22);
  padding-top: 30px;
}

.legal-block h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}

.legal-block p {
  max-width: 70ch;
  color: var(--ink-soft);
}

/* ==========================================================================
   responsive
   ========================================================================== */

@media (max-width: 1120px) {
  .hero-inner,
  .sample-layout,
  .toc-layout,
  .process-layout,
  .plans-layout {
    grid-template-columns: 1fr;
  }

  .toc-heading,
  .process-heading {
    position: static;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-product {
    width: min(600px, 100%);
    margin-inline: auto;
    min-height: clamp(420px, 96vw, 600px);
  }

  .doodle-paws {
    left: -4%;
  }

  .zeca-stack {
    width: min(640px, 100%);
    margin-inline: auto;
    min-height: clamp(460px, 104vw, 680px);
  }

  .toc-heading h2,
  .process-heading h2,
  .plans-copy h2 {
    max-width: 18ch;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 1.0625rem;
  }

  html {
    scroll-padding-top: 80px;
  }

  section[id] {
    scroll-margin-top: 80px;
  }

  .site-header,
  .checkout-header {
    padding: 10px 16px;
  }

  .main-nav {
    display: none;
  }

  .brand-logo-img {
    width: clamp(118px, 32vw, 148px);
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.94rem;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: clamp(2.7rem, 11.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 7.4vw, 2.9rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    font-size: 0.9rem;
  }

  .hero-product {
    min-height: clamp(380px, 112vw, 560px);
  }

  .hero-page-cover {
    width: 57%;
  }

  .hero-page-inside {
    width: 52%;
    top: 24%;
  }

  .sticker {
    font-size: 1.16rem;
    padding: 12px 16px;
  }

  .sticker-hero {
    left: 0;
    bottom: 4%;
    max-width: 172px;
  }

  .doodle-moon {
    left: 2%;
    top: -2%;
    width: 32px;
    height: 32px;
  }

  .doodle-paws {
    display: none;
  }

  .marquee-group {
    gap: 34px;
    padding: 12px 18px 12px 34px;
  }

  .sample-section,
  .toc-section,
  .process-section,
  .plans-section {
    padding-block: 72px;
  }

  .final-cta {
    padding: 88px 0 72px;
  }

  .sample-layout {
    gap: 44px;
  }

  .zeca-stack {
    min-height: clamp(430px, 118vw, 620px);
  }

  .zeca-page-cover {
    width: 58%;
  }

  .zeca-page-inside {
    width: 52%;
    top: 14%;
  }

  .sticker-zeca {
    right: 0;
    bottom: 0;
    max-width: min(270px, 68%);
  }

  .toc-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 6px 14px;
    padding: 22px 0;
  }

  .toc-num {
    font-size: 1.6rem;
  }

  .toc-tag {
    grid-column: 2;
    justify-self: start;
    margin-top: 10px;
  }

  .process-path article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .step-badge {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .process-path::before {
    left: 24px;
  }

  .pricing-grid,
  .plan-options,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .price-primary {
    transform: none;
  }

  .final-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .final-actions .button,
  .pill-link {
    width: 100%;
    justify-content: center;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-panel {
    padding: 22px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .summary-inner {
    padding: 24px;
  }

  .summary-inner dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .checkout-shell,
  .legal-shell {
    width: min(100% - 32px, 980px);
  }

  .header-actions .icon-link {
    display: none;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .copy-actions .button {
    width: 100%;
  }

  .hero-product {
    min-height: clamp(360px, 128vw, 480px);
  }

  .hero-page-cover {
    width: 60%;
    left: 0;
  }

  .hero-page-inside {
    width: 54%;
    top: 26%;
  }

  .page-tag {
    left: 9px;
    bottom: 9px;
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .sticker-hero {
    max-width: 150px;
    font-size: 1.05rem;
  }

  .zeca-page-cover {
    width: 62%;
  }

  .zeca-page-inside {
    width: 55%;
    top: 16%;
  }

  .spark-1,
  .spark-2 {
    display: none;
  }

  .toc-honesty {
    font-size: 1.35rem;
  }

  .price-card,
  .checkout-panel,
  .pet-card {
    padding: 20px;
  }
}

/* ---------- reduced motion ---------- */

@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;
  }

  .marquee-track {
    animation: none;
    width: auto;
    transform: none;
    margin-inline: 0;
  }

  .marquee-group[aria-hidden="true"] {
    display: none;
  }

  .marquee-group {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
  }

  .float-slow,
  .float-fast {
    animation: none;
  }

  .night-stars {
    animation: none;
    opacity: 0.85;
  }

  .js .reveal,
  .js .reveal.is-visible,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
