/*
 * ClubFlow — site institucional (marketing).
 *
 * Ronda 98 — pedido do Agustín: um site em português, hospedado no
 * Firebase (separado do app real — ver comentário em firebase.json),
 * pra contar o que o ClubFlow faz e deixar quem visitar criar a conta
 * direto. Paleta/tipografia copiadas EXATAMENTE dos tokens que já
 * existem em `src/app/globals.css` do app (mesma escala "zinc" com viés
 * azulado, mesmos 3+2 acentos de marca, mesmas 3 fontes) — pra parecer
 * o mesmo produto, não um site genérico à parte. Site propositalmente
 * dark-only (o app em si não tem modo claro, exceto o PDF impresso de
 * Estatísticas, que não é o caso aqui).
 */

@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&family=Schibsted+Grotesk:wght@600;700;800&family=Montserrat:wght@700;800&display=swap");

:root {
  --bg: #0d0d12;
  --bg-elevated: #18181f;
  --bg-elevated-2: #1f1f28;
  --border: #26262f;
  --border-soft: #3d3d4a;
  --text: #f5f5f8;
  --text-muted: #9c9cae;
  --text-dim: #6f6f82;

  --gold: #e3b23c;
  --gold-soft: rgb(227 178 60 / 14%);
  --teal: #3fc0b2;
  --teal-soft: rgb(63 192 178 / 14%);
  --violet: #b073c9;
  --violet-soft: rgb(176 115 201 / 14%);
  --blue: #5aa9e6;
  --slate: #8b95a6;

  --font-display: "Schibsted Grotesk", -apple-system, sans-serif;
  --font-sans: "Public Sans", -apple-system, sans-serif;
  --font-nav-title: "Montserrat", var(--font-sans);

  --container: 1120px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Header é sticky (68px) — sem isso, um clique no menu (ou o link direto
   #precos) rola o topo da seção pra debaixo dele e corta o título. */
section[id] {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-nav-title);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow.gold {
  color: var(--gold);
}
.eyebrow.teal {
  color: var(--teal);
}
.eyebrow.violet {
  color: var(--violet);
}
.eyebrow.blue {
  color: var(--blue);
}
.eyebrow.slate {
  color: var(--slate);
}

/* Ronda 98 (ajuste) — faixa de promoção no hero ("6 meses grátis..."),
   pedido do Agustín depois de decidir o preço de lançamento. */
.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-soft);
  border: 1px solid rgba(227, 178, 60, 0.35);
  color: var(--gold);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 18px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand svg {
  height: 30px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text);
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 11px 20px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, filter 0.12s ease, background 0.12s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d19a2a);
  color: #14141a;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-soft);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--bg-elevated);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 560px;
  background: radial-gradient(closest-side, var(--gold-soft), transparent 70%),
    radial-gradient(closest-side at 75% 30%, var(--teal-soft), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: -0.01em;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 17.5px;
  max-width: 46ch;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
}

.hero-meta svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ---------- Hero mockup ---------- */

.mockup-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mockup-topbar .dots {
  display: flex;
  gap: 6px;
}

.mockup-topbar .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-soft);
}

.mockup-topbar .label {
  font-family: var(--font-nav-title);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mockup-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}

.mockup-stat .k {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.mockup-stat .v {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.mockup-stat.pos .v {
  color: var(--teal);
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
}

.mockup-row .name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.mockup-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-row .val {
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  font-size: 12.5px;
}

/* Ronda 98 (ajuste) — mockup do pagamento rápido a um freela, com foto de
   recibo anexada (seção "Pessoal da noite"). */
.mockup-photo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px dashed var(--border-soft);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.mockup-photo svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 6px;
  animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgb(63 192 178 / 45%); }
  50% { opacity: 0.65; box-shadow: 0 0 0 4px rgb(63 192 178 / 0%); }
}

.artistic-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--bg-elevated-2);
  overflow: hidden;
  margin-top: 14px;
}

.artistic-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.artistic-bar-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--text-dim);
}

.mockup-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--gold-soft);
  border: 1px solid rgba(227, 178, 60, 0.3);
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 14px;
  font-size: 12px;
}

.mockup-alert-icon {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  margin-top: 1px;
}

.mockup-alert strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 12.5px;
}

.mockup-alert span {
  display: block;
  color: var(--text-dim);
  margin-top: 2px;
}

.mockup-saved {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
}

/* ---------- Sections ---------- */

section {
  padding: 84px 0;
}

.section-border {
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.section-head p {
  font-size: 16px;
}

/* ---------- Problema ---------- */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.problem-text h2 {
  font-size: clamp(26px, 3vw, 32px);
  text-align: left;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  position: relative;
  padding: 0 0 26px 30px;
  border-left: 2px solid var(--border);
}

.timeline-item:last-child {
  border-color: transparent;
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-item h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 13.5px;
  margin: 0;
}

/* ---------- Features ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.feature-card:hover {
  border-color: var(--border-soft);
  transform: translateY(-2px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.feature-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  margin: 0;
}

/* ---------- Não é um PDV (clarify) ---------- */

.clarify-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.clarify-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

.clarify-item {
  text-align: center;
}

.clarify-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.clarify-icon svg {
  width: 23px;
  height: 23px;
}

.clarify-item h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}

