/* ═══════════════════════════════════════════════════════════════
   DIGIYOU — luz, vidro e um cartão holográfico
   ───────────────────────────────────────────────────────────────
   Direção: loja luminosa. Canvas claro com campos de cor aurora
   e grão fino; superfícies de vidro com sombras em camadas;
   tipografia Instrument Sans com momentos em Instrument Serif
   itálico; preços enormes com numerais tabulares.
   Assinatura: o cartão de identidade digital em CSS puro,
   flutuando no herói com verniz holográfico.
   ═══════════════════════════════════════════════════════════════ */

/* ── tokens ─────────────────────────────────────────────────── */

:root {
  --bg:        #f4f5fb;
  --bg-soft:   #fafbff;
  --ink:       #0b0e1e;
  --mut:       #5d6274;
  --line:      rgba(11, 14, 30, 0.08);
  --line-soft: rgba(11, 14, 30, 0.05);

  --cobalt:    #2334e6;
  --violet:    #6552f0;
  --amber:     #ffb43a;

  --grad: linear-gradient(135deg, #2334e6 0%, #5747ee 55%, #7a5cff 100%);

  --card:      #ffffff;
  --shadow-sm: 0 1px 2px rgba(11, 14, 30, 0.05), 0 4px 12px -4px rgba(11, 14, 30, 0.06);
  --shadow-md: 0 1px 2px rgba(11, 14, 30, 0.05),
               0 12px 32px -12px rgba(35, 52, 230, 0.14),
               0 32px 64px -32px rgba(11, 14, 30, 0.12);
  --shadow-lg: 0 2px 4px rgba(11, 14, 30, 0.06),
               0 24px 48px -16px rgba(35, 52, 230, 0.22),
               0 48px 96px -32px rgba(11, 14, 30, 0.18);

  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  --gutter: clamp(1.25rem, 4.5vw, 4rem);
  --band: clamp(4.5rem, 9vw, 8.5rem);

  --ease: cubic-bezier(0.22, 0.9, 0.3, 1);

  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
  --monoface: "IBM Plex Mono", ui-monospace, monospace;
}

/* ── base ───────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--cobalt); color: #fff; }

:focus-visible { outline: 2.5px solid var(--cobalt); outline-offset: 3px; border-radius: 4px; }

[id] { scroll-margin-top: 6rem; }

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
}
h1 em, h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.mono {
  font-family: var(--monoface);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.num { font-variant-numeric: tabular-nums; }

.skip {
  position: absolute; left: -100vw; top: 0; z-index: 300;
  background: var(--ink); color: #fff;
  padding: 0.875rem 1.25rem; font-weight: 600;
}
.skip:focus { left: 0; }

/* revelação ao rolar */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ── botões ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.25rem;
  padding: 0 1.625rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background 0.2s var(--ease), color 0.2s var(--ease);
}

.btn-hero {
  background: var(--grad);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
              0 8px 20px -8px rgba(35, 52, 230, 0.55);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
              0 14px 30px -10px rgba(35, 52, 230, 0.6);
}
.btn-hero:active { transform: translateY(0); }
.btn-hero svg { transition: transform 0.2s var(--ease); }
.btn-hero:hover svg { transform: translateX(3px); }

.btn-quiet {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.btn-quiet:hover { border-color: rgba(35, 52, 230, 0.4); color: var(--cobalt); background: #fff; }

.btn-block { width: 100%; }

/* ── cabeçalho ──────────────────────────────────────────────── */

.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  height: 4.5rem;
  padding: 0 var(--gutter);
  background: rgba(244, 245, 251, 0.75);
  backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid var(--line-soft);
}

.mark {
  font-weight: 700;
  font-size: 1.4375rem;
  letter-spacing: -0.045em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding-right: 0.8rem;
}
.mark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.36em;
  width: 0.46em;
  height: 0.46em;
  border-radius: 2px 50% 50% 50%;
  background: var(--amber);
  transform: rotate(45deg);
}

