:root {
  /* Tokens espelhados do freelancers-web (globals.css) */
  --green-50: #ECFDF5;
  --green-400: #34D399;
  --green-700: #00875A;
  --green-ink: #003D29;
  --bg: #FFFFFF;
  --bg-soft: #FAFAF7;
  --ink-900: #0A0F0D;
  --ink-700: #2A332E;
  --ink-500: #5A655E;
  --ink-400: #7C857F;
  --ink-200: #D5D9D5;
  --ink-100: #ECEFEB;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-sans: 'Onest', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-soft);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Glow de fundo — halo verde sutil */
body::before {
  content: "";
  position: fixed;
  top: -25%;
  left: 50%;
  width: 900px;
  max-width: 140vw;
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,135,90,0.10) 0%, rgba(0,135,90,0.03) 38%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Grade sutil */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,15,13,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,15,13,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 28%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 50% 28%, #000 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px 32px;
}

/* ---------- Logo ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  user-select: none;
}
a.brand { text-decoration: none; }
.brand svg { flex-shrink: 0; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.brand-text { display: flex; flex-direction: column; gap: 0; }
.brand-bar {
  width: 24px; height: 3px; border-radius: 999px;
  background: var(--green-700); margin-bottom: 4px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px; line-height: 1; letter-spacing: -0.01em; color: var(--ink-900);
}
.brand-sub {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px; line-height: 1.1; color: var(--green-700);
}

/* ---------- Hero ---------- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--green-50);
  color: var(--green-700);
  margin-bottom: 28px;
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--green-700);
  animation: pulse 1.6s ease infinite;
  box-shadow: 0 0 0 0 rgba(0,135,90,0.4);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,135,90,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(0,135,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,135,90,0); }
}

h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 8.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--ink-900);
  margin-bottom: 20px;
}
h1 .accent { color: var(--green-700); }

.lead {
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  color: var(--ink-700);
  max-width: 30em;
  margin-bottom: 36px;
}
.lead strong { font-weight: 600; }
.lead .green { color: var(--green-700); }

/* ---------- Formulário ---------- */
form { width: 100%; max-width: 460px; }

.field {
  display: flex;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field:focus-within {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(0,135,90,0.12);
}
.field input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink-900);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  min-width: 0;
}
.field input::placeholder { color: var(--ink-400); }

button.submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-700);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
  white-space: nowrap;
}
button.submit:hover:not(:disabled) { background: var(--green-ink); }
button.submit:active:not(:disabled) { transform: scale(0.97); }
button.submit:disabled { opacity: 0.6; cursor: default; }

.hint {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hint svg { flex-shrink: 0; }

/* Estados de feedback */
.status { font-size: 14px; margin-top: 14px; min-height: 1.2em; }
.status.error { color: #B91C1C; }

.success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  max-width: 460px;
  background: var(--green-50);
  border: 1px solid rgba(0,135,90,0.25);
  border-radius: 14px;
  padding: 20px;
  animation: fadeUp 320ms ease both;
}
.success.show { display: flex; }
.success .check {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--green-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.success h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--ink-900); }
.success p { font-size: 14px; color: var(--ink-700); }

/* CTA pós-cadastro: seguir Instagram/Threads */
.follow-ctas { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(0,135,90,0.18); }
.follow-ctas .label { font-size: 13px; color: var(--ink-500); margin-bottom: 10px; }
.follow-row { display: flex; flex-wrap: wrap; gap: 10px; }
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0,135,90,0.25);
  color: var(--green-ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}
.follow-btn:hover { background: var(--green-50); border-color: var(--green-700); }
.follow-btn:active { transform: scale(0.97); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 999px;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Benefícios ---------- */
.benefits {
  position: relative;
  z-index: 1;
  padding: 32px 0;
  border-top: 1px solid var(--ink-100);
}
.benefits h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  color: var(--ink-900);
  margin-bottom: 20px;
}
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefits-list li {
  font-size: 15px;
  color: var(--ink-700);
  padding-left: 26px;
  position: relative;
}
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-700);
}
.benefits-list strong { color: var(--ink-900); font-weight: 600; }

/* ---------- Links de audiência (home ↔ /para-clientes ↔ /para-freelancers) ---------- */
.audience-links {
  position: relative;
  z-index: 1;
  padding: 8px 0 32px;
  border-top: 1px solid var(--ink-100);
}
.audience-links h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  color: var(--ink-900);
  margin: 24px 0 20px;
}
.audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.audience-card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--ink-200);
  background: var(--bg);
  text-decoration: none;
  transition: border-color 140ms ease, transform 140ms ease;
}
.audience-card:hover { border-color: var(--green-700); transform: translateY(-2px); }
.audience-label { font-size: 13px; color: var(--ink-500); display: block; }
.audience-cta { font-size: 15px; font-weight: 600; color: var(--green-ink); }

/* ---------- FAQ ---------- */
.faq {
  position: relative;
  z-index: 1;
  padding: 8px 0 32px;
  border-top: 1px solid var(--ink-100);
}
.faq h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  color: var(--ink-900);
  margin: 24px 0 20px;
}
.faq-item + .faq-item { margin-top: 18px; }
.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 14px;
  color: var(--ink-700);
  max-width: 42em;
}

/* ---------- Footer ---------- */
footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-100);
  font-size: 13px;
  color: var(--ink-500);
}
footer .socials { display: flex; gap: 16px; align-items: center; }
footer a { color: var(--ink-700); transition: color 140ms ease; }
footer a:hover { color: var(--green-700); }

.social-icon { width: 18px; height: 18px; fill: currentColor; display: block; }
.follow-btn .social-icon { color: var(--green-700); }

@media (max-width: 480px) {
  .field { flex-direction: column; padding: 8px; }
  button.submit { width: 100%; padding: 14px; }
}