.clarify-item p {
  font-size: 13.5px;
  margin: 0;
  max-width: 32ch;
  margin-inline: auto;
}

/* ---------- De onde vem o ClubFlow (compare) ---------- */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.compare-col {
  border-radius: var(--radius);
  padding: 26px 28px;
  border: 1px solid var(--border);
}

.compare-generic {
  background: var(--bg-elevated);
}

.compare-clubflow {
  background: var(--bg-elevated);
  border-color: var(--violet);
  box-shadow: 0 0 0 1px rgb(176 115 201 / 25%);
}

.compare-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  margin: 0 0 16px;
}

.compare-clubflow .compare-title {
  color: var(--violet);
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.compare-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.compare-icon.no {
  background: rgba(139, 149, 166, 0.16);
  color: var(--text-dim);
}

.compare-icon.yes {
  background: var(--violet-soft);
  color: var(--violet);
}

/* ---------- Integrações ---------- */

.integration-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.integration-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  min-width: 220px;
}

.integration-logo-box {
  height: 34px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-logo-box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.integration-badge span {
  display: block;
  font-size: 12.5px;
  color: var(--text-dim);
}

/* ---------- Preço ---------- */

.pricing-offer {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 15px;
  background: var(--gold-soft);
  border: 1px solid rgb(227 178 60 / 30%);
  border-radius: 12px;
  padding: 14px 20px;
}

.pricing-offer strong {
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-plan {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
}

.pricing-plan.featured {
  background: var(--bg-elevated-2);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 12px 32px -16px rgb(227 178 60 / 45%);
}

.plan-tag {
  align-self: center;
  font-family: var(--font-nav-title);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14141a;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0 0 14px;
}

.plan-name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.plan-desc {
  font-size: 13px;
  margin: 0 0 18px;
  min-height: 2.4em;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}

.plan-price span {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}

.plan-then {
  font-size: 12.5px;
  line-height: 1.4;
  margin: 0 0 22px;
  flex-grow: 1;
}

.pricing-foot {
  text-align: center;
  font-size: 13px;
  margin: 28px 0 0;
}

/* ---------- Papéis ---------- */

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.role-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.role-card .emoji {
  font-size: 26px;
  display: block;
  margin-bottom: 10px;
}

.role-card h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}

.role-card p {
  font-size: 12.5px;
  margin: 0;
}

/* ---------- Faixa "feito pra 4 da manhã" ---------- */

.strip {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.strip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.badge svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.phone-mockup {
  justify-self: center;
  width: 230px;
  border-radius: 32px;
  border: 6px solid #26262f;
  background: var(--bg);
  padding: 14px 12px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}

.phone-mockup .screen-title {
  font-family: var(--font-nav-title);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.phone-mockup .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.phone-mockup .row:last-child {
  border-bottom: none;
}

.phone-mockup .row .name {
  font-weight: 600;
}

.phone-mockup .pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}

.pill-ok {
  background: rgba(63, 192, 178, 0.15);
  color: var(--teal);
}

.pill-wait {
  background: rgba(227, 178, 60, 0.15);
  color: var(--gold);
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .chev {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  transition: transform 0.18s ease;
}

.faq-item[open] summary .chev {
  transform: rotate(180deg);
}

.faq-item .faq-body {
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--text-muted);
}

.faq-item .faq-body p {
  margin: 0;
}

/* ---------- CTA final ---------- */

.cta-final {
  text-align: center;
  padding: 90px 0;
}

.cta-final h2 {
  font-size: clamp(28px, 3.6vw, 40px);
}

.cta-final p {
  max-width: 50ch;
  margin: 0 auto 30px;
  font-size: 16.5px;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-trust {
  justify-content: flex-start !important;
  gap: 10px !important;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.5;
}

.footer-trust svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-dim);
}

.footer-trust span {
  max-width: 68ch;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-brand svg {
  height: 20px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13.5px;
  font-weight: 600;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text);
}

/* ---------- Responsivo ---------- */

@media (max-width: 900px) {
  .hero .wrap,
  .problem-grid,
  .strip .wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .phone-mockup {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-plan.featured {
    order: -1;
  }

  .clarify-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .freela-visual,
  .livepanel-visual,
  .artistic-visual {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .wrap {
    padding: 0 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    padding: 9px 14px;
    font-size: 13px;
  }

  .brand svg {
    height: 26px;
  }

  .mockup-card {
    padding: 16px;
  }

  .mockup-grid {
    gap: 8px;
  }

  .mockup-stat {
    padding: 10px 6px;
  }

  .mockup-stat .v {
    font-size: 14.5px;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  body.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .features-grid,
  .roles-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .cta-final {
    padding: 64px 0;
  }
}

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
