/* ============================================================
   FORGE 360 — Landing CSS (Design System Minimal Premium)
   Compartilhado por todas as 5 páginas: index, privacidade,
   termos, excluir-conta, suporte.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --forge-primary: #1a1a1a;
  --forge-primary-hover: #000000;
  /* Canvas */
  --canvas: #ffffff;
  --canvas-soft: #f6f6f6;
  --canvas-muted: #f8f8f8;
  /* Ink */
  --ink: #111111;
  --ink-muted: #7b7b7b;
  --ink-subtle: #9b9b9b;
  /* Hairlines */
  --hairline: rgba(0, 0, 0, 0.05);
  --hairline-strong: rgba(0, 0, 0, 0.10);
  --hairline-on-dark: rgba(255, 255, 255, 0.10);
  /* Semantic */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  /* Radius */
  --r-card: 24px;
  --r-card-lg: 28px;
  --r-pill: 999px;
  --r-btn: 16px;
  --r-input: 14px;
  --r-sm: 8px;
  /* Shadow */
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-soft-lg: 0 15px 40px rgba(0, 0, 0, 0.08);
  --shadow-modal: 0 20px 60px rgba(0, 0, 0, 0.10);
  /* Type */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ───── Reset ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--ink); }
hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

/* ───── Layout containers ───── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 112px 0; }
.section-tight { padding: 80px 0; }
.section-soft { background: var(--canvas-soft); }
.section-dark { background: var(--forge-primary); color: rgba(255, 255, 255, 0.92); }

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .section-tight { padding: 56px 0; }
}

/* ───── Header full-width sóbrio (Apple/Stripe-style) ───── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: visible; /* permite o logo transbordar */
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: visible;
}
.header-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 2;
}
.header-brand img {
  height: 168px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* logo preto -> branco */
  transition: filter 0.4s ease;
}
.header-brand:hover { opacity: 0.75; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}
.header-cta {
  padding: 10px 20px;
  background: #fff;
  color: var(--ink) !important;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.header-cta:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
  color: var(--ink);
  text-decoration: none;
}

/* Header sobre section dark — mantém igual (já é escuro), só clareia um pouco a borda */
.header.on-dark {
  background: rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

@media (max-width: 880px) {
  .header { height: 64px; }
  .header-inner { gap: 12px; }
  .header-brand img { height: 132px; }
  .header-nav { display: none; }
  .header-cta { padding: 8px 16px; font-size: 12px; }
}
@media (max-width: 540px) {
  .header-brand img { height: 96px; }
}

/* ───── Hero ───── */
.hero {
  padding: 96px 0 112px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero { padding: 56px 0 72px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-bottom: 28px;
  padding: 7px 14px;
  background: var(--canvas-muted);
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-block;
}
.hero-title {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -1.6px;
  color: var(--ink);
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--canvas-muted);
  border-radius: 2px;
  z-index: -1;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 540px;
}
@media (max-width: 920px) {
  .hero-sub { font-size: 17px; }
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
  aspect-ratio: 5 / 4;
  background: var(--canvas-muted);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-wrap::after {
  /* sutil vinheta inferior pra texto ficar lisível se sobreposto em mobile */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.10) 100%);
  pointer-events: none;
}

/* Hero metrics chips abaixo do CTA */
.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-subtle);
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-item .ico {
  width: 16px;
  height: 16px;
  color: var(--ink-muted);
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--forge-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--forge-primary-hover); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-secondary:hover {
  background: var(--canvas-muted);
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-on-dark {
  background: #fff;
  color: var(--forge-primary);
}
.btn-on-dark:hover { background: #fff; color: var(--forge-primary); }
.btn .ico { width: 16px; height: 16px; }

/* Store badges */
.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--forge-primary);
  color: #fff;
  border-radius: var(--r-btn);
  transition: transform 0.15s ease;
  border: 1px solid var(--forge-primary);
}
.store-badge:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
.store-badge .ico { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge .lbl-small {
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  line-height: 1.1;
}
.store-badge .lbl-big {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}
.store-badge.disabled {
  background: var(--canvas-muted);
  color: var(--ink-muted);
  border-color: var(--hairline);
  cursor: default;
}
.store-badge.disabled:hover { transform: none; color: var(--ink-muted); }
.store-badge.on-dark {
  background: #fff;
  color: var(--forge-primary);
  border-color: #fff;
}
.store-badge.on-dark:hover { color: var(--forge-primary); }
.store-badge.on-dark.disabled {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ───── Section heading ───── */
.section-heading {
  text-align: center;
  margin-bottom: 64px;
}
.section-heading.left {
  text-align: left;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1.12;
  max-width: 760px;
  margin: 0 auto 18px;
}
.section-heading.left .section-title { margin-left: 0; }
.section-sub {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}
.section-heading.left .section-sub { margin-left: 0; }
.section-dark .section-eyebrow { color: rgba(255, 255, 255, 0.6); }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.7); }

/* ───── Features grid ───── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--canvas-muted);
  border: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--ink);
}
.feature-icon .ico { width: 22px; height: 22px; }
.feature h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: var(--ink);
}
.feature p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ───── How it works (steps) ───── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
}
.step {
  text-align: center;
  position: relative;
}
.step::after {
  /* linha conectora entre passos */
  content: '';
  position: absolute;
  top: 24px;
  right: -18px;
  width: 36px;
  height: 1px;
  background: var(--hairline-strong);
}
.step:last-child::after { display: none; }
@media (max-width: 720px) {
  .step::after { display: none; }
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--forge-primary);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.step h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.step p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto;
}