.masthead nav { display: flex; gap: 1.875rem; margin-left: auto; }
.masthead nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mut);
  transition: color 0.18s var(--ease);
}
.masthead nav a:hover { color: var(--ink); }

.cart-open {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  height: 2.625rem;
  padding: 0 0.5rem 0 1.125rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.cart-open:hover { transform: translateY(-1px); background: #1d2140; }
.cart-open .tally {
  min-width: 1.625rem;
  height: 1.625rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--monoface);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ── herói ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: clamp(3.5rem, 6.5vw, 6rem) var(--gutter) clamp(2.5rem, 4vw, 4rem);
  overflow: clip;
}
/* aurora + grão */
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(42rem 28rem at 12% 8%, rgba(35, 52, 230, 0.10), transparent 62%),
    radial-gradient(38rem 26rem at 88% 18%, rgba(101, 82, 240, 0.12), transparent 60%),
    radial-gradient(30rem 22rem at 75% 92%, rgba(255, 180, 58, 0.10), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 74rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  padding: 0.4375rem 0.9375rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mut);
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(35, 52, 230, 0.18);
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.75rem, 5.8vw, 4.75rem);
}
.hero h1 em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin-top: 1.375rem;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.55;
  color: var(--mut);
  max-width: 44ch;
}
.lede strong { color: var(--ink); font-weight: 600; }

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }

.hero-facts {
  display: flex;
  gap: 2.25rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-facts li { display: flex; flex-direction: column; gap: 0.125rem; }
.hero-facts b { font-weight: 600; font-size: 0.9375rem; letter-spacing: -0.01em; }
.hero-facts span { font-size: 0.8125rem; color: var(--mut); }

/* ── o cartão ───────────────────────────────────────────────── */

.hero-card {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.idcard {
  position: relative;
  width: min(26.5rem, 100%);
  aspect-ratio: 1.6;
  border-radius: 22px;
  padding: 1.5rem 1.625rem;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    linear-gradient(115deg, #151b56 0%, #2334e6 48%, #5747ee 78%, #7a5cff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 30px 60px -20px rgba(35, 52, 230, 0.55),
    0 60px 120px -40px rgba(11, 14, 30, 0.4);
  transform: rotate(-5deg);
  animation: card-float 7s var(--ease) infinite alternate;
  overflow: clip;
  isolation: isolate;
}
@keyframes card-float {
  from { transform: rotate(-5deg) translateY(6px); }
  to   { transform: rotate(-3.2deg) translateY(-10px); }
}

/* verniz holográfico */
.idcard-holo {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 210deg at 78% 18%,
      transparent 0deg,
      rgba(255, 180, 58, 0.24) 48deg,
      rgba(120, 255, 214, 0.20) 100deg,
      rgba(255, 120, 220, 0.18) 150deg,
      transparent 210deg);
  mix-blend-mode: screen;
  pointer-events: none;
}
.idcard-sheen {
  position: absolute;
  inset: -60%;
  background: linear-gradient(100deg, transparent 44%, rgba(255, 255, 255, 0.4) 50%, transparent 56%);
  transform: translateX(-70%) rotate(8deg);
  animation: sheen 6.5s var(--ease) infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%, 55%  { transform: translateX(-70%) rotate(8deg); }
  75%, 100% { transform: translateX(70%) rotate(8deg); }
}

.idcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.idcard-brand { font-weight: 700; font-size: 1.1875rem; letter-spacing: -0.04em; }
.idcard-std {
  font-family: var(--monoface);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  padding: 0.3125rem 0.625rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.idcard-chip {
  margin-top: auto;
  width: 2.5rem;
  height: 1.875rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd98a, #f0a93c 60%, #ffcf6b);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 2px rgba(120, 70, 0, 0.4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 4px 6px;
}
.idcard-chip i {
  border: 1px solid rgba(120, 70, 0, 0.35);
  border-radius: 2px;
}

.idcard-name {
  margin-top: 0.75rem;
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.idcard-rows {
  margin-top: 0.5625rem;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  font-family: var(--monoface);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}
.idcard-foot {
  margin-top: 0.875rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.idcard-foot .mono { color: rgba(255, 255, 255, 0.6); letter-spacing: 0.18em; }
.idcard-price {
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--amber);
}

.idcard-shadow {
  position: absolute;
  bottom: -2.25rem;
  left: 12%;
  right: 12%;
  height: 2.5rem;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(11, 14, 30, 0.28), transparent);
  filter: blur(6px);
  z-index: -1;
}

/* ── casos ──────────────────────────────────────────────────── */

.cases {
  position: relative;
  z-index: 1;
  max-width: 74rem;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cases-label {
  font-family: var(--monoface);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mut);
  margin-right: 0.5rem;
}
.cases button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cases button b {
  font-family: var(--monoface);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cobalt);
}
.cases button:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 52, 230, 0.45);
  box-shadow: var(--shadow-md);
}

