/* Jobfy — design system */
:root {
  color-scheme: dark;
  --bg: #071723;
  --bg-2: #0a1f2e;
  --panel: #0e2636;
  --line: rgba(255, 255, 255, 0.09);
  --ink: #eef7f6;
  --muted: #9fb6bf;
  --brand: #1fd8a4;
  --brand-ink: #04241b;
  --light: #f4f7f8;
  --light-ink: #10222c;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  font-family: Inter, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 15%, rgba(31, 216, 164, 0.14), transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(59, 130, 246, 0.10), transparent 40%),
    radial-gradient(circle at 50% 110%, rgba(20, 184, 166, 0.12), transparent 50%),
    var(--bg);
}

.container { width: min(1140px, 92%); margin: auto; }

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
}
.logo { font-size: 28px; font-weight: 800; letter-spacing: -1px; color: var(--ink); text-decoration: none; }
.logo span { color: var(--brand); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.lang-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-family: inherit;
}
.lang { position: relative; }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  list-style: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  z-index: 50;
}
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: 9px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}
.lang-menu button:hover { background: rgba(255, 255, 255, 0.06); }
.lang-menu button.active { color: var(--brand); font-weight: 700; }
.flag { width: 20px; height: 14px; border-radius: 3px; flex-shrink: 0; display: block; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary { background: var(--brand); color: var(--brand-ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(31, 216, 164, 0.35); }
.btn-ghost { border: 1px solid rgba(31, 216, 164, 0.5); color: var(--brand); background: transparent; }
.btn-ghost:hover { background: rgba(31, 216, 164, 0.08); }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }

/* Hero */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 60px 0 80px; }
h1 { font-size: clamp(40px, 5.5vw, 62px); line-height: 1.05; letter-spacing: -2.5px; font-weight: 800; }
h1 .accent { color: var(--brand); }
.lede { color: var(--muted); font-size: 19px; margin-top: 22px; max-width: 46ch; }
.checks { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.checks li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.checks li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(31, 216, 164, 0.15);
  color: var(--brand);
  font-size: 13px;
  flex-shrink: 0;
}
.hero-cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* Cards / panels */
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

/* Phone mockup */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  width: min(320px, 100%);
  background: #0b0f14;
  border: 10px solid #1a222c;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.phone-top { background: #101820; color: #d7e3e1; padding: 14px 16px 12px; font-size: 13px; }