/* ───── Trust strip ───── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 720px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.trust-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--hairline);
}
.trust-item:last-child { border-right: none; }
@media (max-width: 720px) {
  .trust-item { border-right: none; border-bottom: 1px solid var(--hairline); }
}
.trust-item .val {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-item .lbl {
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ───── FAQ ───── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
details.faq-item {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease;
}
details.faq-item:hover { box-shadow: var(--shadow-soft); }
details.faq-item[open] { box-shadow: var(--shadow-soft); }
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  position: relative;
  padding-right: 64px;
  line-height: 1.4;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '';
  position: absolute;
  right: 28px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--ink-muted);
  border-bottom: 2px solid var(--ink-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
details.faq-item > div {
  padding: 0 28px 24px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.65;
}
details.faq-item > div a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ───── CTA dark final ───── */
.cta-final {
  text-align: center;
  padding: 120px 0;
}
.cta-final .section-eyebrow { color: rgba(255, 255, 255, 0.6); }
.cta-final .section-title { color: #fff; max-width: 720px; }
.cta-final .section-sub { color: rgba(255, 255, 255, 0.7); margin-bottom: 36px; }
@media (max-width: 720px) {
  .cta-final { padding: 80px 0; }
}

/* ───── Footer ───── */
.footer {
  background: var(--forge-primary);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 40px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: rgba(255, 255, 255, 0.65); }
.footer ul li a:hover { color: #fff; }
.footer-brand {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-tagline {
  max-width: 320px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--hairline-on-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.6); }
.footer-bottom a:hover { color: #fff; }

/* ───── Content pages (privacidade, termos, etc) ───── */
.content-header {
  padding: 132px 0 56px; /* topo maior pra acomodar o header fixed */
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 720px) {
  .content-header { padding: 108px 0 40px; }
}
.content-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 24px;
}
.content-back:hover { color: var(--ink); text-decoration: none; }
.content-back .ico { width: 14px; height: 14px; }
.content-meta {
  font-size: 13px;
  color: var(--ink-subtle);
  margin-top: 16px;
}
.content-body {
  padding: 64px 0 96px;
}
.content-body h1 {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 0;
}
.content-body h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 56px 0 16px;
}
.content-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}
.content-body p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.content-body ul, .content-body ol {
  margin: 0 0 18px 0;
  padding-left: 24px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.7;
}
.content-body li { margin-bottom: 8px; }
.content-body strong { color: var(--ink); font-weight: 600; }
.content-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--hairline-strong);
}
.content-body a:hover { text-decoration-color: var(--ink); }
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 32px;
  font-size: 15px;
}
.content-body table th,
.content-body table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
.content-body table th {
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--canvas-soft);
}
.content-body table td { color: var(--ink-muted); }
.content-body table td strong { color: var(--ink); }
.content-body blockquote {
  border-left: 3px solid var(--ink);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--ink-muted);
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
}
.content-body code {
  background: var(--canvas-muted);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  color: var(--ink);
}
.content-body hr {
  margin: 48px 0;
  border-top: 1px solid var(--hairline);
}

/* Card de info dentro de páginas legais */
.info-card {
  background: var(--canvas-muted);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 28px;
  margin: 32px 0;
}
.info-card h4 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.info-card p { font-size: 15px; margin-bottom: 0; }

/* ───── Suporte / Contato ───── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.contact-card .feature-icon { margin-left: auto; margin-right: auto; }
.contact-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
}

/* ───── Animação fade-in ao rolar (CSS only, sem JS) ───── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards;
  }
  .fade-up.d1 { animation-delay: 0.10s; }
  .fade-up.d2 { animation-delay: 0.20s; }
  .fade-up.d3 { animation-delay: 0.30s; }
  .fade-up.d4 { animation-delay: 0.40s; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ───── Selection / Focus ───── */