/* ── cabeças de seção ───────────────────────────────────────── */

.section-head { text-align: center; max-width: 46rem; margin: 0 auto; }
.kicker {
  font-family: var(--monoface);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobalt);
}
.kicker-light { color: var(--amber); }
.section-head h2 {
  margin-top: 0.875rem;
  font-size: clamp(2.125rem, 4.4vw, 3.375rem);
}
.section-head h2 em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  margin: 1.125rem auto 0;
  color: var(--mut);
  font-size: 1.0313rem;
  max-width: 42ch;
}

/* ── preços ─────────────────────────────────────────────────── */

.pricing { padding: var(--band) var(--gutter) 0; }

.plans {
  max-width: 70rem;
  margin: 3.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.375rem;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.875rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: var(--grad);
  opacity: 0.35;
  transition: opacity 0.25s var(--ease);
}
.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(35, 52, 230, 0.28);
  box-shadow: var(--shadow-md);
}
.plan:hover::before { opacity: 1; }

/* destaque */
.plan-hot {
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-md);
}
.plan-hot::before { opacity: 1; }
.plan-flag {
  position: absolute;
  top: -0.8125rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3438rem 0.875rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px -6px rgba(35, 52, 230, 0.6);
  white-space: nowrap;
}

.plan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.plan-code { color: rgba(11, 14, 30, 0.38); letter-spacing: 0.1em; }
.plan-badge {
  font-size: 0.71875rem;
  font-weight: 600;
  padding: 0.25rem 0.6875rem;
  border-radius: 999px;
  background: rgba(255, 180, 58, 0.18);
  color: #8a5b00;
  white-space: nowrap;
}

.plan h3 {
  margin-top: 1.125rem;
  font-size: 1.625rem;
  font-weight: 600;
}
.plan-desc {
  margin-top: 0.5rem;
  font-size: 0.9063rem;
  color: var(--mut);
  min-height: 2.8em;
}

.plan-price {
  margin-top: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.plan-price .cur {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--mut);
}
.plan-price .val {
  font-size: 3.375rem;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(160deg, var(--ink) 30%, #3d478f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan-price .per {
  margin-left: 0.375rem;
  font-family: var(--monoface);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mut);
}

.seg {
  margin-top: 1rem;
  display: inline-flex;
  padding: 0.25rem;
  gap: 0.25rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  width: fit-content;
}
.seg button {
  padding: 0.375rem 0.9375rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mut);
  transition: background 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.seg [aria-checked="true"] {
  background: #fff;
  color: var(--cobalt);
  box-shadow: var(--shadow-sm);
}

