@font-face {
  font-family: "Area Normal";
  src: url("assets/fonts/Area-Normal-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Area Normal";
  src: url("assets/fonts/Area-Normal-Thin.otf") format("opentype");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Area Normal";
  src: url("assets/fonts/Area-Normal-Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Area Extended";
  src: url("assets/fonts/Area-Extended-Thin.otf") format("opentype");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Area Extended";
  src: url("assets/fonts/Area-Extended-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Area Extended";
  src: url("assets/fonts/Area-Extended-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --green: #092b25;
  --green-2: #0e3430;
  --green-3: #061d19;
  --tan: #bd9773;
  --tan-soft: #d4b99f;
  --paper: #f6f4ef;
  --paper-2: #ffffff;
  --line: rgba(9, 43, 37, 0.16);
  --line-dark: rgba(255, 255, 255, 0.18);
  --text-muted: rgba(9, 43, 37, 0.64);
  --white-muted: rgba(255, 255, 255, 0.72);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 60px rgba(9, 43, 37, 0.12);
  --shadow-premium: 0 30px 80px rgba(9, 43, 37, 0.18);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --page-x: 22px;
}

* {
  box-sizing: border-box;
}

.print-only {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  background-attachment: fixed;
  color: var(--green);
  font-family: "Area Normal", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  letter-spacing: 0;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.section-label,
.eyebrow,
.chapter-kicker,
.chapter-nav,
.cover-meta,
.plan-card-top p,
.investment span,
.slide-meta,
.slide-badge,
.recommended-badge,
dt {
  font-family: "Area Extended", sans-serif;
}

h1,
h2,
h3 {
  font-weight: 200;
  line-height: 1.08;
}

::selection {
  background: var(--tan);
  color: var(--green);
}

/* ── Scroll progress bar ─────────────────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 2px;
  background: rgba(189, 151, 115, 0.16);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--tan);
  transform: scaleX(0);
  transform-origin: left center;
}

@media (max-width: 719px) {
  .scroll-progress {
    display: none;
  }
}

/* ── Chapter dots (position indicator, mobile) ───────────────────────────── */

.chapter-dots {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transform: translateY(-50%);
}

.chapter-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(9, 43, 37, 0.22);
  transition:
    background 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.chapter-dot.is-active {
  background: var(--tan);
  transform: scale(1.5);
}

.chapter-dots.is-dark-theme .chapter-dot {
  background: rgba(255, 255, 255, 0.28);
}

.chapter-dots.is-dark-theme .chapter-dot.is-active {
  background: var(--tan-soft);
}

/* ── Desktop nav (substituída pelos dots) ────────────────────────────────── */

.chapter-nav {
  display: none;
}

/* ── Chapters / layout ───────────────────────────────────────────────────── */

.chapter {
  position: relative;
  scroll-margin-top: 1px;
}

.chapter-frame {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 var(--page-x);
}

.chapter-frame-wide {
  width: min(100%, 1240px);
}

.chapter-kicker {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  color: var(--tan);
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}

.chapter-kicker::after {
  content: "";
  display: block;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.section-label,
.eyebrow {
  color: var(--tan);
  font-size: 0.88rem;
  line-height: 1.2;
  text-transform: uppercase;
}

/* ── Reveal animation ────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

/* ── Cover ───────────────────────────────────────────────────────────────── */

.cover {
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper-2);
  background: var(--green);
}

.cover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cover-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100svh;
  padding: calc(env(safe-area-inset-top) + 24px) var(--page-x) calc(env(safe-area-inset-bottom) + 22px);
}

.cover-top {
  display: flex;
  align-items: flex-start;
}

.brand-logo {
  width: 185px;
  height: auto;
}

.cover-copy {
  align-self: end;
  width: min(100%, 670px);
  padding-bottom: 8svh;
}

.cover-title {
  margin-top: 14px;
  color: var(--paper-2);
  font-family: "Area Extended", sans-serif;
  font-size: 3.25rem;
  font-weight: 200;
  text-transform: uppercase;
}

.cover-lead {
  max-width: 34rem;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.58;
}

.hero-sequence {
  opacity: 0;
  transform: translateY(18px);
  animation: introReveal 1s var(--ease) forwards;
}

.sequence-1 { animation-delay: 0.18s; }
.sequence-2 { animation-delay: 0.34s; }
.sequence-3 { animation-delay: 0.54s; }
.sequence-4 { animation-delay: 0.72s; }
.sequence-5 { animation-delay: 0.92s; }
.sequence-6 { animation-delay: 1.14s; }

/* ── About ───────────────────────────────────────────────────────────────── */

.about {
  position: relative;
  min-height: 78svh;
  padding: 76px 0 78px;
  background: var(--paper-2);
  overflow: hidden;
}

.about-watermark {
  position: absolute;
  top: -20px;
  right: -40px;
  width: 340px;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.about-layout {
  display: grid;
  gap: 34px;
  padding-top: 40px;
}

.about-title-wrap {
  display: grid;
  gap: 18px;
}

.about h2,
.section-header h2,
.closing h2 {
  font-size: 2.15rem;
}

.about-copy {
  display: grid;
  gap: 18px;
  color: rgba(9, 43, 37, 0.78);
  font-size: 1.06rem;
}

.pillars {
  display: grid;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.pillar span {
  color: var(--tan);
  font-family: "Area Extended", sans-serif;
  font-size: 0.8rem;
}

.pillar h3 {
  font-size: 1.32rem;
}

.pillar p {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ── Plans ───────────────────────────────────────────────────────────────── */

.plans {
  min-height: 150svh;
  padding: 76px 0 86px;
  background: var(--paper);
}

.section-header {
  display: grid;
  gap: 16px;
  max-width: 720px;
  padding-top: 36px;
}

.section-header > p:last-child {
  color: var(--text-muted);
  font-size: 1.04rem;
}

.plan-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.plan-card {
  position: relative;
  display: grid;
  min-height: 354px;
  padding: 26px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(9, 43, 37, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.plan-card:hover {
  border-color: rgba(189, 151, 115, 0.52);
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}

.plan-watermark {
  position: absolute;
  right: 18px;
  top: 12px;
  color: rgba(9, 43, 37, 0.05);
  font-family: "Area Extended", sans-serif;
  font-size: 6.5rem;
  line-height: 1;
  pointer-events: none;
}

.plan-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.plan-card-top p {
  color: var(--tan);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 2.25rem;
}

.plan-positioning {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.plan-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plan-highlights li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: baseline;
  color: rgba(9, 43, 37, 0.78);
  font-size: 0.95rem;
}

.plan-highlights li sup,
.slide-columns li sup {
  font-size: 0.6rem;
  color: var(--tan);
  vertical-align: super;
  line-height: 0;
  margin-left: 1px;
}

/* Mobile: mostra fn-m, esconde fn-d */
.fn-d { display: none; }
.fn-list-d { display: none; }

/* Chevron using the Area Extended font */
.plan-highlights li::before {
  content: "›";
  font-family: "Area Extended", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--tan);
}

.investment {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  align-self: end;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.investment span {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.investment strong {
  font-family: "Area Extended", sans-serif;
  font-size: 1.06rem;
  font-weight: 400;
}

.scope-button,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.scope-button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 20px;
  border: 1px solid rgba(9, 43, 37, 0.22);
  background: transparent;
  color: var(--green);
}

.scope-button:hover,
.scope-button:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--paper-2);
  transform: translateY(-2px);
}

.plan-card-featured {
  background: var(--green);
  color: var(--paper-2);
  border-color: rgba(189, 151, 115, 0.42);
  box-shadow: 0 34px 84px rgba(6, 29, 25, 0.24);
}

.plan-card-featured .plan-watermark {
  color: rgba(255, 255, 255, 0.07);
}

.plan-card-featured .plan-positioning,
.plan-card-featured .plan-highlights li,
.plan-card-featured .investment span {
  color: rgba(255, 255, 255, 0.74);
}

.plan-card-featured .plan-highlights li::before {
  color: var(--tan-soft);
}

.plan-card-featured .investment {
  border-color: var(--line-dark);
}

.plan-card-featured .scope-button {
  border-color: rgba(212, 185, 159, 0.58);
  color: var(--paper-2);
}

.plan-card-featured .scope-button:hover,
.plan-card-featured .scope-button:focus-visible {
  background: var(--tan);
  border-color: var(--tan);
  color: var(--green);
}

.recommended-badge {
  position: relative;
  z-index: 1;
  justify-self: start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(212, 185, 159, 0.46);
  border-radius: 999px;
  color: var(--tan-soft);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
}

.plan-footnotes {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footnote-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.footnote-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 4px;
  align-items: baseline;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.footnote-list li sup {
  font-family: "Area Extended", sans-serif;
  font-size: 0.65rem;
  color: var(--tan);
  line-height: 1;
}

/* ── Process ─────────────────────────────────────────────────────────────── */

.process {
  min-height: 108svh;
  padding: 76px 0 84px;
  background: var(--green);
  color: var(--paper-2);
}

.process .chapter-kicker,
.closing .chapter-kicker {
  color: var(--tan-soft);
}

.section-header-dark > p:last-child {
  color: var(--white-muted);
}

.timeline {
  display: grid;
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.timeline-week {
  color: var(--tan-soft);
  font-family: "Area Extended", sans-serif;
  font-size: 0.6rem;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.68;
}

.timeline-num {
  color: var(--tan-soft);
  font-family: "Area Extended", sans-serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.timeline-item h3 {
  font-size: 1.3rem;
}

.timeline-item p {
  margin-top: 8px;
  color: var(--white-muted);
  font-size: 0.96rem;
}

.timeline-note {
  margin-top: 20px;
  padding-top: 0;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--white-muted);
  opacity: 0.7;
}

/* ── Closing ─────────────────────────────────────────────────────────────── */

.closing {
  position: relative;
  min-height: 82svh;
  padding: 76px 0 34px;
  overflow: hidden;
  background: var(--green-3);
  color: var(--paper-2);
}

/* Dark overlay on top of the background image */
.closing-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(6, 29, 25, 0.68);
}

.closing-frame {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(82svh - 110px);
}

.closing-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
  align-self: center;
  padding-top: 36px;
}

.closing-copy p:not(.section-label) {
  color: var(--white-muted);
  font-size: 1.03rem;
}

.closing-actions {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.primary-cta,
.secondary-cta {
  padding: 0 24px;
  font-family: "Area Extended", sans-serif;
  font-size: 0.86rem;
}

.secondary-cta {
  gap: 9px;
}

.primary-cta {
  background: var(--tan);
  color: var(--green);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.82);
}

.primary-cta:hover,
.primary-cta:focus-visible,
.secondary-cta:hover,
.secondary-cta:focus-visible {
  transform: translateY(-2px);
}

.primary-cta:hover,
.primary-cta:focus-visible {
  background: var(--tan-soft);
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
  border-color: var(--tan);
  color: var(--tan-soft);
}

.proposal-footer {
  display: grid;
  gap: 14px;
  align-self: end;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.proposal-footer img {
  width: 196px;
  margin-left: -4px;
}

.proposal-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.proposal-footer small {
  color: rgba(255, 255, 255, 0.56);
  font-family: "Area Extended", sans-serif;
  font-size: 0.72rem;
}

/* ── Plan modal ──────────────────────────────────────────────────────────── */

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  visibility: hidden;
  pointer-events: none;
}

.plan-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 29, 25, 0.42);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 0.32s var(--ease);
}

.plan-modal.is-open .modal-backdrop {
  opacity: 1;
}

.modal-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: min(92svh, 820px);
  overflow: hidden;
  border: 1px solid rgba(9, 43, 37, 0.12);
  border-radius: 30px 30px 0 0;
  background: var(--paper);
  color: var(--green);
  box-shadow: 0 -24px 80px rgba(6, 29, 25, 0.28);
  transform: translateY(105%);
  transition: transform 0.42s var(--ease);
}

.plan-modal.is-open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(9, 43, 37, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  cursor: pointer;
  font-family: "Area Extended", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--tan);
  color: var(--tan);
}

.modal-track {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  touch-action: pan-y;
  transition: transform 0.42s var(--ease);
}

.plan-slide {
  flex: 0 0 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.slide-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 58px 22px 28px;
  overscroll-behavior: contain;
}

.slide-meta,
.slide-badge {
  color: var(--tan);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.slide-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(189, 151, 115, 0.36);
  border-radius: 999px;
}

.plan-slide h2 {
  margin-top: 10px;
  font-size: 2.45rem;
}

.slide-intro {
  max-width: 680px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1.03rem;
}

.slide-detail-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.slide-detail-block h3,
.slide-columns h3 {
  font-size: 1.12rem;
  font-weight: 400;
}

.slide-detail-block p {
  margin-top: 10px;
  color: var(--text-muted);
}

.slide-columns {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.slide-columns ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.slide-columns li {
  display: grid;
  grid-template-columns: 18px 1fr;
  color: rgba(9, 43, 37, 0.76);
}

/* Chevron using the Area Extended font */
.slide-columns li::before {
  content: "›";
  font-family: "Area Extended", sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--tan);
}

.slide-facts {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
}

.slide-facts div {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.slide-facts dt {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.slide-facts dd {
  margin: 6px 0 0;
  font-family: "Area Extended", sans-serif;
  font-size: 1.08rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(14px);
}

.modal-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.modal-dot {
  width: 28px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(9, 43, 37, 0.18);
  cursor: pointer;
  transition: background 0.25s var(--ease);
}

.modal-dot.is-active {
  background: var(--tan);
}

.modal-arrow {
  display: none;
}

/* ── Keyframes ───────────────────────────────────────────────────────────── */

@keyframes introReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── 720px+ ──────────────────────────────────────────────────────────────── */

@media (min-width: 720px) {
  :root {
    --page-x: 34px;
  }

  body {
    font-size: 17px;
  }

  /* Dots ligeiramente maiores no desktop para melhor clicabilidade */
  .chapter-dots {
    right: 20px;
    gap: 9px;
  }

  .chapter-dot {
    width: 6px;
    height: 6px;
  }

  .cover-inner {
    padding: calc(env(safe-area-inset-top) + 34px) 40px calc(env(safe-area-inset-bottom) + 32px);
  }

  .brand-logo {
    width: 254px;
  }

  /* Escala fluida: cresce com a janela, sem saltos bruscos */
  .cover-title {
    font-size: clamp(3.5rem, 7.5vw, 6.35rem);
  }

  .cover-lead {
    font-size: 1.16rem;
  }

  .about,
  .plans,
  .process,
  .closing {
    padding-top: 96px;
  }

  .about h2,
  .section-header h2,
  .closing h2 {
    font-size: clamp(2.15rem, 4.2vw, 3.65rem);
  }

  .about-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: start;
  }

  .pillars {
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
  }

  .pillar {
    grid-template-columns: 1fr;
    padding: 24px 20px 26px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .pillar:first-child {
    padding-left: 0;
  }

  .pillar:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .pillar p {
    grid-column: auto;
  }

  .plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
  }

  /* Essencial esquerda · Estratégico centro · Completo direita */
  [aria-labelledby="plan-essential-title"]   { order: 1; }
  [aria-labelledby="plan-estrategico-title"] { order: 2; }
  [aria-labelledby="plan-complete-title"]    { order: 3; }

  /* Superscripts adaptativos */
  .fn-m { display: none; }
  .fn-d { display: inline; }

  /* Lista de notas adaptativa */
  .fn-list-m { display: none; }
  .fn-list-d { display: grid; }

  .plan-card {
    min-height: 460px;
    padding: 30px 26px 24px;
  }

  .plan-card-featured {
    min-height: 492px;
    transform: translateY(-16px);
  }

  .plan-card-featured:hover {
    transform: translateY(-20px);
  }

  .plan-footnotes {
    margin-top: 56px;
  }

  .footnote-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 32px;
  }

  .timeline {
    margin-top: 58px;
  }

  .timeline-item {
    grid-template-columns: 92px 1fr;
    padding: 30px 0;
  }

  .timeline-item h3 {
    font-size: 1.56rem;
  }

  .closing-frame {
    min-height: calc(82svh - 130px);
  }

  .closing-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .primary-cta,
  .secondary-cta {
    min-width: 230px;
  }

  .proposal-footer {
    grid-template-columns: 230px 1fr auto;
    gap: 30px;
    align-items: end;
  }

  .proposal-footer img {
    width: 220px;
  }

  .modal-panel {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(980px, calc(100% - 64px));
    height: min(82vh, 760px);
    border-radius: 30px;
    box-shadow: 0 34px 100px rgba(6, 29, 25, 0.32);
    transform: translate(-50%, -46%) scale(0.96);
  }

  .plan-modal.is-open .modal-panel {
    transform: translate(-50%, -50%) scale(1);
  }

  .slide-scroll {
    padding: 64px 72px 42px;
  }

  .plan-slide h2 {
    font-size: 4rem;
  }

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

  .slide-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .modal-footer {
    padding: 18px 26px;
  }

  .modal-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(9, 43, 37, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--green);
    cursor: pointer;
    transform: translateY(-50%);
  }

  .modal-arrow::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
  }

  .modal-arrow-prev {
    left: 18px;
  }

  .modal-arrow-prev::before {
    transform: translateX(2px) rotate(-45deg);
  }

  .modal-arrow-next {
    right: 18px;
  }

  .modal-arrow-next::before {
    transform: translateX(-2px) rotate(135deg);
  }
}

/* ── 1080px+ ─────────────────────────────────────────────────────────────── */

@media (min-width: 1080px) {
  :root {
    --page-x: 42px;
  }

  .cover-inner {
    padding-right: 58px;
    padding-left: 58px;
  }

  .cover-copy {
    padding-bottom: 10svh;
  }

  /* font-sizes gerenciadas pelo clamp no breakpoint 720px+ */
}

/* ── Small phones ────────────────────────────────────────────────────────── */

@media (max-width: 390px) {
  .cover-title {
    font-size: 2.78rem;
  }

  .brand-logo {
    width: 154px;
  }

  .plan-card {
    min-height: 340px;
  }
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .hero-sequence {
    opacity: 1;
    transform: none;
  }
}