::selection { background: var(--ink); color: #fff; }
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═════════════════════════════════════════════════════════════
   LOGO OFICIAL (img + text-only versions)
   ═════════════════════════════════════════════════════════════ */
.logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.logo-img-lg { height: 36px; }
.logo-img-sm { height: 22px; }

/* Brand block reformulado: logo oficial sozinho, maior e legível */
.brand-official {
  display: inline-flex;
  align-items: center;
}
.brand-official img {
  height: 96px;
  width: auto;
  display: block;
}
.brand-360 { display: none; } /* sufixo "360" removido — o logo já fala por si */

/* Header com mais respiro pra acomodar o logo grande */
.nav { padding: 16px 0; }
.brand-official.on-dark img { height: 80px; }

@media (max-width: 720px) {
  .brand-official img { height: 64px; }
  .brand-official.on-dark img { height: 56px; }
}

/* ═════════════════════════════════════════════════════════════
   HERO MOCKUPS — frames de iPhone com mini-telas do app
   ═════════════════════════════════════════════════════════════ */
.mockup-stack {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 920px) {
  .mockup-stack { height: 480px; margin-top: 24px; }
}
.iphone {
  width: 240px;
  height: 500px;
  background: #0a0a0a;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.08);
  position: absolute;
  transition: transform 0.4s ease;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  background: var(--canvas);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.iphone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 20;
}
.iphone-statusbar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.iphone-statusbar svg { width: 11px; height: 11px; }
.iphone-content {
  flex: 1;
  padding: 0 16px;
  overflow: hidden;
}
.iphone-tabbar {
  height: 54px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px 10px;
  flex-shrink: 0;
}
.iphone-tabbar .tab {
  color: var(--ink-subtle);
  font-size: 9px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.iphone-tabbar .tab.active { color: var(--forge-primary); }
.iphone-tabbar .tab svg { width: 18px; height: 18px; }

/* Mini-componentes dentro do mockup */
.m-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0 14px;
}
.m-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.m-icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--canvas-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-icon-btn svg { width: 14px; height: 14px; color: var(--ink); }

.m-eyebrow {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin: 12px 0 8px;
}
.m-banner {
  background: var(--canvas-muted);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.m-banner-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--forge-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-banner-icon svg { width: 14px; height: 14px; color: #fff; }
.m-banner-text { font-size: 10px; line-height: 1.3; flex: 1; color: var(--ink); }
.m-banner-text strong { font-weight: 700; }
.m-banner-text small { display: block; color: var(--ink-muted); margin-top: 1px; font-size: 9px; }

.m-kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.m-kpi {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 10px 12px;
}
.m-kpi-lbl {
  font-size: 8px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.m-kpi-val {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1;
}
.m-kpi-delta {
  font-size: 9px;
  color: var(--success);
  margin-top: 3px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.m-kpi-delta svg { width: 9px; height: 9px; }

.m-card-lead {
  margin-top: 10px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.m-card-lead-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--canvas-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-card-lead-icon svg { width: 14px; height: 14px; color: var(--ink); }
.m-card-lead h5 { font-size: 11px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.m-card-lead p { font-size: 9px; color: var(--ink-muted); margin: 2px 0 0; line-height: 1.2; }

/* Mockup tela DIETA */
.m-hero-block {
  background: var(--canvas-muted);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  margin-bottom: 8px;
}
.m-hero-block .lbl {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.m-hero-block .val {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1;
}
.m-hero-block .val small { font-size: 10px; color: var(--ink-muted); font-weight: 500; margin-left: 2px; }
.m-hero-block .sub { font-size: 9px; color: var(--ink-muted); margin-top: 3px; }

.m-meal {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 8px 12px;
  margin-bottom: 5px;
}
.m-meal-head {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.m-meal-head .time { color: var(--ink); }
.m-meal-item {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  padding: 2px 0;
  color: var(--ink);
}
.m-meal-item .qty { color: var(--ink-muted); }

/* Mockup tela TREINO */
.m-day-pills { display: flex; gap: 4px; margin-bottom: 10px; }
.m-day-pill {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  background: var(--canvas-muted);
  color: var(--ink-muted);
  border: 1px solid var(--hairline);
}
.m-day-pill.active {
  background: var(--forge-primary);
  color: #fff;
  border-color: var(--forge-primary);
}

.m-exercise {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 8px 12px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.m-exercise-check {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-exercise-check.checked {
  background: var(--forge-primary);
  border-color: var(--forge-primary);
}
.m-exercise-check.checked svg { width: 10px; height: 10px; color: #fff; }
.m-exercise h5 { font-size: 10px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.m-exercise.checked h5 { text-decoration: line-through; color: var(--ink-muted); }
.m-exercise p { font-size: 8px; color: var(--ink-muted); margin: 1px 0 0; }

.m-btn-primary {
  background: var(--forge-primary);
  color: #fff;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  margin-top: 10px;
}

/* Posicionamento das 3 telas (fan stack) */
.iphone-1 {
  transform: translate(-130px, -10px) rotate(-7deg);
  z-index: 1;
}
.iphone-2 {
  z-index: 3;
  transform: translateY(0);
}
.iphone-3 {
  transform: translate(130px, -10px) rotate(7deg);
  z-index: 1;
}
.mockup-stack:hover .iphone-1 { transform: translate(-150px, -20px) rotate(-9deg); }
.mockup-stack:hover .iphone-3 { transform: translate(150px, -20px) rotate(9deg); }

@media (max-width: 720px) {
  .iphone { width: 200px; height: 420px; padding: 8px; border-radius: 32px; }
  .iphone-screen { border-radius: 24px; }
  .iphone-1 { transform: translate(-90px, -8px) rotate(-7deg); }
  .iphone-3 { transform: translate(90px, -8px) rotate(7deg); }
  .mockup-stack:hover .iphone-1 { transform: translate(-100px, -16px) rotate(-9deg); }
  .mockup-stack:hover .iphone-3 { transform: translate(100px, -16px) rotate(9deg); }
}

/* ═════════════════════════════════════════════════════════════
   MANIFESTO SECTION (com fundo da atleta)
   ═════════════════════════════════════════════════════════════ */
.manifesto {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  color: #fff;
  background: var(--forge-primary);
  isolation: isolate;
}
.manifesto-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .manifesto { padding: 96px 0; }
  .manifesto-layout { grid-template-columns: 1fr; gap: 40px; text-align: left; }
}

/* Símbolo lado a lado com o texto, com animação suave (drift in place) */
.manifesto-symbol-side {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.manifesto-symbol-side img {
  width: 100%;
  max-width: 560px;
  height: auto;
  /* asset já e branco — mantém */
  opacity: 0.95;
  animation: manifestoSymbolDrift 14s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(255, 255, 255, 0.10));
}
@keyframes manifestoSymbolDrift {
  0%, 100% { transform: rotate(0deg)  scale(1); }
  33%      { transform: rotate(6deg)  scale(1.03); }
  66%      { transform: rotate(-4deg) scale(1.05); }
}
@media (max-width: 720px) {
  .manifesto-symbol-side img { max-width: 320px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .manifesto-symbol-side img { animation: none; }
}
.manifesto-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.manifesto-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  margin-bottom: 24px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}
.manifesto h2 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}
.manifesto h2 em {
  font-style: normal;
  font-weight: 300;
  color: #fff;
}
.manifesto p {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  max-width: 620px;
}
.manifesto .sig {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
@media (max-width: 720px) {
  .manifesto { padding: 100px 0; }
  .manifesto p { font-size: 16px; }
}

/* ═════════════════════════════════════════════════════════════
   TESTIMONIALS (marquee infinito CSS only)
   ═════════════════════════════════════════════════════════════ */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial {
  flex-shrink: 0;
  width: 380px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forge-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.testimonial-role {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 1px;
}
.testimonial .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: var(--ink);
}
.testimonial .stars svg { width: 14px; height: 14px; }
@media (max-width: 720px) {
  .testimonial { width: 300px; padding: 22px; }
  .testimonial-quote { font-size: 14px; }
}

/* ═════════════════════════════════════════════════════════════
   REDESIGN PRO — padrão Linear/Stripe/Vercel adaptado ao DS
   Aurora gradient, bento grid, timeline vertical, números grandes
   ═════════════════════════════════════════════════════════════ */

/* —— Aurora gradient (sutil, premium) —— */
.aurora { position: relative; overflow: hidden; isolation: isolate; }
.aurora::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(120, 120, 200, 0.12), transparent 65%),
    radial-gradient(ellipse 80% 60% at 85% 100%, rgba(220, 170, 170, 0.10), transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 255, 255, 0.6), transparent 50%);
  pointer-events: none;
}
.aurora.aurora-dark::before {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(180, 180, 255, 0.10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(255, 200, 200, 0.08), transparent 60%);
}

/* —— Headline XL (estilo Linear/Stripe) —— */
.headline-xl {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 28px;
  font-feature-settings: 'ss01', 'cv11';
}
.headline-xl em {
  font-style: normal;
  font-weight: 300;
  color: var(--ink);
}
.headline-xl em::after { display: none; }

/* —— Pill eyebrow refinado —— */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pill:hover { border-color: var(--hairline-strong); transform: translateY(-1px); }
.pill-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forge-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}
.pill strong { color: var(--ink); font-weight: 600; }

/* —— Hero stats inline (sob o CTA) —— */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--ink);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* —— Botão refinado (com hover shine) —— */
.btn-primary-pro {
  position: relative;
  background: var(--forge-primary);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 8px 24px rgba(0,0,0,0.18);
}
.btn-primary-pro:hover {
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 12px 32px rgba(0,0,0,0.24);
}
.btn-primary-pro::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.18), transparent 70%);
  transition: left 0.6s ease;
}
.btn-primary-pro:hover::after { left: 130%; }

/* botão "ghost" com seta */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: gap 0.2s ease;
}
.btn-link:hover { gap: 12px; text-decoration: none; color: var(--ink); }
.btn-link .arr { width: 14px; height: 14px; transition: transform 0.2s ease; }
.btn-link:hover .arr { transform: translateX(3px); }

/* —— Mockup CAROUSEL (esteira de iPhones rolando) —— */
.mockup-carousel {
  position: relative;
  height: 660px;
  overflow: hidden;
  margin-right: calc(50% - 50vw); /* estoura ate a borda direita do viewport */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 6%, rgba(0,0,0,0.6) 14%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 6%, rgba(0,0,0,0.6) 14%, #000 22%, #000 100%);
}
.mockup-track {
  display: flex;
  gap: 36px;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: mockupSlide 45s linear infinite;
  padding-left: 8%;
}
.mockup-carousel:hover .mockup-track { animation-play-state: paused; }
@keyframes mockupSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mockup-carousel .iphone {
  flex-shrink: 0;
  width: 260px;
  height: 540px;
  background: #0a0a0a;
  border-radius: 42px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 30px 60px -10px rgba(0,0,0,0.25),
    0 18px 36px -18px rgba(0,0,0,0.30),
    0 0 0 1px rgba(0,0,0,0.06);
  transform: translateY(0) rotate(0deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-carousel .iphone:nth-child(odd) { transform: translateY(-12px) rotate(-1deg); }
.mockup-carousel .iphone:nth-child(even) { transform: translateY(12px) rotate(1deg); }

@media (max-width: 920px) {
  .mockup-carousel {
    height: 480px;
    margin-right: calc(50% - 50vw);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }
  .mockup-carousel .iphone { width: 220px; height: 460px; border-radius: 36px; }
}
@media (max-width: 720px) {
  .mockup-carousel { height: 440px; }
  .mockup-carousel .iphone { width: 200px; height: 420px; border-radius: 32px; }
  .mockup-track { gap: 24px; animation-duration: 35s; }
}

/* Respeita prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .mockup-track { animation: none; transform: translateX(-10%); }
}

/* —— Pillars list (4 pilares em linhas verticais com imagem ao lado) —— */
.pillars-section {
  padding: 112px 0 40px;
}
@media (max-width: 720px) { .pillars-section { padding: 72px 0 32px; } }

/* Layout orbital — mulher no centro, 4 cards nos cantos */
.pillars-orbit {
  display: grid;
  grid-template-columns: 1fr 1.55fr 1fr;
  grid-template-rows: auto auto;
  gap: 36px 56px;
  align-items: center;
  margin-top: 64px;
  position: relative;
}

/* Linhas circuit-board conectando a foto central aos 4 cards */
.pillars-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.pillars-lines .orbit-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.22);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.pillars-lines .orbit-node {
  fill: var(--ink);
  opacity: 0.55;
}
.pillars-lines .orbit-hub {
  fill: var(--ink);
  opacity: 0.85;
}

@media (max-width: 980px) {
  .pillars-lines { display: none; }
}
.card-tl { grid-column: 1; grid-row: 1; text-align: right; }
.card-tr { grid-column: 3; grid-row: 1; }
.card-bl { grid-column: 1; grid-row: 2; text-align: right; }
.card-br { grid-column: 3; grid-row: 2; }
.pillars-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
}

@media (max-width: 980px) {
  .pillars-orbit {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 16px;
  }
  .pillars-visual {
    grid-column: 1;
    grid-row: 1;
    order: -1;
  }
  .card-tl, .card-tr, .card-bl, .card-br {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
  }
}

.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease;
  position: relative;
  z-index: 1;
}
.pillar-card,
.pillar-card .pillar-num,
.pillar-card .pillar-name,
.pillar-card .pillar-by,
.pillar-card .pillar-desc,
.pillar-card .pillar-icon {
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.pillar-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}
.pillar-card:hover .pillar-num  { color: rgba(255, 255, 255, 0.55); }
.pillar-card:hover .pillar-name { color: #fff; }
.pillar-card:hover .pillar-by   { color: rgba(255, 255, 255, 0.65); }
.pillar-card:hover .pillar-desc { color: rgba(255, 255, 255, 0.78); }
.pillar-card:hover .pillar-icon {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: rotate(8deg);
}
.card-tl, .card-bl {
  /* cards à esquerda: ícone acompanha alinhamento à direita do card */
  align-items: flex-end;
}
.card-tl .pillar-info,
.card-bl .pillar-info { text-align: right; }
.card-tr .pillar-info,
.card-br .pillar-info { text-align: left; }
@media (max-width: 980px) {
  .card-tl, .card-bl { align-items: stretch; }
  .card-tl .pillar-info, .card-bl .pillar-info { text-align: left; }
}

.pillar-card .pillar-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pillar-card .pillar-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-subtle);
}
.pillar-card .pillar-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--ink);
  line-height: 1;
  margin-top: 6px;
}
.pillar-card .pillar-by {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  font-weight: 700;
}
.pillar-card .pillar-desc {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-top: 10px;
}
.pillar-card .pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--canvas);
  margin-top: 8px;
}
.pillar-card .pillar-icon svg { width: 22px; height: 22px; }

