/* ============================================================
   Smarter Estágios — sistema visual
   Tipografia: Bricolage Grotesque (display) + Manrope (corpo)
   ============================================================ */

:root {
  /* Cores */
  --ink:        #0E1226;
  --ink-2:      #1E2342;
  --ink-soft:   #5B6079;
  --line:       #E5E3DA;
  --line-2:     #D5D2C5;
  --paper:      #FAFAF7;
  --paper-warm: #F4F1E8;

  --blue:       #102657;
  --blue-deep:  #0A1A40;
  --blue-soft:  #E4E8F5;

  --yellow:     #FAA419;
  --yellow-2:   #FFC25C;
  --yellow-deep:#D08609;

  --red:        #FF5A3C;
  --green:      #14B870;

  /* Tipografia */
  --font-display: "Bricolage Grotesque", "Helvetica Neue", system-ui, sans-serif;
  --font-body:    "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Espaçamento e raio */
  --radius:     18px;
  --radius-lg:  28px;
  --radius-xl:  44px;
  --shadow-sm:  0 1px 0 rgba(14,18,38,0.06), 0 1px 2px rgba(14,18,38,0.04);
  --shadow:     0 10px 30px -12px rgba(14,18,38,0.18), 0 2px 6px rgba(14,18,38,0.05);
  --shadow-lg:  0 30px 60px -20px rgba(14,18,38,0.30), 0 8px 16px rgba(14,18,38,0.08);

  --container:  1240px;
}

[data-theme="dark"] {
  --ink:        #F4F1E8;
  --ink-2:      #E5E3DA;
  --ink-soft:   #9AA0BC;
  --line:       #1E2342;
  --line-2:     #2A3060;
  --paper:      #0A0D1F;
  --paper-warm: #11152E;
  --blue-soft:  #1B2A6E;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ========== Tipografia ========== */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1, .h1 { font-size: clamp(48px, 8vw, 120px); }
h2, .h2 { font-size: clamp(38px, 5.5vw, 78px); }
h3, .h3 { font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.02em; }
h4, .h4 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.015em; line-height: 1.15; }
p { margin: 0; color: var(--ink); }
.lede { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--ink-soft); max-width: 60ch; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.mono { font-family: var(--font-mono); font-size: 13px; letter-spacing: -0.01em; }

/* Marcador amarelo nos destaques */
.mark {
  background: linear-gradient(180deg, transparent 56%, var(--yellow) 56%, var(--yellow) 92%, transparent 92%);
  padding: 0 0.08em;
  color: var(--ink);
}
.circle-word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 0;
}
.circle-word::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: var(--yellow);
  border-radius: 50%;
  transform: rotate(-3deg) scaleX(1.08) scaleY(0.95);
  z-index: -1;
}

/* ========== Container & utilidades ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.split { display: grid; gap: clamp(40px, 6vw, 80px); }
@media (min-width: 900px) { .split--2 { grid-template-columns: 1fr 1fr; } .split--5-7 { grid-template-columns: 5fr 7fr; } .split--7-5 { grid-template-columns: 7fr 5fr; } }
.center { text-align: center; }
.stack { display: flex; flex-direction: column; gap: 24px; }
.row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ========== Botões ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--blue); }
.btn--yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 6px 0 var(--yellow-deep); }
.btn--yellow:hover { box-shadow: 0 4px 0 var(--yellow-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--lg { padding: 22px 34px; font-size: 19px; }
.btn .arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 14px; left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
}
.site-header__inner {
  pointer-events: auto;
  max-width: calc(var(--container) + 28px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 14px 10px 22px;
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-left: 28px;
  margin-right: 28px;
}
[data-theme="dark"] .site-header__inner { background: rgba(10,13,31,0.85); }

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 38px;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
}
.logo--lg { height: 56px; }
.logo--xl { height: 72px; }

.nav { display: none; align-items: center; gap: 4px; flex: 1; }
@media (min-width: 1100px) { .nav { display: flex; } }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a:hover { background: var(--paper-warm); }
.nav a.is-active { background: var(--ink); color: var(--paper); }

.header-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.header-cta .btn { padding: 12px 18px; font-size: 14.5px; }

.mobile-toggle {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
}
@media (min-width: 1100px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 18px; height: 18px; }

/* Login dropdown */
.login-menu {
  position: relative;
  display: inline-block;
}
.login-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.login-menu__trigger:hover { background: var(--ink); color: var(--paper); }
.login-menu__trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.login-menu.is-open .login-menu__trigger svg { transform: rotate(180deg); }
.login-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 110;
}
.login-menu.is-open .login-menu__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.login-menu__panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: background 0.15s ease;
}
.login-menu__panel a:hover { background: var(--paper-warm); }
.login-menu__panel a span.kind {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.login-menu__panel a .arrow {
  color: var(--ink-soft);
  font-family: var(--font-mono);
}
.login-menu__panel a:hover .arrow { color: var(--blue); }

/* Mobile access block */
.mobile-menu__access {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.mobile-menu__access a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px !important;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line) !important;
  border-radius: 12px;
  font-size: 17px !important;
  background: var(--paper-warm);
}
.mobile-menu__access a span.kind {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mobile-menu {
  position: fixed;
  inset: 80px 14px auto 14px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  display: none;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }

/* ========== Placeholders listrados ========== */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--paper-warm) 0px,
      var(--paper-warm) 12px,
      var(--line) 12px,
      var(--line) 13px
    );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.ph__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  max-width: 80%;
  text-align: center;
}
.ph--blue {
  background:
    repeating-linear-gradient(
      135deg,
      var(--blue-soft) 0px,
      var(--blue-soft) 12px,
      var(--blue) 12px,
      var(--blue) 13px
    );
  border-color: var(--blue);
}
.ph--yellow {
  background:
    repeating-linear-gradient(
      135deg,
      #FFF4B5 0px,
      #FFF4B5 12px,
      var(--yellow) 12px,
      var(--yellow) 13px
    );
  border-color: var(--yellow-deep);
}
.ph--ink {
  background:
    repeating-linear-gradient(
      135deg,
      var(--ink-2) 0px,
      var(--ink-2) 12px,
      var(--ink) 12px,
      var(--ink) 13px
    );
  border-color: var(--ink);
  color: var(--paper);
}
.ph--ink .ph__label { background: var(--ink); color: var(--paper); border-color: var(--ink-soft); }

