/* ============================================
   Sistema Visual — Capricha
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Cores */
  --green-deep: #0F4C3A;
  --green-darker: #0A3528;
  --green-soft: #E8F0EC;
  --orange: #F4511E;
  --orange-soft: #FFE8DF;
  --ink: #1A1A1A;
  --ink-soft: #6E6E6E;
  --line: #E5E0D8;
  --bg: #FAF7F2;
  --bg-white: #FFFFFF;
  --wa-green: #25D366;

  /* Tipografia */
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --ui: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: var(--ui);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Tipografia utilitária */
.display { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.05; }
.eyebrow {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-deep);
}
.eyebrow-orange { color: var(--orange); }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform .12s ease, background .12s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--orange);
  color: white;
}
.btn-primary:hover { background: #d8420f; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: white; border-color: var(--ink); }
.btn-dark {
  background: var(--ink);
  color: white;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 32px;
}
.section.container { padding: 96px 32px; }
.section-tight { padding: 64px 32px; }

/* Header / nav minimal — Login discreto */
.nav {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav .brand-mark {
  width: 28px; height: 28px;
  background: var(--green-deep);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--orange);
  font-weight: 800;
  font-size: 14px;
}
.nav .links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav .links a:hover { color: var(--ink); }

/* Cards */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.card-soft {
  background: var(--green-soft);
  border-radius: var(--radius);
  padding: 28px;
}

/* Mockup celular WhatsApp — fidelidade ao real */
.phone {
  width: 320px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 7px;
  box-shadow: 0 30px 60px -20px rgba(15,76,58,0.25), 0 0 0 1px rgba(0,0,0,0.08);
  position: relative;
}
.phone-screen {
  background: #EFEAE2;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  height: 640px;
  display: flex;
  flex-direction: column;
}
/* iOS dynamic island */
.phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #1a1a1a;
  border-radius: 14px;
  z-index: 5;
}
/* iOS status bar */
.ios-status {
  height: 44px;
  padding: 14px 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: -apple-system, 'SF Pro Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  background: #F0F2F5;
  flex-shrink: 0;
}
.ios-status .right {
  display: flex; align-items: center; gap: 6px;
}
.ios-status .right svg { display: block; }
.ios-status .battery {
  background: #1a1a1a;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 4px 1px 5px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.ios-status .battery::after {
  content: '';
  position: absolute;
  right: -2px; top: 50%;
  transform: translateY(-50%);
  width: 1.5px; height: 4px;
  background: #1a1a1a;
  border-radius: 0 1px 1px 0;
}

/* Chat header (tema claro) */
.wa-header {
  background: #F0F2F5;
  padding: 6px 14px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.wa-header .back {
  color: #1a1a1a;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}
.wa-header .av {
  width: 40px; height: 40px;
  background: #DDDDDD;
  color: #666666;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 18px;
  font-family: -apple-system, system-ui, sans-serif;
  flex-shrink: 0;
}
.wa-header .name-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
  flex: 1;
  min-width: 0;
}
.wa-header .name-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 16px;
  color: #111B21;
  min-width: 0;
}
.wa-header .name-row > span:first-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.wa-header .sub {
  font-size: 12px;
  color: #667781;
  font-weight: 400;
  margin-top: 1px;
}
.wa-header .actions {
  display: flex; gap: 14px;
  color: #54656F;
  font-size: 16px;
}

/* Meta verified badge — 8-pointed star, azul oficial */
.meta-badge {
  width: 14px; height: 14px;
  flex-shrink: 0;
  display: inline-block;
}