/* Foto central — grande, fade-out white embaixo */
.pillars-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 820px;
  z-index: 1;
}
.pillars-visual img {
  width: 100%;
  max-width: 780px;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.94;
  /* fade-out branco bem na parte de baixo */
  mask-image: linear-gradient(180deg, #000 82%, rgba(0,0,0,0.5) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 82%, rgba(0,0,0,0.5) 92%, transparent 100%);
  transition: opacity 0.4s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillars-visual:hover img {
  opacity: 0.96;
  transform: translateY(-4px);
}
@media (max-width: 980px) {
  .pillars-visual { min-height: 0; }
  .pillars-visual img { max-width: 460px; margin: 0 auto; height: auto; }
}

.pillars-list { margin-top: 0; }
.pillar-row {
  display: grid;
  grid-template-columns: 56px 1fr 48px;
  gap: 24px;
  align-items: center;
  padding: 32px 8px;
  border-top: 1px solid var(--hairline);
  position: relative;
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.pillar-row:last-child { border-bottom: 1px solid var(--hairline); }
.pillar-row:hover {
  background: linear-gradient(90deg, var(--canvas-soft) 0%, transparent 100%);
  padding-left: 20px;
}
.pillar-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pillar-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-subtle);
}
.pillar-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--ink);
  line-height: 1;
}
.pillar-by {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  font-weight: 700;
}
.pillar-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-top: 4px;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  justify-self: end;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-row:hover .pillar-icon {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: rotate(8deg);
}