/* Photo (real image) */
.photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-warm);
}
.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo--tint::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,18,38,0.6) 100%);
  pointer-events: none;
}
.photo__caption {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  z-index: 1;
}

/* ========== Cards ========== */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.card--dark p, .card--dark h3, .card--dark h4 { color: var(--paper); }
.card--yellow { background: var(--yellow); border-color: var(--yellow-deep); }
.card--blue { background: var(--blue); color: var(--paper); border-color: var(--blue); }
.card--blue p, .card--blue h3, .card--blue h4 { color: var(--paper); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  color: var(--ink);
  white-space: nowrap;
}
.tag--yellow { background: var(--yellow); border-color: var(--yellow-deep); }
.tag--blue { background: var(--blue-soft); border-color: var(--blue); color: var(--blue-deep); }
.tag--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ========== Animations / reveals ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.6,.2,1), transform 0.7s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }
.reveal[data-d="6"] { transition-delay: 0.48s; }

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ========== Hero ========== */
.hero {
  padding: 160px 0 0;
  position: relative;
  overflow: hidden;
}
.hero__top { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.hero__title {
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-wrap: balance;
}
.hero__blob {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: var(--yellow);
  filter: blur(0);
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}
.hero__blob--1 { top: -100px; right: -120px; }
.hero__blob--2 { bottom: -180px; left: -180px; width: 380px; height: 380px; background: var(--blue); opacity: 0.08; }

.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) { .hero__meta { grid-template-columns: repeat(4, 1fr); } }
.hero__meta-item .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__meta-item .lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ========== Audiences grid ========== */
.aud-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.aud-tab {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}
.aud-tab.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.aud-tab:hover:not(.is-active) { background: var(--paper); border-color: var(--ink-soft); }

.aud-panel { display: none; }
.aud-panel.is-active { display: grid; }

/* ========== How it works / steps ========== */
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 0.9;
  color: var(--blue);
  min-width: 80px;
}
.step__num em { font-style: normal; color: var(--ink-soft); font-size: 18px; display: block; }
.step__body h3 { margin-bottom: 8px; }

/* ========== Footer ========== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,241,232,0.5);
  margin: 0 0 18px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(244,241,232,0.85);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,241,232,0.12);
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244,241,232,0.55);
}
.footer-mega {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(244,241,232,0.04);
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}

/* ========== Section header ========== */
.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 900px) { .section-head { grid-template-columns: 1.2fr 1fr; align-items: end; } }

