/* EuPedi — Site marketing */
:root {
  --brand: #dc2626;
  --brand-dark: #b91c1c;
  --brand-deep: #7f1d1d;
  --brand-soft: #fef2f2;
  --green: #16a34a;
  --green-dark: #15803d;
  --sky: #0284c7;
  --sky-dark: #0369a1;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #0f172a;
  --text-soft: #475569;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 28px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Sora", system-ui, -apple-system, sans-serif;
  --nav-h: 64px;
  --container: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.container.narrow { width: min(720px, calc(100% - 40px)); }
.ico { display: block; flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s, background .15s, border-color .15s, color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.25);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-outline {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}
.btn-outline:hover { border-color: #cbd5e1; background: #f8fafc; }
.btn-light { background: #fff; color: var(--brand-dark); box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,.08); }
.btn-lg { min-height: 48px; padding: 0 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-nav {
  min-height: 38px !important;
  height: 38px;
  padding: 0 14px !important;
  font-size: 13px !important;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.site-logo-mark,
.nav .brand-img--mark.site-logo-mark {
  width: 32px !important;
  height: 32px !important;
  max-height: 32px !important;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  line-height: 1.2;
}
.nav-links a:not(.btn):hover {
  color: var(--brand);
  background: var(--brand-soft);
}
.nav-links a.nav-login { color: var(--text); }
.nav-links a.btn {
  margin-left: 6px;
  color: #fff;
  padding: 0 14px;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* HERO — topo limpo */
.hero {
  padding: calc(var(--nav-h) + 48px) 0 56px;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(220, 38, 38, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 380px);
  gap: 48px;
  align-items: center;
}
.hero-left { min-width: 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.funil-hello {
  display: inline-flex;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 8px;
}
.funil-hello[hidden] { display: none !important; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--text);
  max-width: 18ch;
}
.hero h1 span {
  color: var(--brand);
  display: inline;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 34rem;
  margin-bottom: 20px;
  line-height: 1.55;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-pills span {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  line-height: 1.3;
}
.hero-pills strong { color: var(--brand); font-weight: 700; }
.hero-pills .pill-hot {
  background: var(--brand-soft);
  border-color: #fecaca;
  color: var(--brand-dark);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.badge-soft {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: 999px;
  padding: 5px 10px;
}
.form-badge {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.hero-form-wrap { min-width: 0; }
.hero-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: var(--shadow-lg);
}
.hero-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1.25;
}
.hero-form-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.45;
}
.lead-form .field { margin-bottom: 10px; }
.lead-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
}
.lead-form input,
.lead-form select {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #f8fafc;
  padding: 0 12px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
}
.lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: rgba(220, 38, 38, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.form-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
  line-height: 1.4;
}
.hero-form-alt {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.hero-form-alt a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
}
.hero-form-alt a:hover { text-decoration: underline; }

/* Logos / highlights bar */
.logos-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 14px 0;
}
.logos-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* Prova social */
.section-proof { padding: 48px 0 40px; background: var(--bg-alt); }
.section-proof .section-head { margin-bottom: 20px; }
.hero-proof { margin: 0; }
.hero-proof-viewport {
  position: relative;
  overflow: hidden;
  height: 168px;
  cursor: pointer;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.hero-proof.is-paused .hero-proof-viewport::after {
  content: "Pausado · clique para continuar";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.hero-proof-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 14px;
  animation: proofScroll 55s linear infinite;
}
.hero-proof.is-paused .hero-proof-track { animation-play-state: paused; }
@keyframes proofScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.proof-card {
  width: 260px;
  flex: 0 0 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}
.proof-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; margin-bottom: 4px; }
.proof-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proof-author { display: flex; gap: 10px; align-items: center; }
.proof-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.proof-meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.proof-meta strong { font-size: 12.5px; }
.proof-biz, .proof-city {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 32px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.section-head p { color: var(--muted); font-size: 15px; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.75); }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.section-tag.on-dark { color: #fecaca; }
.section-cta { text-align: center; margin-top: 28px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  position: relative;
}
.feat-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 8px;
}
.feat-badge--hot { background: #fff7ed; color: #c2410c; }
.feat-badge--green { background: #ecfdf5; color: #15803d; }
.feat-ico {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.25;
}
.feat-card p { font-size: 13px; color: var(--muted); line-height: 1.45; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-reverse .split-copy { order: 2; }
.split-reverse .shot-stage { order: 1; }
.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.split-copy > p { color: var(--muted); margin-bottom: 14px; font-size: 15px; }
.check-list { margin: 0 0 20px; display: grid; gap: 8px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.4;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* Screenshots / device frames */
.shot-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 0;
}
.shot-stage::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.12), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.shot-stage--phone::before {
  inset: 8% 18%;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.14), transparent 70%);
}
.device {
  position: relative;
  z-index: 1;
  background: #0f172a;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.12) inset,
    0 24px 48px rgba(15, 23, 42, 0.22),
    0 8px 16px rgba(15, 23, 42, 0.12);
}
.device img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.device-phone {
  width: min(280px, 72%);
  border-radius: 28px;
  border: 3px solid #1e293b;
  padding: 10px 8px 12px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
}
.device-phone img {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
}
.device-notch {
  width: 88px;
  height: 8px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #020617;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06);
}
.device-browser {
  width: min(100%, 520px);
  border-radius: 14px;
  border: 1px solid #1e293b;
  background: #0f172a;
}
.device-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #1e293b;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.device-chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64748b;
}
.device-chrome > span:nth-child(1) { background: #f87171; }
.device-chrome > span:nth-child(2) { background: #fbbf24; }
.device-chrome > span:nth-child(3) { background: #4ade80; }
.device-url {
  margin-left: 8px;
  flex: 1;
  min-width: 0;
  height: 22px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.65);
  color: #94a3b8;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.device-browser img {
  border-radius: 0 0 12px 12px;
  background: #fff;
}
.device-float {
  animation: deviceFloat 5.5s ease-in-out infinite;
}
.device-float-slow {
  animation: deviceFloat 7s ease-in-out infinite;
}
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .device-float, .device-float-slow { animation: none; }
}

/* Showcase gallery */
.section-showcase {
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(220, 38, 38, 0.22), transparent 55%),
    linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  overflow: hidden;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr 0.9fr;
  gap: 14px;
  align-items: end;
}
.showcase-grid--7 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.showcase-grid--7 .showcase-card:nth-child(n+5) {
  grid-column: span 1;
}
.showcase-card {
  margin: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 12px 12px 14px;
  backdrop-filter: blur(6px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 202, 202, 0.35);
  background: rgba(255,255,255,.07);
}
.showcase-card--tall { align-self: stretch; }
.showcase-frame {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  aspect-ratio: 16 / 10;
}
.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.showcase-frame--phone {
  aspect-ratio: 9 / 16;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 18px;
  border: 2px solid rgba(15,23,42,.35);
}
.showcase-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  text-align: center;
}
.showcase-card figcaption strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.showcase-card figcaption span {
  font-size: 12.5px;
  color: rgba(255,255,255,.62);
}

.steps-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
}
.step-n {
  width: 36px; height: 36px;
  margin: 0 auto 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.45; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.compare-col {
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid var(--border);
}
.compare-bad { background: #fff; }
.compare-good {
  background: linear-gradient(160deg, #ecfdf5 0%, #fff 60%);
  border-color: #bbf7d0;
}
.compare-col h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.compare-col ul { display: grid; gap: 8px; }
.compare-col li {
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.compare-bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}
.compare-good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

/* Downloads */
.section-downloads {
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  color: #fff;
}
.dl-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.dl-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.dl-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.dl-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.68);
  margin-bottom: 16px;
}
.btn-dl-android,
.btn-dl-windows {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-dl-android {
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}
.btn-dl-windows {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}
.dl-meta {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.48);
}
.dl-guide { text-align: center; margin-top: 20px; }
.dl-guide a {
  color: #fecaca;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.dl-guide a:hover { text-decoration: underline; }

.numbers-section { background: var(--bg-alt); padding: 40px 0; }
.numbers-section--rich { background: #fff; padding: 64px 0; }
.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.metric-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
}
.metric-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 4px 9px;
  margin-bottom: 10px;
}
.metric-badge--green { color: #15803d; background: #ecfdf5; }
.metric-badge--sky { color: #0369a1; background: #e0f2fe; }
.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.metric-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}
.metric-card em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-dark);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

/* Pain bubbles */
.section-pain { background: #fff7f7; }
.bubble-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.speech-bubble {
  position: relative;
  border-radius: 18px 18px 18px 6px;
  padding: 16px 16px 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.speech-bubble::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: inherit;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}
.speech-bubble p {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--text);
}
.speech-meta {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.3;
}
.speech-bubble--bad {
  background: #fff;
  border-color: #fecaca;
}
.speech-bubble--bad p { color: #7f1d1d; }
.speech-bubble--good {
  background: #ecfdf5;
  border-color: #bbf7d0;
  border-radius: 18px 18px 6px 18px;
}
.speech-bubble--good::after {
  left: auto;
  right: 16px;
}
.speech-bubble--good p { color: #14532d; }
.pain-cta { text-align: center; margin-top: 28px; }

.mini-bubbles {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  max-width: 320px;
}
.mini-bubble {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 14px;
  line-height: 1.35;
  width: fit-content;
  max-width: 100%;
}
.mini-bubble--in {
  background: #f1f5f9;
  color: var(--text);
  border-radius: 14px 14px 14px 4px;
}
.mini-bubble--out {
  background: #dcfce7;
  color: #14532d;
  margin-left: auto;
  border-radius: 14px 14px 4px 14px;
}

.shot-stage--duo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.device-phone--sm {
  width: min(200px, 42%);
}
.device-phone--sm:first-child {
  transform: translateY(18px);
}

.numbers-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
  margin-bottom: 2px;
}
.numbers-grid span {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

.faq-list { display: grid; gap: 8px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 0 14px;
  line-height: 1.5;
}

.cta-final {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  text-align: center;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}
.cta-final p { opacity: .9; margin-bottom: 20px; font-size: 15px; }
.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 44px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer strong {
  display: block;
  color: #fff;
  font-size: 12px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  color: #94a3b8;
}
.footer a:hover { color: #fff; }
.footer-brand { margin-bottom: 10px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: #fff;
}
.footer-logo-text span { color: #f87171; }
.footer p { font-size: 14px; line-height: 1.5; max-width: 28ch; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 16px;
  font-size: 12px;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.38);
}
.sticky-cta[hidden] { display: none !important; }

/* Funil modal */
body.funil-open { overflow: hidden; }
body.funil-open .funil-chip,
body.funil-open .sticky-cta { visibility: hidden; pointer-events: none; }

.funil-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top, 0px)) 16px 16px;
  padding-top: max(12vh, env(safe-area-inset-top, 0px));
  background: rgba(15, 23, 42, 0);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease, background .35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
.funil-overlay.open {
  pointer-events: auto;
  opacity: 1;
  background: rgba(15, 23, 42, 0.28);
}
.funil-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  border: 1px solid var(--border);
  transform: translateY(16px);
  transition: transform .35s ease;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  max-height: min(88dvh, 88vh);
  margin: auto 0;
  flex-shrink: 0;
}
.funil-overlay.open .funil-card { transform: translateY(0); }
.funil-progress { height: 3px; background: #fee2e2; width: 100%; }
.funil-progress span {
  display: block;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--brand), #f97316);
  transition: width .35s ease;
}
.funil-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 32px; height: 32px;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
}
.funil-close:hover { background: #f1f5f9; color: var(--text); }
.funil-body { padding: 22px 22px 18px; }
.funil-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.funil-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  color: var(--text);
}
.funil-sub { font-size: 14px; color: var(--text-soft); margin-bottom: 16px; }
.funil-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.funil-input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  outline: none;
}
.funil-input:focus {
  border-color: #fca5a5;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}
.funil-hint { font-size: 12px; color: var(--muted); margin-top: 8px; }
.funil-erro {
  margin-top: 10px;
  font-size: 13px;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 8px 10px;
}
.funil-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.funil-btn {
  height: 44px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  padding: 0 16px;
}
.funil-btn-primary { flex: 1; background: var(--brand); color: #fff; }
.funil-btn-primary:hover { background: var(--brand-dark); }
.funil-btn-primary:disabled { opacity: .6; cursor: wait; }
.funil-btn-ghost { background: transparent; color: var(--muted); }
.funil-btn-ghost:hover { color: var(--text); background: #f8fafc; }
.funil-chip {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 95;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: inherit;
}
.funil-chip:hover { border-color: #fca5a5; }
.funil-chip strong { color: var(--brand); }

@media (min-width: 640px) {
  .funil-overlay { align-items: center; padding: 24px 16px; }
  .funil-card { max-height: min(90dvh, 90vh); }
}

@media (min-width: 901px) {
  .sticky-cta { display: none !important; }
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 32px;
  }
  .hero h1 { max-width: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 14px;
    gap: 2px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    width: 100%;
    padding: 12px 10px;
    justify-content: flex-start;
  }
  .nav-links a.btn {
    margin: 6px 0 0;
    width: 100%;
    height: 44px;
    min-height: 44px !important;
  }

  .hero {
    padding: calc(var(--nav-h) + 28px) 0 40px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-form-card { box-shadow: var(--shadow); }

  .split,
  .split-reverse .split-copy,
  .split-reverse .shot-stage,
  .steps-3,
  .compare-grid,
  .dl-cards,
  .numbers-grid,
  .footer-grid,
  .showcase-grid,
  .showcase-grid--7,
  .metric-cards,
  .bubble-grid {
    grid-template-columns: 1fr;
  }
  .split-reverse .split-copy,
  .split-reverse .shot-stage { order: unset; }
  .device-phone { width: min(260px, 70%); }
  .device-browser { width: 100%; }
  .device-phone--sm { width: min(180px, 44%); }
  .showcase-grid,
  .showcase-grid--7 {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .metric-cards { grid-template-columns: 1fr; }
  .bubble-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card--tall { grid-row: auto; }
  .showcase-frame--phone {
    max-width: 180px;
    aspect-ratio: 9 / 14;
  }
  .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero h1 { font-size: 1.55rem; max-width: none; }
  .proof-card { width: min(240px, 78vw); flex-basis: min(240px, 78vw); }
  .hero-proof-viewport { height: 176px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-final-actions .btn { width: 100%; }
  .showcase-grid,
  .showcase-grid--7,
  .bubble-grid { grid-template-columns: 1fr; }
  .device-float, .device-float-slow { animation: none; }
  .shot-stage--duo { flex-direction: column; align-items: center; }
  .device-phone--sm { width: min(220px, 70%); }
  .device-phone--sm:first-child { transform: none; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .bubble-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid--7 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .metric-cards { grid-template-columns: 1fr 1fr; }
}