@media (max-width: 880px) {
  .pillar-row {
    grid-template-columns: 40px 1fr 44px;
    gap: 16px;
    padding: 24px 8px;
  }
  .pillar-name { font-size: 22px; letter-spacing: -0.6px; }
  .pillar-desc { font-size: 13px; }
  .pillar-icon { width: 40px; height: 40px; }
  .pillar-icon svg { width: 18px; height: 18px; }
  .pillar-row:hover { padding-left: 14px; }
}

/* —— Features grid LIMPO (3x2 uniforme, estilo Linear/Vercel) —— */
.feat-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  margin-top: 56px;
}
.feat-grid-clean .feat-cell {
  background: var(--canvas);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s ease;
  position: relative;
  min-height: 240px;
}
.feat-grid-clean .feat-cell:hover { background: var(--canvas-soft); }
.feat-grid-clean .feat-cell .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--canvas-muted);
  border: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}
.feat-grid-clean .feat-cell:hover .feature-icon { transform: rotate(-6deg) scale(1.05); }
.feat-grid-clean .feat-cell .feature-icon .ico { width: 20px; height: 20px; }
.feat-grid-clean .feat-cell h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin: 0;
}
.feat-grid-clean .feat-cell p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}
@media (max-width: 880px) {
  .feat-grid-clean { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feat-grid-clean { grid-template-columns: 1fr; }
  .feat-grid-clean .feat-cell { padding: 32px 24px; min-height: 0; }
}

/* —— Steps horizontal (Como funciona — 3 cards lado a lado) —— */
.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
  align-items: start;
}
.steps-horizontal::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc((100% / 3) * 0.5 + 40px);
  right: calc((100% / 3) * 0.5 + 40px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--hairline-strong) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step-h {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.step-h-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--canvas);
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.step-h:hover .step-h-num {
  background: var(--forge-primary);
  color: #fff;
  border-color: var(--forge-primary);
  transform: scale(1.08);
}
.step-h h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.step-h p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}
.step-h .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 5px 12px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-weight: 700;
  align-self: center;
  background: var(--canvas);
}
@media (max-width: 880px) {
  .steps-horizontal { grid-template-columns: 1fr; gap: 32px; }
  .steps-horizontal::before { display: none; }
  .step-h { padding: 0; }
}

