/* ============================================================================
   Zoey — landing page
   Mesma paleta e tipografia do produto (web/ui/styles/tokens.css), copiadas
   aqui porque esta página é 100% estática e independente dos apps React.
   ========================================================================== */

:root {
  /* Superfícies */
  --bg: #f6f7f5;
  --panel: #ffffff;
  --panel-soft: #f0f2ef;
  --line: #e1e6e1;

  /* Texto */
  --ink: #14201b;
  --ink-soft: #5b6b63;
  --ink-faint: #9aa79f;

  /* Marca — limão, só em botão/CTA e acentos pontuais */
  --accent: #c8ff00;
  --accent-dark: #5c7a00;
  --accent-soft: #eef1e6;
  --on-accent: var(--ink);

  /* Secundária — roxo. Escuro para blocos grandes, vívido para texto/ícone */
  --secondary: #150b33;
  --secondary-soft: #54208c;
  --on-secondary: #f6f2f8;
  --on-secondary-soft: #cbb3da;

  /* Integrações */
  --shopee: #ea501f;
  --braip: #6d36fb;

  --success: #16a34a;
  --success-soft: #dcfce7;
  --success-dark: #166534;

  --radius: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;

  --shadow: 0 1px 2px rgba(20, 32, 27, 0.04), 0 8px 24px -12px rgba(20, 32, 27, 0.1);
  --shadow-lg: 0 12px 32px -12px rgba(20, 11, 41, 0.28);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.015em; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Reveal on scroll ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Botões ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-family: var(--font-sans);
  border-radius: var(--radius-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn svg { transition: transform 0.15s ease; }
.btn:hover svg { transform: translateX(2px); }
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 10px 24px -10px rgba(200, 255, 0, 0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(200, 255, 0, 0.65); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--secondary-soft); color: var(--secondary-soft); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-md { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 15.5px; }
.link-ghost { font-weight: 600; font-size: 14px; color: var(--ink-soft); transition: color 0.15s ease; }
.link-ghost:hover { color: var(--ink); }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 245, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: color 0.15s ease; }
.main-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 76px 0 40px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: -20% -10% auto -10%; height: 640px;
  background: radial-gradient(60% 60% at 20% 10%, rgba(200, 255, 0, 0.16), transparent 70%),
    radial-gradient(50% 50% at 85% 0%, rgba(84, 32, 140, 0.14), transparent 70%);
  pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(20, 32, 27, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--panel); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.pill-badge--dark { background: var(--secondary); color: var(--on-secondary); border-color: transparent; }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px var(--success-soft); flex-shrink: 0; }

.hero-copy h1 { font-size: clamp(34px, 4.6vw, 54px); margin: 20px 0 20px; font-weight: 700; }
.text-accent { background: linear-gradient(180deg, transparent 62%, var(--accent) 62%); }
.hero-lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-fineprint { margin-top: 16px; font-size: 12.5px; color: var(--ink-faint); font-family: var(--font-mono); }

/* Hero mock visual */
.hero-visual { position: relative; height: 440px; }
.mock-card {
  position: absolute; background: var(--panel); border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.mock-card--main { top: 0; left: 6%; width: 88%; padding: 0 0 20px; animation: float-slow 6s ease-in-out infinite; }
.mock-topbar { display: flex; gap: 6px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--panel-soft); }
.mock-body { padding: 18px 22px 0; }
.mock-eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--secondary-soft); font-weight: 600; }
.mock-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 4px 0 16px; }
.mock-row { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-soft); }
.mock-row strong { color: var(--ink); font-weight: 600; }
.mock-status { color: var(--success-dark); }
.mock-actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.mock-chip { font-size: 11.5px; font-weight: 700; padding: 7px 12px; border-radius: var(--radius-pill); background: var(--panel-soft); color: var(--ink-soft); }
.mock-chip--accent { background: var(--accent); color: var(--on-accent); }