/* Chat area */
.wa-chat {
  flex: 1;
  background: #EFEAE2;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(120,100,70,0.05) 0 6px, transparent 7px),
    radial-gradient(circle at 78% 12%, rgba(120,100,70,0.05) 0 5px, transparent 6px),
    radial-gradient(circle at 32% 42%, rgba(120,100,70,0.04) 0 7px, transparent 8px),
    radial-gradient(circle at 88% 56%, rgba(120,100,70,0.05) 0 6px, transparent 7px),
    radial-gradient(circle at 18% 72%, rgba(120,100,70,0.04) 0 6px, transparent 7px),
    radial-gradient(circle at 62% 84%, rgba(120,100,70,0.05) 0 5px, transparent 6px),
    radial-gradient(circle at 48% 28%, rgba(120,100,70,0.04) 0 4px, transparent 5px),
    radial-gradient(circle at 8% 90%, rgba(120,100,70,0.04) 0 5px, transparent 6px);
  padding: 10px 10px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wa-daydivider {
  align-self: center;
  background: white;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  color: #54656F;
  font-weight: 500;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
  margin: 4px 0 4px;
}
.wa-systembanner {
  align-self: center;
  background: #D9FDD3;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11.5px;
  color: #111B21;
  text-align: center;
  line-height: 1.4;
  max-width: 88%;
  margin-bottom: 4px;
}

/* Bubbles */
.wa-bubble {
  max-width: 78%;
  padding: 6px 9px 8px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.42;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  color: #111B21;
}
.wa-bubble.them {
  background: #FFFFFF;
  align-self: flex-start;
  border-top-left-radius: 0;
}
.wa-bubble.me {
  background: #D9FDD3;
  align-self: flex-end;
  border-top-right-radius: 0;
}
.wa-bubble .meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 2px;
  font-size: 10.5px;
  color: #667781;
}
.wa-bubble .meta .checks {
  color: #53BDEB;
  font-size: 12px;
  letter-spacing: -2px;
  font-weight: 700;
}
.wa-bubble .reminder-title {
  font-weight: 600;
  color: #111B21;
  margin-bottom: 4px;
}
.pix-payload {
  display: block;
  background: #F5F5F5;
  padding: 7px 9px;
  border-radius: 6px;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 10px;
  word-break: break-all;
  user-select: all;
  color: #111B21;
  line-height: 1.4;
  margin: 6px 0 4px;
}
.pix-label-line {
  font-size: 11.5px;
  font-weight: 600;
  color: #111B21;
  margin-top: 6px;
}

/* Input bar */
.wa-input {
  background: #F0F2F5;
  padding: 8px 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.wa-input .plus {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: #54656F;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}
.wa-input .field {
  flex: 1;
  background: white;
  border-radius: 999px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  color: #b0b0b0;
  font-size: 13px;
}
.wa-input .icons {
  display: flex; gap: 14px;
  color: #54656F;
  font-size: 16px;
}

/* Bullets de valor */
.bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bullet h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0 8px;
  letter-spacing: -0.01em;
}
.bullet p {
  color: var(--ink-soft);
  font-size: 15px;
}
.bullet-icon {
  width: 48px; height: 48px;
  background: var(--green-deep);
  color: var(--orange);
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
}

/* Steps "como funciona" */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step .num {
  font-family: var(--display);
  font-size: 80px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 8px;
}
.step p { color: var(--ink-soft); font-size: 15px; }

/* Preço */
.price-card {
  background: var(--green-deep);
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.price-tag {
  font-family: var(--display);
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-tag small {
  font-size: 24px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.price-features li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 10px;
  font-size: 15px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--orange);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 15px;
}

/* Footer */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
}
footer a { color: rgba(255,255,255,0.65); }
footer a:hover { color: white; }
footer .foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer h4 {
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
footer ul { list-style: none; }
footer ul li { padding: 4px 0; font-size: 14px; }
footer .copy {
  padding-top: 20px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

/* utilidades */
.text-orange { color: var(--orange); }
.text-green { color: var(--green-deep); }
.muted { color: var(--ink-soft); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.tag-green {
  background: var(--green-soft);
  color: var(--green-deep);
}

/* Hero */
.hero {
  padding: 40px 0 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 20px 0 24px;
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: var(--orange);
  z-index: -1;
  opacity: 0.3;
}
.hero .sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero .cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero .cta-meta {
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-visual {
  display: grid;
  place-items: center;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(244,81,30,0.08), transparent 60%);
  z-index: -1;
}

/* Section title */
.sec-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 16px 0 12px;
  max-width: 720px;
}
.sec-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 600px;
}

/* Banda separadora */
.band {
  background: var(--green-deep);
  color: white;
  overflow: hidden;
  white-space: nowrap;
}
.band-inner {
  display: inline-flex;
  gap: 40px;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  animation: scroll 40s linear infinite;
}
.band-inner span { color: var(--orange); margin-right: 40px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Prova social */
.proof {
  text-align: center;
  padding: 48px 0;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-num {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-label { color: var(--ink-soft); margin-top: 8px; }