/* —— Bento grid (LEGADO, mantido pra retrocompat) —— */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  grid-auto-rows: minmax(220px, auto);
}
@media (max-width: 820px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
}
.bento-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft-lg);
  border-color: var(--hairline-strong);
}
.bento-card .feature-icon { margin-bottom: 0; }
.bento-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.bento-card p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.bento-card .visual {
  position: absolute;
  right: -40px;
  bottom: -40px;
  opacity: 0.05;
  font-size: 220px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -8px;
  color: var(--ink);
  pointer-events: none;
}
/* Tamanhos da bento */
.bento-hero {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--forge-primary);
  color: rgba(255,255,255,0.92);
}
.bento-hero h3 { color: #fff; font-size: 32px; letter-spacing: -1px; }
.bento-hero p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 380px; }
.bento-hero .feature-icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.bento-hero .feature-icon .ico { color: #fff; }
.bento-hero:hover { transform: translateY(-3px); border-color: var(--forge-primary); }
.bento-hero .visual { color: #fff; opacity: 0.04; }
.bento-md { grid-column: span 2; }
.bento-sm { grid-column: span 2; }
.bento-wide { grid-column: span 4; }
@media (max-width: 820px) {
  .bento-hero, .bento-md, .bento-sm, .bento-wide {
    grid-column: span 1;
    grid-row: auto;
  }
}

/* —— Timeline vertical (Como funciona) —— */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hairline-strong) 10%, var(--hairline-strong) 90%, transparent);
}
.timeline-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 32px 0;
  position: relative;
}
.timeline-step + .timeline-step { border-top: 1px solid var(--hairline); }
.timeline-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--canvas);
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.timeline-step:hover .timeline-num {
  background: var(--forge-primary);
  color: #fff;
  border-color: var(--forge-primary);
  transition: all 0.3s ease;
}
.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 520px;
}
.timeline-content .tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 4px 10px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-weight: 600;
}

/* —— CTA-dark Pro (sem circuit, com aurora) —— */
.cta-dark-pro {
  background: var(--forge-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-dark-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(180,180,255,0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(255,200,180,0.08), transparent 60%);
}
.cta-dark-pro::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
}
.cta-dark-pro .container { position: relative; z-index: 1; }
@media (max-width: 720px) {
  .cta-dark-pro { padding: 96px 0; }
}
.cta-dark-pro h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 24px;
}
.cta-dark-pro h2 em {
  font-style: normal;
  font-weight: 300;
  color: #fff;
}
.cta-dark-pro p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-dark-pro .pill {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.cta-dark-pro .pill:hover { border-color: rgba(255,255,255,0.25); }
.cta-dark-pro .pill-dot { background: #fff; color: var(--ink); }
.cta-dark-pro .pill strong { color: #fff; }

.store-badge-pro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #fff;
  color: var(--forge-primary);
  border-radius: var(--r-btn);
  border: 1px solid #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.store-badge-pro:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--forge-primary);
  box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}
.store-badge-pro svg { width: 24px; height: 24px; }
.store-badge-pro span { display: flex; flex-direction: column; text-align: left; line-height: 1.1; }
.store-badge-pro small {
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.store-badge-pro strong { font-size: 16px; font-weight: 700; }
.store-badges-pro { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

/* —— Section Numbers (4 colunas com números 01-04) —— */
.numbers-section { padding: 48px 0; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 720px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
.number-item .nm {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-subtle);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}
.number-item .nm::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--ink-subtle);
  vertical-align: middle;
  margin-left: 8px;
}
.number-item h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 4px;
}
.number-item p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* —— Hero refinado (carousel à direita, sem container limit) —— */
.hero-pro {
  padding: 112px 0 96px; /* acomoda header fixed de 72px + 40px respiro */
  position: relative;
  overflow: hidden;
  background: var(--canvas-soft); /* fundo suave sob o aurora — elimina sensacao de margem branca */
}

/* Scroll indicator — chevron animado no fim do hero */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  z-index: 3;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.scroll-indicator:hover {
  background: #fff;
  border-color: var(--ink);
  text-decoration: none;
  color: var(--ink);
}
.scroll-indicator svg { width: 18px; height: 18px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator { animation: none; }
}
@media (max-width: 720px) {
  .scroll-indicator { bottom: 20px; width: 38px; height: 38px; }
  .scroll-indicator svg { width: 16px; height: 16px; }
}

/* Pattern xadrez em TODA a hero (atrás de tudo), com fade vertical suave nas bordas */
.hero-pro > .container { position: relative; z-index: 2; }
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: 0 0;
  z-index: 0;
  pointer-events: none;
  /* fade suave em cima/embaixo + fade horizontal pra não tocar nos mockups */
  mask-image: radial-gradient(ellipse 55% 75% at 28% 50%, #000 28%, rgba(0,0,0,0.55) 55%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 55% 75% at 28% 50%, #000 28%, rgba(0,0,0,0.55) 55%, transparent 78%);
}
@media (max-width: 920px) {
  .hero-bg-grid {
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 8%, #000 22%, #000 78%, rgba(0,0,0,0.4) 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 8%, #000 22%, #000 78%, rgba(0,0,0,0.4) 92%, transparent 100%);
  }
}

/* Glow branco atrás do texto pra ele se destacar do pattern */
.hero-text { position: relative; }
.hero-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  right: 45%;
  bottom: 20%;
  background: radial-gradient(ellipse 50% 45% at 25% 50%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18) 55%, transparent 85%);
  z-index: 1;
  pointer-events: none;
  filter: blur(14px);
}
.hero-text > * { position: relative; z-index: 2; }
@media (max-width: 920px) {
  .hero-text::before { right: 0; }
}

/* Glow branco atrás do texto pra ele se destacar do pattern (sem esconder o xadrez) */
.hero-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  right: 45%;
  bottom: 20%;
  background: radial-gradient(ellipse 50% 45% at 25% 50%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18) 55%, transparent 85%);
  z-index: 1;
  pointer-events: none;
  filter: blur(14px);
}
@media (max-width: 920px) {
  .hero-text::before { right: 0; }
}

/* Store badges no hero (versão clara, sob o CTA) */
.hero-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.store-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--forge-primary);
  color: #fff;
  border-radius: var(--r-btn);
  border: 1px solid var(--forge-primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.store-badge-hero:hover {
  transform: translateY(-2px);
  background: #000;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.store-badge-hero svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.store-badge-hero span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
  gap: 2px;
}
.store-badge-hero small {
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.store-badge-hero strong {
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 540px) {
  .hero-stores { gap: 8px; }
  .store-badge-hero { padding: 10px 16px; gap: 10px; }
  .store-badge-hero strong { font-size: 14px; }
  .store-badge-hero small { font-size: 10px; }
}

/* Pill do hero — refinada (fundo preto, texto branco) */
.pill-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  width: max-content;
  max-width: 100%;
}
.pill-hero:hover {
  transform: translateY(-1px);
  background: #000;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
}

.pill-hero .pill-status {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pill-hero .pill-status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  position: relative;
  z-index: 2;
}
.pill-hero .pill-status::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.4;
  animation: pillPulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes pillPulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  100% { transform: scale(2.6);  opacity: 0; }
}