.phone-contact { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-weight: 600; font-size: 14px; }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: var(--brand-ink); display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.verified { color: var(--brand); font-size: 12px; }
.chat { background: #0d1a14; padding: 18px 14px 24px; display: flex; flex-direction: column; gap: 10px; min-height: 320px; }
.bubble { padding: 10px 14px; border-radius: 14px; max-width: 85%; font-size: 13.5px; line-height: 1.45; }
.bubble.in { background: #16242e; color: #e5f0ef; border-bottom-left-radius: 4px; }
.bubble.out { background: #1f5c4a; color: #e7fff6; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble .time { display: block; font-size: 10px; opacity: 0.55; text-align: right; margin-top: 3px; }
.qr-badge {
  position: absolute;
  right: -8px;
  bottom: 24px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 50px rgba(31, 216, 164, 0.4);
}
.qr-badge svg { width: 58px; height: 58px; background: #fff; border-radius: 8px; padding: 5px; }

/* Light features strip */
.strip {
  background: var(--light);
  color: var(--light-ink);
  border-radius: 22px;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin: 20px 0 70px;
}
.strip-item h3 { font-size: 16px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.strip-item p { font-size: 14px; color: #51626c; }
.strip-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(31, 216, 164, 0.14); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }

/* Stats band */
.stats { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 32px; align-items: center; padding: 50px 0 70px; border-top: 1px solid var(--line); }
.stats h2 { font-size: 30px; letter-spacing: -1px; line-height: 1.2; }
.stats h2 .accent { color: var(--brand); }
.stat b { font-size: 34px; color: var(--brand); display: block; letter-spacing: -1px; }
.stat span { color: var(--muted); font-size: 14px; }

/* Sections */
section { padding: 70px 0; }
.kicker { color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 12.5px; }
h2.title { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -1.5px; margin: 10px 0 14px; }
.sub { color: var(--muted); max-width: 60ch; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 40px; }
.tile { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.tile .price-anchor { margin-top: auto; }
.tile h3 { font-size: 17px; margin-bottom: 8px; }
.tile p, .tile li { color: var(--muted); font-size: 14.5px; }
.tile ul { list-style: none; display: grid; gap: 8px; margin-top: 10px; }
.tile ul li::before { content: '•'; color: var(--brand); margin-right: 8px; }
.step-num { font-size: 13px; font-weight: 800; color: var(--brand); letter-spacing: 0.1em; margin-bottom: 10px; display: block; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 40px; align-items: start; }
.price-card { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 30px; position: relative; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), 0 20px 60px rgba(31, 216, 164, 0.12); }
.badge { position: absolute; top: -12px; right: 20px; background: var(--brand); color: var(--brand-ink); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.05em; }
.price-card h3 { font-size: 18px; }
.price { font-size: 34px; font-weight: 800; letter-spacing: -1px; margin: 12px 0 4px; }
.price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card ul { list-style: none; margin: 18px 0 24px; display: grid; gap: 10px; }
.price-card li { color: var(--muted); font-size: 14.5px; display: flex; gap: 10px; }
.price-card li::before { content: '✓'; color: var(--brand); font-weight: 700; }

/* Forms */
.form-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
input, select {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  outline: none;
  min-width: 0;
}
input:focus, select:focus, textarea:focus { border-color: var(--brand); }
select option { background: var(--panel); color: var(--ink); }
textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  outline: none;
  resize: vertical;
  min-height: 72px;
}
textarea::placeholder { color: #6d838d; }
input::placeholder { color: #6d838d; }
.form-msg { margin-top: 14px; font-size: 14px; min-height: 20px; }
.form-msg.ok { color: var(--brand); }
.form-msg.err { color: #ff8f8f; }

/* CTA band */
.cta-band { text-align: center; background: linear-gradient(135deg, rgba(31, 216, 164, 0.12), rgba(59, 130, 246, 0.08)); border: 1px solid var(--line); border-radius: 24px; padding: 60px 30px; margin: 40px 0; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 50px 0 40px; margin-top: 60px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.foot-grid h4 { font-size: 14px; margin-bottom: 14px; }
.foot-grid a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 9px; }
.foot-grid a:hover { color: var(--ink); }
.tagline { color: var(--muted); font-size: 14px; margin-top: 10px; }
.copyright { color: #5f7680; font-size: 13px; margin-top: 40px; text-align: center; }
.foot-grid button.link {
  display: block;
  background: none;
  border: none;
  padding: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 9px;
  cursor: pointer;
  text-align: left;
}
.foot-grid button.link:hover { color: var(--ink); }

/* Redes sociais */
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.socials a:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }

/* Formulário de contato do rodapé */
.foot-form { display: grid; gap: 10px; }
.foot-form input { padding: 10px 12px; font-size: 14px; border-radius: 10px; }
.foot-form .btn { padding: 11px 16px; font-size: 14px; border-radius: 10px; }

/* Painel administrativo */
.auth-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 78vh;
  padding: 20px 0;
}
.auth-stats { display: flex; gap: 34px; margin-top: 34px; }
.auth-stats .stat b { font-size: 26px; }
.link-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 13.5px;
  cursor: pointer;
  text-align: center;
  padding: 2px;
}
.link-btn:hover { color: var(--brand); }
.code-input { text-align: center; font-size: 26px; letter-spacing: 10px; font-weight: 700; }
@media (max-width: 960px) {
  .auth-split { grid-template-columns: 1fr; gap: 36px; min-height: 0; }
  .auth-stats { gap: 24px; }
}
.tabs { display: flex; gap: 8px; margin-bottom: 22px; }
.tab {
  flex: 1;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
}
.tab.active { background: rgba(31, 216, 164, 0.12); border-color: var(--brand); color: var(--brand); }
.auth-form { display: grid; gap: 14px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin: 30px 0 26px; }
.job-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 14px;
}
.job-row h3 { font-size: 17px; }
.job-meta { color: var(--muted); font-size: 13.5px; margin-top: 4px; }
.job-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.job-stats span { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.job-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.job-actions .btn { padding: 9px 14px; font-size: 13px; border-radius: 9px; }
.chip { font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; padding: 4px 10px; border-radius: 999px; vertical-align: 2px; margin-left: 10px; }
.chip.open { background: rgba(31, 216, 164, 0.14); color: var(--brand); }
.chip.closed { background: rgba(255, 143, 143, 0.14); color: #ff8f8f; }
.qr-holder { display: inline-block; background: #fff; border-radius: 14px; padding: 10px; }
.qr-holder svg { width: 220px; height: 220px; display: block; }
@media (max-width: 700px) { .job-grid { grid-template-columns: 1fr; } }

/* Identidade da empresa no topo */
.nav-links { flex-wrap: wrap; justify-content: flex-end; }
.co-badge { display: flex; align-items: center; gap: 11px; margin-right: 4px; }
.co-avatar {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), #12b98a);
  color: var(--brand-ink);
  display: grid; place-items: center;
  font-weight: 800; font-size: 17px; flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(31, 216, 164, 0.28);
}
.co-name {
  font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.4px;
  max-width: 32ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.icon-btn .icon-btn-ico { display: none; }

/* Campo de senha com botão de revelar */
.pw-field { position: relative; display: flex; }
.pw-field input { width: 100%; padding-right: 48px; }
.pw-toggle {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 17px; line-height: 1;
  padding: 6px 9px; color: var(--muted); border-radius: 8px;
}
.pw-toggle:hover { background: rgba(255, 255, 255, 0.06); }

/* Botão de ação destrutiva */
.btn-danger { background: #ff8f8f; color: #3a0d0d; }
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 143, 143, 0.3); }

/* Linha do tempo da verificação */
.verify-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.verify-badge {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 20px;
  background: rgba(255, 200, 87, 0.12); border: 1px solid rgba(255, 200, 87, 0.3);
}
.verify-steps { list-style: none; display: grid; gap: 0; margin: 4px 0 18px; }
.vstep { display: flex; gap: 14px; align-items: flex-start; position: relative; padding-bottom: 20px; }
.vstep:last-child { padding-bottom: 0; }
.vstep:not(:last-child)::before {
  content: ''; position: absolute; left: 13px; top: 28px; bottom: 0;
  width: 2px; background: var(--line);
}
.vstep.done:not(:last-child)::before { background: rgba(31, 216, 164, 0.4); }
.vdot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; z-index: 1;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
  border: 2px solid var(--line); background: var(--panel); color: var(--muted);
}
.vstep.done .vdot { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.vstep.current .vdot { border-color: var(--brand); color: var(--brand); }
.vstep.error .vdot { border-color: #ff8f8f; color: #ff8f8f; }
.vstep b { font-size: 14.5px; display: block; line-height: 1.4; }
.vstep small { color: var(--muted); font-size: 13px; display: block; }
.vstep.pending b { color: var(--muted); }
.vstep.current b { color: var(--brand); }

/* Toast flutuante */
.toast {
  position: fixed; left: 50%; bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  background: var(--panel); border: 1px solid rgba(31, 216, 164, 0.5); color: var(--ink);
  padding: 13px 20px; border-radius: 12px; font-size: 14px; font-weight: 600;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5); z-index: 200;
  max-width: min(92vw, 460px); word-break: break-all;
  opacity: 0; transition: opacity 0.2s, transform 0.2s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.err { border-color: #ff8f8f; }

@media (max-width: 700px) {
  nav { gap: 12px; }
  .nav-links { gap: 10px; }
  .co-avatar { width: 34px; height: 34px; font-size: 15px; }
  .co-name { font-size: 15.5px; max-width: 46vw; }
  /* Botões de senha/sair viram ícones para não ocupar a barra toda */
  .icon-btn { padding: 9px 11px; }
  .icon-btn .icon-btn-ico { display: inline; font-size: 15px; }
  .icon-btn .icon-btn-label { display: none; }
}

/* Cartaz de impressão */
#poster { display: none; }
@media print {
  body > .container, dialog { display: none !important; }
  body { background: #fff !important; }
  body::before { display: none !important; }
  #poster { display: block !important; color: #10222c; }
  .poster-inner { text-align: center; padding: 40px 20px; }
  .poster-hiring { font-size: 20px; font-weight: 800; letter-spacing: 0.25em; color: #10222c; }
  #poster-title { font-size: 52px; letter-spacing: -1px; margin: 18px 0 6px; color: #071723; }
  #poster-company { font-size: 22px; color: #51626c; margin-bottom: 4px; }
  #poster-meta { font-size: 17px; color: #51626c; margin-bottom: 28px; }
  #poster-qr svg { width: 340px; height: 340px; }
  .poster-cta { font-size: 18px; line-height: 1.5; margin-top: 28px; color: #10222c; }
  .poster-brand { margin-top: 34px; font-weight: 800; color: #51626c; }
}

/* Scrollbars discretas no tema escuro */
html { scrollbar-color: #22384a transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #22384a; border-radius: 99px; border: 2px solid var(--bg); }
::-webkit-scrollbar-track { background: transparent; }

/* Modais (Privacidade / Termos) */
dialog {
  margin: auto; /* o reset global zera margens; sem isto o <dialog> abre no canto */
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0;
  width: min(680px, 92vw);
  max-height: 84vh;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
dialog::backdrop { background: rgba(3, 10, 15, 0.72); backdrop-filter: blur(3px); }
.dlg-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
}
.dlg-head h2 { font-size: 19px; letter-spacing: -0.5px; }
.dlg-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.dlg-close:hover { color: var(--ink); }
.dlg-body {
  padding: 20px 26px 30px;
  overflow-y: auto;
  max-height: calc(84vh - 72px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}
.dlg-body::-webkit-scrollbar { width: 7px; }
.dlg-body::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.14); border-radius: 99px; border: none; }
.dlg-body::-webkit-scrollbar-track { background: transparent; }
.dlg-body h3 { font-size: 15px; margin: 18px 0 6px; }
.dlg-body h3:first-child { margin-top: 0; }
.dlg-body p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 8px; }
.dlg-body .note { font-size: 12.5px; color: #5f7680; margin-top: 20px; font-style: italic; }

/* Login */
.login-wrap { min-height: 78vh; display: grid; place-items: center; }
.login-card { width: min(420px, 100%); }
.login-card h1 { font-size: 26px; letter-spacing: -1px; margin-bottom: 8px; }
.login-card p { color: var(--muted); font-size: 15px; }
.login-card form { display: grid; gap: 14px; margin-top: 24px; }

/* Teaser: nav + hero + footer travados em uma viewport (sem rolagem) */
.page-teaser { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; }
.teaser-hero { flex: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; align-content: center; padding: 10px 0; }
.page-teaser h1 { font-size: clamp(36px, 4.6vw, 54px); }
.page-teaser footer { margin-top: 0; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.page-teaser footer .tagline, .page-teaser footer .copyright { margin: 0; font-size: 13px; }

@media (max-width: 960px) {
  .hero, .teaser-hero { grid-template-columns: 1fr; gap: 44px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .qr-badge { right: 4px; width: 120px; height: 120px; }
  .qr-badge svg { width: 44px; height: 44px; }
}

/* Builder de perguntas configuráveis (painel da empresa) */
.q-builder { display: grid; gap: 12px; }
.q-builder-head b { font-size: 14.5px; }
.q-builder-head p { color: #6d838d; font-size: 12.5px; margin-top: 2px; }
#q-list { display: grid; gap: 10px; }
.q-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  display: grid;
  gap: 10px;
}
.q-item-head { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.q-item-head .q-num { color: var(--brand); font-weight: 800; font-size: 13px; min-width: 22px; }
.q-item-head select { flex: 1; min-width: 160px; padding: 9px 12px; font-size: 13.5px; }
.q-item-head .q-move, .q-item-head .q-del {
  background: none; border: 1px solid var(--line); border-radius: 8px;
  color: var(--muted); cursor: pointer; padding: 6px 9px; font-size: 13px; line-height: 1;
}
.q-item-head .q-move:hover, .q-item-head .q-del:hover { color: var(--ink); border-color: rgba(255,255,255,.25); }
.q-item-head .q-del:hover { color: #ff8f8f; }
.q-config { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.q-config input[type="number"], .q-config input[type="url"], .q-config input[type="text"] { padding: 9px 12px; font-size: 13.5px; }
.q-config input[type="number"] { width: 130px; }
.q-config select { padding: 9px 12px; font-size: 13.5px; }
.q-config textarea { min-height: 70px; font-size: 13.5px; width: 100%; }
.q-config .q-check { display: flex; gap: 7px; align-items: center; color: var(--muted); font-size: 13px; cursor: pointer; }
.q-config .q-check input { accent-color: var(--brand); width: 15px; height: 15px; }
.q-type-hint { color: #6d838d; font-size: 12px; width: 100%; }

/* Modal de candidatos */
.dlg-wide { width: min(760px, 94vw); }
.app-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.app-card-head { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; flex-wrap: wrap; margin-bottom: 8px; }
.app-card-head b { font-size: 15px; }
.app-card-head .app-meta { color: #6d838d; font-size: 12.5px; }
.app-answers { display: grid; gap: 7px; }
.app-answer { font-size: 13.5px; }
.app-answer .aq { color: var(--muted); }
.app-answer .av { color: var(--ink); }
.app-answer a { color: var(--brand); }