.mock-card--bubble {
  bottom: 96px; right: -4%; width: 260px; padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 10px;
  animation: float-slow 6s ease-in-out infinite 1.4s;
}
.bubble-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--success); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.mock-card--bubble strong { display: block; font-size: 13px; }
.mock-card--bubble p { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

.mock-card--price {
  bottom: 0; left: -4%; padding: 16px 20px; background: var(--secondary); border: none;
  animation: float-slow 6s ease-in-out infinite 0.7s;
}
.mock-card--price .mock-eyebrow { color: var(--accent); }
.mock-price { font-family: var(--font-mono); font-size: 26px; font-weight: 700; color: #fff; margin-top: 4px; }
.mock-price-hint { font-size: 11.5px; color: var(--on-secondary-soft); margin-top: 2px; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ── Faixa de confiança ────────────────────────────────────────────────── */
.trust-strip { background: var(--ink); overflow: hidden; padding: 13px 0; }
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 10px 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: rgba(246, 247, 245, 0.82); text-transform: uppercase;
}
.trust-strip-inner span[aria-hidden] { color: var(--accent); }

/* ── Seções ────────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--soft { background: var(--panel-soft); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head--dark { max-width: 720px; }
.eyebrow {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--secondary-soft); font-weight: 600;
}
.eyebrow--on-dark { color: var(--accent); }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); margin: 14px 0 14px; font-weight: 700; }
.section-lead { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
.section-lead--on-dark { color: rgba(246, 242, 248, 0.72); }

/* Passos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-number {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 10px; background: var(--secondary); color: var(--accent);
  font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 18px;
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* Recursos */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--secondary-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card h3 { font-size: 15.5px; margin-bottom: 7px; }
.feature-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

/* Preços */
.price-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 24px; align-items: stretch; }
.price-table {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px 28px; box-shadow: var(--shadow);
}
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row strong { display: block; font-size: 15px; margin-bottom: 3px; }
.price-row span:not(.price-value) { font-size: 13px; color: var(--ink-soft); }
.price-value { font-family: var(--font-mono); font-weight: 700; font-size: 18px; white-space: nowrap; color: var(--secondary-soft); }
.price-value small { font-size: 11px; color: var(--ink-faint); font-weight: 500; }

.price-callout {
  background: var(--secondary); color: var(--on-secondary); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.price-callout h3 { font-size: 21px; margin-top: 4px; }
.price-callout p { font-size: 14px; color: var(--on-secondary-soft); line-height: 1.6; }

/* Integrações */
.section--dark { background: var(--secondary); color: var(--on-secondary); }
.integration-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.integration-card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 30px 28px; transition: transform 0.2s ease, background-color 0.2s ease;
}
.integration-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.06); }
.integration-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.integration-logo {
  width: 46px; height: 46px; border-radius: 12px; background: #fff;
  padding: 9px; object-fit: contain;
}
.integration-head h3 { font-size: 19px; margin-bottom: 4px; }
.integration-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill); }
.integration-tag--shopee { background: rgba(234, 80, 31, 0.18); color: #ff9c72; }
.integration-tag--braip { background: rgba(109, 54, 251, 0.22); color: #b79dff; }
.integration-card > p { font-size: 14.5px; line-height: 1.65; color: rgba(246, 242, 248, 0.78); margin-bottom: 18px; }
.integration-list { display: flex; flex-direction: column; gap: 10px; }
.integration-list li { position: relative; padding-left: 20px; font-size: 13.5px; color: rgba(246, 242, 248, 0.85); }
.integration-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 2px; background: var(--accent);
}

/* Prova visual — capturas reais do painel */
.integration-proof { margin-top: 56px; }
.integration-proof-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(246, 242, 248, 0.55); text-align: center; margin-bottom: 22px;
}
.proof-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.proof-shot {
  background: var(--panel); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease;
}
.proof-shot:hover { transform: translateY(-4px); }
.proof-shot-bar { display: flex; gap: 6px; padding: 12px 14px; background: var(--panel-soft); }
.proof-shot-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.proof-shot img { width: 100%; display: block; }
.proof-shot figcaption {
  padding: 14px 18px 18px; font-size: 13px; color: var(--ink-soft); border-top: 1px solid var(--line);
}

/* CTA final */
.cta-final { position: relative; padding: 96px 0; overflow: hidden; background: var(--ink); }
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(200, 255, 0, 0.14), transparent 70%);
}
.cta-final-grid {
  position: relative; display: grid; grid-template-columns: 1.1fr 0.6fr; gap: 40px; align-items: center;
}
.cta-final-copy h2 { font-size: clamp(28px, 4vw, 40px); color: #fff; }
.cta-final-copy p { font-size: 16px; color: rgba(246, 247, 245, 0.72); max-width: 46ch; margin-top: 14px; }
.cta-final-copy .btn { margin-top: 26px; }

.cta-final-phone { display: flex; justify-content: center; }
.phone-frame {
  width: 230px; border-radius: 34px; background: #0c0c10; padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(-3deg);
  animation: float-slow 7s ease-in-out infinite;
}
.phone-frame img { width: 100%; border-radius: 24px; display: block; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; text-align: left; font-size: 15px; font-weight: 600;
}
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--ink-soft); border-radius: 2px; transition: transform 0.25s ease;
}
.faq-icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-question[aria-expanded="true"] .faq-icon::before { background: var(--secondary-soft); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 22px 20px; font-size: 14px; color: var(--ink-soft); line-height: 1.65; max-width: 62ch; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--panel-soft); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer-brand p { margin-top: 14px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; max-width: 32ch; }
.brand--footer { margin-bottom: 4px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 16px; font-family: var(--font-mono); font-weight: 600; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--ink-soft); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--secondary-soft); }

.trust-logos {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  padding-block: 40px 8px; margin-top: 52px; border-top: 1px solid var(--line); text-align: center;
}
.trust-logos-heading { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); }
.trust-logos-icons { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-logos-icons img {
  height: 40px; width: auto; filter: brightness(0); opacity: 0.82;
}
.footer-security-label {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint);
}
.footer-security-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* Bloco compacto dentro da coluna Zoey do rodapé */
.footer-security-inline { margin-top: 22px; }
.footer-security-inline .footer-security-label { display: block; margin-bottom: 12px; }
.footer-security-inline .footer-security-logos { flex-direction: row; align-items: center; gap: 24px; }
.mono-logo {
  height: 32px; width: auto; filter: brightness(0); opacity: 0.45; transition: opacity 0.2s ease;
}
.mono-logo:hover { opacity: 0.75; }

.footer-bottom {
  border-top: 1px solid var(--line); padding-block: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-legal p { font-size: 12.5px; color: var(--ink-soft); }
.footer-cnpj { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); margin-top: 2px; }
.footer-copyright { font-size: 12px; color: var(--ink-faint); }

/* ── Responsivo ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
  .steps, .price-grid, .integration-grid, .proof-shots, .cta-final-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-final-phone { order: -1; }
}
@media (max-width: 720px) {
  .main-nav, .header-actions .link-ghost { display: none; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .mock-card--bubble { right: 2%; width: 220px; }
  .mock-card--price { left: 2%; }
}

.site-header.nav-open .main-nav {
  display: flex; position: absolute; top: 72px; left: 0; right: 0; background: var(--panel);
  flex-direction: column; padding: 20px 24px; border-bottom: 1px solid var(--line); gap: 18px;
}