.pill-hero .pill-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}
.pill-hero .pill-text strong {
  color: #fff;
  font-weight: 700;
}
.pill-hero .pill-sep {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.pill-hero .pill-arr {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.pill-hero:hover .pill-arr {
  transform: translateX(3px);
  color: #fff;
}

@media (max-width: 720px) {
  .pill-hero { padding: 7px 16px 7px 10px; font-size: 12px; gap: 10px; }
  .pill-hero .pill-text { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .pill-hero .pill-status::before { animation: none; }
}
.hero-pro .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-pro .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-pro { padding: 96px 0 64px; }
}
@media (max-width: 720px) {
  .hero-pro { padding: 88px 0 48px; }
}
.hero-pro .hero-lead {
  font-size: 19px;
  max-width: 540px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .hero-pro .hero-lead { font-size: 17px; }
  .headline-xl { letter-spacing: -1.6px; }
}
.hero-pro .hero-cta { margin-bottom: 0; flex-wrap: wrap; }

/* Hero stats — responsivo */
@media (max-width: 720px) {
  .hero-stats { gap: 24px; margin-top: 32px; padding-top: 24px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-lbl { font-size: 11px; }
}

/* —— Responsivo geral —— */
@media (max-width: 720px) {
  .stats-banner { padding: 48px 0; }
  .stats-row > div { padding: 0 12px; }
  .stat-headline { font-size: 24px; letter-spacing: -0.6px; }
  .stat-desc { font-size: 12px; }
  .stat-tag { font-size: 10px; }

  .features, .testimonials, .faq-section, .how-it-works { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 32px; letter-spacing: -0.8px; }
  .section-lead { font-size: 15px; }

  .bento { gap: 12px; }
  .bento-card { padding: 24px; border-radius: var(--r-card); }
  .bento-card h3 { font-size: 18px; }
  .bento-card p { font-size: 14px; }
  .bento-hero h3 { font-size: 24px; }
  .bento-hero p { font-size: 15px; }
  .bento-card .visual { font-size: 140px; right: -30px; bottom: -30px; }

  .timeline::before { left: 24px; }
  .timeline-step { grid-template-columns: 48px 1fr; gap: 20px; padding: 24px 0; }
  .timeline-num { width: 48px; height: 48px; font-size: 14px; }
  .timeline-content h3 { font-size: 18px; }
  .timeline-content p { font-size: 14px; }

  .numbers-grid { gap: 24px; }
  .number-item h4 { font-size: 16px; }
  .number-item p { font-size: 13px; }

  .cta-dark-pro { padding: 72px 0; }
  .cta-dark-pro h2 { font-size: clamp(32px, 8vw, 44px); letter-spacing: -1px; }
  .cta-dark-pro p { font-size: 16px; }

  .footer { padding: 56px 0 28px; }
  .footer-bottom { font-size: 12px; flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Tablets médios */
@media (min-width: 721px) and (max-width: 980px) {
  .bento-hero { grid-column: span 6; grid-row: span 1; }
  .bento-md { grid-column: span 3; }
  .bento-wide { grid-column: span 6; }
}

/* —— Marquee (testimonials) refinado —— */
.testimonial-pro {
  flex-shrink: 0;
  width: 400px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-lg);
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-pro:hover { border-color: var(--hairline-strong); box-shadow: var(--shadow-soft); }

/* —— Footer refinado —— */
.footer-pro {
  background: var(--forge-primary);
  color: rgba(255, 255, 255, 0.65);
  padding: 88px 0 32px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

/* —— CIRCUIT BOARD (mantém class pra não quebrar; mas removido do HTML) —— */
.has-circuit { position: relative; overflow: hidden; isolation: isolate; }
.has-circuit > .container { position: relative; z-index: 2; }

.circuit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.circuit-bg .trace {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
  fill: none;
}
.circuit-bg .pulse {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 6 240;
  animation: circuitPulse 4.5s linear infinite;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.7));
}
.circuit-bg .pulse.p2 { animation-delay: 0.6s; animation-duration: 5s; }
.circuit-bg .pulse.p3 { animation-delay: 1.4s; animation-duration: 4s; }
.circuit-bg .pulse.p4 { animation-delay: 2.2s; animation-duration: 5.5s; }
.circuit-bg .pulse.p5 { animation-delay: 3.0s; animation-duration: 4.2s; }
.circuit-bg .pulse.p6 { animation-delay: 0.3s; animation-duration: 5.2s; }
.circuit-bg .pulse.p7 { animation-delay: 2.8s; animation-duration: 4.8s; }

@keyframes circuitPulse {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -246; }
}

.circuit-bg .node {
  fill: rgba(255, 255, 255, 0.55);
  animation: nodePulse 3s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.circuit-bg .node.n2 { animation-delay: 0.4s; }
.circuit-bg .node.n3 { animation-delay: 0.9s; }
.circuit-bg .node.n4 { animation-delay: 1.3s; }
.circuit-bg .node.n5 { animation-delay: 1.8s; }
.circuit-bg .node.n6 { animation-delay: 2.2s; }
.circuit-bg .node.n7 { animation-delay: 2.6s; }
.circuit-bg .node-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1;
  animation: nodeRing 3s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}
.circuit-bg .node-ring.r2 { animation-delay: 0.4s; }
.circuit-bg .node-ring.r3 { animation-delay: 0.9s; }
.circuit-bg .node-ring.r4 { animation-delay: 1.3s; }
.circuit-bg .node-ring.r5 { animation-delay: 1.8s; }
.circuit-bg .node-ring.r6 { animation-delay: 2.2s; }
.circuit-bg .node-ring.r7 { animation-delay: 2.6s; }

@keyframes nodePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
@keyframes nodeRing {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(2.4); }
}

/* Reduz na mobile pra não competir com o texto */
@media (max-width: 720px) {
  .circuit-bg { opacity: 0.35; }
}

/* Respeita preferência de redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .circuit-bg .pulse,
  .circuit-bg .node,
  .circuit-bg .node-ring {
    animation: none;
  }
}

/* ═════════════════════════════════════════════════════════════
   SYMBOL DIVIDER — símbolo oficial preto como respiração visual
   ═════════════════════════════════════════════════════════════ */
.symbol-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  gap: 28px;
  text-align: center;
}
.symbol-divider::before,
.symbol-divider::after {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--hairline-strong), transparent);
}
.symbol-divider img.symbol-mark {
  width: 64px;
  height: auto;
  /* o asset é o símbolo branco — invert pra preto */
  filter: brightness(0) saturate(100%);
  opacity: 0.85;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.symbol-divider img.symbol-mark:hover {
  opacity: 1;
  transform: rotate(8deg) scale(1.05);
}
.symbol-divider .quote {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-muted);
  letter-spacing: -0.01em;
  font-weight: 500;
}
.symbol-divider .quote strong { color: var(--ink); font-weight: 700; }
@media (max-width: 720px) {
  .symbol-divider { padding: 56px 0; gap: 20px; }
  .symbol-divider img.symbol-mark { width: 48px; }
  .symbol-divider .quote { font-size: 15px; }
  .symbol-divider::before,
  .symbol-divider::after { height: 36px; }
}