.plan-specs {
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.plan-specs li {
  position: relative;
  padding-left: 1.625rem;
  font-size: 0.8906rem;
  color: rgba(11, 14, 30, 0.78);
}
.plan-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.14em;
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 50%;
  background: rgba(35, 52, 230, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232334e6' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 56% no-repeat;
}
.plan-specs b { font-weight: 600; color: var(--cobalt); }

.btn-plan {
  margin-top: 1.375rem;
  width: 100%;
  height: 3rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.9063rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-plan:hover {
  background: var(--cobalt);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(35, 52, 230, 0.6);
}
.plan-hot .btn-plan { background: var(--grad); box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 8px 20px -8px rgba(35,52,230,0.55); }
.plan-hot .btn-plan:hover { transform: translateY(-2px); }

/* linha acesa vinda dos atalhos de caso */
.plan.is-lit {
  border-color: rgba(35, 52, 230, 0.55);
  box-shadow: 0 0 0 4px rgba(35, 52, 230, 0.14), var(--shadow-md);
  transform: translateY(-6px);
}

.pricing-foot {
  text-align: center;
  margin-top: 2.25rem;
  color: rgba(11, 14, 30, 0.42);
}

/* ── garantias (banda escura) ───────────────────────────────── */

.pledge {
  margin-top: var(--band);
  position: relative;
  background: #0b0e1e;
  color: #fff;
  padding: var(--band) var(--gutter);
  overflow: clip;
}
.pledge::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(40rem 26rem at 18% 15%, rgba(35, 52, 230, 0.35), transparent 60%),
    radial-gradient(36rem 24rem at 85% 80%, rgba(101, 82, 240, 0.28), transparent 60%),
    radial-gradient(24rem 18rem at 70% 10%, rgba(255, 180, 58, 0.12), transparent 60%);
  pointer-events: none;
}
.pledge-inner { position: relative; max-width: 70rem; margin: 0 auto; }
.pledge .section-head h2 { color: #fff; }
.pledge .section-head h2 em {
  background: linear-gradient(135deg, #9fabff, #d7c6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pledge-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.125rem;
}
.pledge-grid article {
  border-radius: var(--r-md);
  padding: 1.625rem 1.5rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pledge-grid article:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}
.pl-num { color: var(--amber); letter-spacing: 0.16em; }
.pledge-grid h3 {
  margin-top: 0.875rem;
  font-size: 1.0938rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.pledge-grid p {
  margin-top: 0.5rem;
  font-size: 0.8594rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}

/* ── passos ─────────────────────────────────────────────────── */

.steps { padding: var(--band) var(--gutter) 0; }

.steps-line {
  max-width: 66rem;
  margin: 3.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  position: relative;
}
/* fio que liga os passos */
.steps-line::before {
  content: "";
  position: absolute;
  top: 1.3125rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(35, 52, 230, 0.5), rgba(122, 92, 255, 0.5));
  mask: linear-gradient(90deg, #000 0 40%, transparent 40% 60%, #000 60%);
  -webkit-mask: linear-gradient(90deg, #000 0 42%, transparent 42% 58%, #000 58%);
}
.steps-line li { text-align: center; padding: 0 0.5rem; }
.step-dot {
  display: inline-grid;
  place-items: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 20px -8px rgba(35, 52, 230, 0.55);
}
.steps-line h3 { margin-top: 1.125rem; font-size: 1.1875rem; font-weight: 600; }
.steps-line p { margin-top: 0.5rem; font-size: 0.9063rem; color: var(--mut); max-width: 30ch; margin-inline: auto; }

.steps-note {
  max-width: 46rem;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.375rem 1.625rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.steps-note img { width: 3.5rem; flex: none; border-radius: 8px; }
.steps-note p { font-size: 0.9063rem; color: var(--mut); }
.steps-note b { color: var(--ink); font-weight: 600; }

/* ── dúvidas ────────────────────────────────────────────────── */

.faq { padding: var(--band) var(--gutter) 0; }

.faq-list { max-width: 46rem; margin: 2.75rem auto 0; display: grid; gap: 0.75rem; }

.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: clip;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-list details:hover { border-color: rgba(35, 52, 230, 0.3); }
.faq-list details[open] { border-color: rgba(35, 52, 230, 0.4); box-shadow: var(--shadow-md); }

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.125rem 1.375rem;
  font-weight: 600;
  font-size: 0.9844rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  flex: none;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: rgba(35, 52, 230, 0.09) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232334e6' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 46% no-repeat;
  transition: transform 0.25s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 1.375rem 1.25rem;
  font-size: 0.9063rem;
  color: var(--mut);
  max-width: 60ch;
}
.faq-list details b { color: var(--ink); font-weight: 600; }

/* ── arremate ───────────────────────────────────────────────── */

.close-out {
  position: relative;
  margin-top: var(--band);
  padding: var(--band) var(--gutter);
  text-align: center;
  overflow: clip;
}
.close-out::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38rem 24rem at 50% 110%, rgba(35, 52, 230, 0.14), transparent 65%),
    radial-gradient(26rem 16rem at 18% 20%, rgba(255, 180, 58, 0.1), transparent 60%);
  pointer-events: none;
}
.close-inner { position: relative; }
.close-out h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
.close-out h2 em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.close-prices {
  margin-top: 1.375rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.875rem;
  flex-wrap: wrap;
  color: var(--mut);
  font-size: 0.9375rem;
  font-weight: 500;
}
.close-prices b { color: var(--ink); font-weight: 650; font-variant-numeric: tabular-nums; }
.close-prices span { color: rgba(11, 14, 30, 0.25); }
.close-out .btn { margin-top: 2rem; }
.close-fine { margin-top: 1.25rem; color: rgba(11, 14, 30, 0.4); }

/* ── rodapé ─────────────────────────────────────────────────── */

.colophon {
  margin-top: var(--band);
  background: #0b0e1e;
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem var(--gutter) 2.5rem;
}
.colophon-inner {
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.mark-foot {
  background: linear-gradient(135deg, #9fabff, #d7c6ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.colophon p { margin-top: 0.875rem; font-size: 0.875rem; max-width: 32ch; line-height: 1.6; }
.colophon nav { display: flex; gap: 1.75rem; flex-wrap: wrap; font-size: 0.875rem; }
.colophon nav a { color: rgba(255, 255, 255, 0.6); transition: color 0.18s var(--ease); }
.colophon nav a:hover { color: #fff; }
.colophon-rule {
  max-width: 70rem;
  margin: 2.75rem auto 0;
  padding-top: 1.375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.38);
}

/* ── barra fixa mobile ──────────────────────────────────────── */

.dock {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 80;
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  border-radius: 999px;
  background: rgba(11, 14, 30, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px -12px rgba(11, 14, 30, 0.5);
  transform: translateY(130%);
  transition: transform 0.3s var(--ease);
}
.dock.is-up { transform: translateY(0); }
.dock-read { display: flex; flex-direction: column; line-height: 1.15; color: #fff; }
.dock-read .mono { color: rgba(255, 255, 255, 0.5); font-size: 0.5625rem; }
.dock-read b { font-size: 1.125rem; font-weight: 650; font-variant-numeric: tabular-nums; }
.dock .btn { flex: 1; height: 2.875rem; }

/* ── gaveta do pedido ───────────────────────────────────────── */

.scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11, 14, 30, 0.45);
  backdrop-filter: blur(3px);
  animation: fade 0.25s var(--ease);
}
@keyframes fade { from { opacity: 0; } }

.order {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 110;
  width: min(25.5rem, calc(100vw - 1.5rem));
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: translateX(calc(100% + 1.5rem));
  transition: transform 0.32s var(--ease);
  overflow: clip;
}
.order.is-open { transform: translateX(0); }

.order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.375rem;
  border-bottom: 1px solid var(--line-soft);
}
.order-head .mono { color: var(--mut); }
.order-head button {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mut);
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.order-head button:hover { background: rgba(11, 14, 30, 0.06); color: var(--ink); }

.order-body { flex: 1; overflow-y: auto; padding: 0 1.375rem; scrollbar-width: thin; }

.order-empty {
  padding: 4rem 0;
  text-align: center;
  color: var(--mut);
  font-size: 0.9375rem;
}

.item { padding: 1.25rem 0; border-bottom: 1px solid var(--line-soft); }
.item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.item-name { font-weight: 600; font-size: 1rem; letter-spacing: -0.015em; }
.item-total { font-weight: 650; font-variant-numeric: tabular-nums; }
.item-sub { font-size: 0.78rem; color: var(--mut); margin-top: 0.1875rem; }
.item-ctrl { display: flex; align-items: center; gap: 1rem; margin-top: 0.875rem; }

.stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  overflow: clip;
}
.stepper button {
  width: 2.125rem;
  height: 2rem;
  font-weight: 600;
  color: var(--cobalt);
  transition: background 0.15s var(--ease);
}
.stepper button:hover { background: rgba(35, 52, 230, 0.07); }
.stepper span {
  min-width: 2rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.drop {
  font-size: 0.78rem;
  color: var(--mut);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.15s var(--ease);
}
.drop:hover { color: #c0392b; }

.addon {
  display: flex;
  gap: 0.5625rem;
  align-items: flex-start;
  margin-top: 0.875rem;
  padding: 0.6875rem 0.875rem;
  border-radius: var(--r-sm);
  background: rgba(255, 180, 58, 0.12);
  border: 1px solid rgba(255, 180, 58, 0.3);
  font-size: 0.8125rem;
  line-height: 1.45;
  cursor: pointer;
}
.addon input { accent-color: var(--cobalt); margin-top: 0.1875rem; }
.addon b { font-weight: 650; }

.pair {
  margin: 0.75rem 1.375rem 0.5rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(35, 52, 230, 0.07), rgba(122, 92, 255, 0.07));
  border: 1px solid rgba(35, 52, 230, 0.22);
  padding: 1rem 1.125rem;
}
.pair-head { color: var(--cobalt); }
.pair p { margin-top: 0.5rem; font-size: 0.8281rem; color: rgba(11, 14, 30, 0.72); line-height: 1.5; }
.pair button {
  margin-top: 0.75rem;
  width: 100%;
  height: 2.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(35, 52, 230, 0.35);
  font-weight: 600;
  font-size: 0.8594rem;
  color: var(--cobalt);
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.pair button:hover { background: var(--cobalt); color: #fff; }
.pair button b { font-variant-numeric: tabular-nums; }

.order-foot { padding: 1.125rem 1.375rem 1.375rem; border-top: 1px solid var(--line-soft); }
.order-sum {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 650;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.order-sum .num { font-size: 1.75rem; }
.order-fine { margin-top: 0.4375rem; color: rgba(11, 14, 30, 0.4); }
.order-foot .btn { margin-top: 1rem; }
.btn.is-off {
  background: rgba(11, 14, 30, 0.07);
  color: var(--mut);
  box-shadow: none;
  pointer-events: none;
}

/* ── adaptação ──────────────────────────────────────────────── */

@media (max-width: 64rem) {
  .hero-inner { grid-template-columns: 1fr; gap: 3.25rem; }
  .hero-card { order: -1; padding-top: 0.5rem; }
  .idcard { width: min(22rem, 88%); }
  .plans { grid-template-columns: 1fr; max-width: 28rem; }
  .plan-desc { min-height: 0; }
  .pledge-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-line { grid-template-columns: 1fr; gap: 2.25rem; max-width: 26rem; }
  .steps-line::before { display: none; }
  .dock { display: flex; }
  main { padding-bottom: 5rem; }
}

@media (max-width: 48rem) {
  .masthead nav { display: none; }
  .cart-open .label { display: none; }
  .cart-open { padding-left: 0.875rem; }
  .pledge-grid { grid-template-columns: 1fr; }
  .cases { justify-content: center; }
  .cases-label { width: 100%; text-align: center; margin: 0; }
  .hero-copy { text-align: center; }
  .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-facts { justify-content: center; text-align: left; gap: 1.5rem; }
  .steps-note { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .idcard { animation: none; transform: rotate(-4deg); }
  .idcard-sheen { animation: none; }
}