/* ========== Logo strip ========== */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) { .logo-strip { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .logo-strip { grid-template-columns: repeat(6, 1fr); } }
.logo-strip__item {
  padding: 32px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
}
.logo-strip__item:last-child { border-right: 0; }
@media (max-width: 700px) {
  .logo-strip__item:nth-child(even) { border-right: 0; }
  .logo-strip__item:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
}

/* ========== Decorative bits ========== */
.ribbon {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ribbon__track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.ribbon__track span { display: inline-flex; align-items: center; gap: 40px; }
.ribbon__track span::after { content: "★"; color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

.bullet {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.bullet__check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bullet__check svg { width: 14px; height: 14px; color: var(--ink); }
.bullet h4 { margin: 0 0 4px; }
.bullet p { color: var(--ink-soft); margin: 0; font-size: 16px; }

/* ========== Tweaks panel ========== */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  font-family: var(--font-body);
  display: none;
}
.tweaks-panel.is-open { display: block; }
.tweaks-panel h6 {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tweaks-panel__row { margin-bottom: 14px; }
.tweaks-panel__row > label { display: block; font-size: 13px; margin-bottom: 8px; color: var(--ink-soft); }
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s;
}
.swatch:hover { transform: scale(1.1); }
.swatch.is-on { border-color: var(--ink); }
.tweaks-panel__close {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========== Forms ========== */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  font: inherit;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
}

/* ========== Misc ========== */
.divider {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }


/* ========== MOBILE RESPONSIVE — max-width 768px ========== */
@media (max-width: 768px) {

  /* --- Header & Nav --- */
  .site-header {
    padding: 0 16px;
  }
  .site-header__inner {
    height: 64px;
    gap: 12px;
  }
  .nav {
    display: none !important;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 24px 20px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav.is-open {
    display: flex !important;
  }
  .nav a {
    font-size: 17px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: block;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .header-cta .btn--ghost {
    display: none;
  }
  .header-cta .btn--primary {
    padding: 10px 16px;
    font-size: 13px;
  }
  .login-menu {
    display: none !important;
  }

  /* --- Hero --- */
  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 48px) !important;
    line-height: 1.15;
  }
  .hero__eyebrow {
    font-size: 10px;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .hero__cta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero__meta {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    margin-top: 40px;
  }
  .hero__ball {
    display: none;
  }
  .hero__scroll {
    display: none;
  }

  /* --- Sections --- */
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* --- Section Head / Title --- */
  .section-head {
    grid-template-columns: 1fr !important;
    gap: 16px;
    align-items: start;
  }
  .section-head h2 {
    font-size: clamp(28px, 7vw, 40px) !important;
  }

  /* --- Split Layouts --- */
  .split--2 {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .split {
    grid-template-columns: 1fr !important;
  }

  /* --- Cards Grid --- */
  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .card {
    padding: 24px 20px;
  }

  /* --- Photo / Image --- */
  .photo {
    aspect-ratio: 4/3 !important;
    margin-top: 32px;
  }

  /* --- Process / Steps --- */
  .process-grid {
    grid-template-columns: 1fr !important;
  }
  .step {
    padding: 20px;
  }

  /* --- Vagas / Jobs --- */
  #vagas-grid {
    grid-template-columns: 1fr !important;
  }
  .vaga-card {
    padding: 20px;
  }
  .vaga-card__footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .vagas-search {
    flex-direction: column;
    gap: 8px;
  }
  .vagas-search input {
    width: 100%;
  }
  .vagas-search .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Tabs (perfis) --- */
  .tabs {
    flex-direction: column;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .tab {
    font-size: 13px;
    padding: 10px 16px;
    white-space: nowrap;
  }
  .tabs-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* --- CTA Section --- */
  .cta-box {
    padding: 40px 24px;
    text-align: center;
  }
  .cta-box h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
  }
  .cta-box__actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .cta-box__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .footer-col h5 {
    margin-bottom: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* --- Manifesto / Text sections --- */
  .manifesto-text {
    font-size: clamp(16px, 4vw, 20px);
  }

  /* --- Numbers section --- */
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }
  .number-item h3 {
    font-size: clamp(32px, 9vw, 48px);
  }

  /* --- Logo Strip --- */
  .logo-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* --- General typography --- */
  h2 {
    font-size: clamp(26px, 7vw, 40px);
  }
  h3 {
    font-size: clamp(20px, 5vw, 28px);
  }
  .tag {
    font-size: 10px;
  }
  .btn {
    font-size: 14px;
  }
  .btn--lg {
    padding: 16px 24px;
    font-size: 15px;
  }
}

/* ========== SMALL PHONES — max-width 480px ========== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(28px, 8vw, 40px) !important;
  }
  .hero__meta {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* === Mobile toggle: mover para a esquerda === */
@media (max-width: 1099px) {
  .mobile-toggle { order: -1; }
}