/* Símbolo decorativo no manifesto (canto superior direito, sutil) */
.manifesto-symbol {
  position: absolute;
  top: 48px;
  right: 5%;
  width: 180px;
  height: auto;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0) invert(1); /* asset branco → mantém branco no fundo escuro */
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}
@media (max-width: 720px) {
  .manifesto-symbol { width: 110px; top: 24px; right: 8%; opacity: 0.06; }
}

/* Símbolo discreto no footer (ao lado do brand) — já no fundo escuro */
.footer-symbol {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 80px;
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  filter: brightness(0) invert(1);
}
.footer { position: relative; overflow: hidden; }

/* ═════════════════════════════════════════════════════════════
   GRID DECORATIVO (background pattern sutil)
   ═════════════════════════════════════════════════════════════ */
.grid-bg {
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ═════════════════════════════════════════════════════════════
   CLASSES DA LANDING PRO (alinhamento com index.html novo)
   ═════════════════════════════════════════════════════════════ */

/* Hero — coluna texto */
.hero-text {
  display: flex;
  flex-direction: column;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -1.8px;
  color: var(--ink);
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 300;
  color: var(--ink);
}
.hero-lead {
  font-size: 19px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 540px;
}
@media (max-width: 920px) {
  .hero-lead { font-size: 17px; }
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  margin-top: 8px;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta .ico {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* Botão fantasma (variante secondary) */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-ghost:hover {
  background: var(--canvas-muted);
  color: var(--ink);
  border-color: var(--hairline-strong);
}

/* Trust strip — wrapper de section + grid interno */
.trust-strip {
  background: var(--canvas-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 56px 0;
  display: block;
  margin-top: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
.trust-strip .trust-item {
  text-align: center;
  border: 0;
  padding: 0;
}
.trust-num {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px;
}
.trust-lbl {
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 600;
}

/* Features — section wrapper */
.features {
  padding: 56px 0 112px;
}
@media (max-width: 720px) {
  .features { padding: 40px 0 72px; }
}

/* Section head/lead (alias do .section-heading) */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--ink);
  line-height: 1.1;
  margin: 6px 0 16px;
}
.section-head h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--ink);
}
.section-lead {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature grid + cards (novos nomes) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: var(--ink);
}
.feature-card p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.feature-card .feature-icon .ico { width: 22px; height: 22px; }

/* How it works — section wrapper */
.how-it-works {
  padding: 112px 0;
  background: var(--canvas-soft);
}
@media (max-width: 720px) {
  .how-it-works { padding: 72px 0; }
}
.how-it-works .step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

/* Testimonials — section wrapper */
.testimonials {
  padding: 112px 0;
}
@media (max-width: 720px) {
  .testimonials { padding: 72px 0; }
}

/* FAQ section wrapper */
.faq-section {
  padding: 112px 0;
  background: var(--canvas-soft);
}
@media (max-width: 720px) {
  .faq-section { padding: 72px 0; }
}
.faq-section .section-head { margin-bottom: 40px; }

/* CTA dark final (alias de .cta-final) */
.cta-dark {
  background: var(--forge-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 120px 0;
  text-align: center;
}
@media (max-width: 720px) {
  .cta-dark { padding: 80px 0; }
}
.cta-content {
  max-width: 680px;
  margin: 0 auto;
}
.cta-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
}
.cta-dark h2 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-dark p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.55;
}
.cta-dark .store-badges {
  justify-content: center;
  margin-bottom: 32px;
}
.cta-dark .store-badge {
  background: #fff;
  color: var(--forge-primary);
  border-color: #fff;
  align-items: center;
  gap: 10px;
}
.cta-dark .store-badge:hover { color: var(--forge-primary); }
.cta-dark .store-badge svg {
  width: 28px;
  height: 28px;
}
.cta-dark .store-badge span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.cta-dark .store-badge small {
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.cta-dark .store-badge strong {
  font-size: 16px;
  font-weight: 700;
}
.cta-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}
