/* =============================================================
   QW Solutions Recrutamento — public.css
   ============================================================= */

:root {
  --bronze: #C2410C;
  --bronze-deep: #9A2F08;
  --magenta: #BE185D;
  --orange: #F97316;
  --amber: #FBBF24;
  --ink: #1A1410;
  --ink-soft: #5C4A3E;
  --ink-mute: #8A7868;
  --paper: #FFF8F1;
  --paper-warm: #FEF3E7;
  --paper-warm2: #FDE6D0;
  --line: #EADCC4;
  --line-strong: #D9C4A3;
  --grad-cta: linear-gradient(135deg, #F97316 0%, #C2410C 50%, #BE185D 100%);
  --grad-soft: linear-gradient(135deg, #FEF3E7 0%, #FDE6D0 100%);
  --shadow-sm: 0 1px 3px rgba(26,20,16,.04);
  --shadow-md: 0 8px 24px -8px rgba(194,65,12,.18);
  --shadow-lg: 0 24px 60px -20px rgba(190,24,93,.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(251,191,36,.10) 0%, transparent 40%),
    radial-gradient(circle at 92% 5%, rgba(190,24,93,.08) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

a { color: var(--bronze); text-decoration: none; }
a:hover { color: var(--bronze-deep); }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------- HEADER ----------- */
.site-header {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,248,241,.85);
  backdrop-filter: blur(10px);
  position: sticky; top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-sep {
  width: 1px;
  height: 24px;
  background: var(--line-strong);
}
.brand-sub {
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-cta);
  display: grid; place-items: center;
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.02em;
  box-shadow: var(--shadow-md);
}
.brand-mark.sm { width: 32px; height: 32px; font-size: 13px; border-radius: 8px; }

.brand-logo {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
}
.brand-logo.sm { height: 28px; }
.brand-logo.lg { height: 56px; }
.brand-text strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand-text span {
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.btn-ghost {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: white;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
}
.btn-ghost:hover {
  border-color: var(--bronze);
  color: var(--bronze);
  transform: translateY(-1px);
}

/* ----------- HERO ----------- */
.hero {
  padding: 64px 24px 80px;
  position: relative;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 48px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.hero-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hero-card-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.hero-card-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-card-desc {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--grad-cta);
  color: white;
  font-weight: 700;
  font-size: 17px;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  transition: transform .2s, box-shadow .2s;
}
.cta-main:hover {
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 32px 70px -22px rgba(190,24,93,.45);
}
.cta-arrow { transition: transform .2s; }
.cta-main:hover .cta-arrow { transform: translateX(4px); }
.cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ----------- SECTION TITLE ----------- */
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
}

/* ----------- HOW ----------- */
.how {
  padding: 64px 0;
  background: var(--grad-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.how-card {
  background: white;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.how-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.how-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.how-card p { color: var(--ink-soft); font-size: 15px; }

/* ----------- PROFILE ----------- */
.profile {
  padding: 80px 0;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-yes, .profile-no {
  background: white;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.profile-yes h3, .profile-no h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  margin-bottom: 16px;
}
.profile-yes h3 { color: #047857; }
.profile-no h3 { color: var(--bronze-deep); }
.profile-yes ul, .profile-no ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.profile-yes li, .profile-no li {
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
}
.profile-yes li::before {
  content: '✓';
  position: absolute; left: 0;
  color: #10B981;
  font-weight: 700;
}
.profile-no li::before {
  content: '×';
  position: absolute; left: 0;
  color: var(--bronze);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

/* ----------- FORM ----------- */
.form-section {
  padding: 80px 0 100px;
  background: var(--grad-soft);
  border-top: 1px solid var(--line);
}
.form-head {
  text-align: center;
  margin-bottom: 40px;
}
.form-pill {
  display: inline-block;
  padding: 6px 14px;
  background: white;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bronze);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}
.form-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.form-head p {
  color: var(--ink-soft);
  font-size: 16px;
}

.multi-form {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
}
@media (max-width: 600px) { .multi-form { padding: 28px 22px; } }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* progress */
.form-progress {
  margin-bottom: 36px;
}
.form-progress-bar {
  height: 4px;
  background: var(--line);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.form-progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--grad-cta);
  border-radius: 100px;
  width: var(--progress, 25%);
  transition: width .35s ease;
}
.form-progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 6px;
}
.form-progress-steps span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: .04em;
}
.form-progress-steps span.active {
  color: var(--bronze);
}
@media (max-width: 600px) {
  .form-progress-steps span { font-size: 9px; }
}

/* steps */
.form-step {
  border: none;
  display: none;
  animation: fadeIn .3s ease;
}
.form-step.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.form-step legend {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.field { margin-bottom: 20px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; gap: 0; } .field-row .field { margin-bottom: 20px; } }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field label .hint {
  font-weight: 400;
  color: var(--ink-mute);
  font-size: 12px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: white;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.18);
}
.field textarea { resize: vertical; min-height: 100px; }

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}

/* radio cards */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) { .radio-grid { grid-template-columns: 1fr; } }
.radio-card, .check-card {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  background: white;
  transition: all .15s;
  position: relative;
}
.radio-card input, .check-card input {
  position: absolute; opacity: 0; pointer-events: none;
}
.radio-card span, .check-card span {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
}
.radio-card span strong, .check-card span strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.radio-card:hover, .check-card:hover {
  border-color: var(--orange);
  background: var(--paper-warm);
}
.radio-card:has(input:checked),
.check-card:has(input:checked) {
  border-color: var(--bronze);
  background: var(--paper-warm);
  box-shadow: 0 0 0 2px rgba(194,65,12,.15);
}

/* check grid */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}

/* radio inline (sim/não) */
.radio-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.radio-inline label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  background: white;
  transition: all .15s;
}
.radio-inline label:hover { border-color: var(--orange); }
.radio-inline label:has(input:checked) {
  background: var(--paper-warm);
  border-color: var(--bronze);
  color: var(--bronze-deep);
  font-weight: 600;
}

/* consent */
.consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
}
.consent input { margin-top: 3px; flex-shrink: 0; }

/* nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}
.btn-prev, .btn-next, .btn-submit {
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn-prev {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-prev:hover { border-color: var(--bronze); color: var(--bronze); }
.btn-next, .btn-submit {
  background: var(--grad-cta);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-next:hover, .btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(190,24,93,.4);
}
.btn-submit { padding: 14px 28px; font-size: 15px; }

/* confirm */
.confirm-box {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 22px;
  font-size: 14px;
}
.confirm-box dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
}
.confirm-box dt {
  color: var(--ink-mute);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
}
.confirm-box dd { color: var(--ink); }
.confirm-empty { color: var(--ink-mute); font-style: italic; }

/* ----------- RESULT PAGES ----------- */
.result-section {
  padding: 100px 0;
  text-align: center;
}
.result-section.result-soft { background: var(--paper-warm); }
.result-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: grid; place-items: center;
  color: white;
  font-size: 36px;
  box-shadow: var(--shadow-lg);
}
.result-icon.soft {
  background: var(--paper-warm2);
  color: var(--bronze);
}
.result-pill {
  display: inline-block;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bronze);
  margin-bottom: 16px;
}
.result-pill.soft { color: var(--ink-mute); }
.result-section h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 20px;
  font-weight: 700;
}
.result-section h1 em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.result-text {
  max-width: 560px;
  margin: 0 auto 16px;
  color: var(--ink-soft);
  font-size: 16px;
}
.result-text strong { color: var(--ink); font-weight: 600; }

.result-cards {
  max-width: 800px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}
.result-cards.two {
  grid-template-columns: 1fr 1fr;
  max-width: 720px;
}
@media (max-width: 600px) {
  .result-cards.two { grid-template-columns: 1fr; }
}
.result-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.result-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.result-card strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  margin-bottom: 4px;
}
.result-card span { color: var(--ink-mute); font-size: 14px; }

.result-meta {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-mute);
}

.product-links {
  max-width: 800px;
  margin: 48px auto 0;
}
.product-links-intro {
  font-size: 14px;
  color: var(--ink-mute);
  text-align: center;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  text-align: left;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.product-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.product-card strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-card span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.product-card .product-url {
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--bronze);
  font-weight: 600;
}
.result-meta-card {
  max-width: 560px;
  margin: 36px auto 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
  text-align: left;
}
.result-meta-card strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  margin-bottom: 6px;
}
.result-meta-card p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 12px;
}
.btn-link {
  display: inline-block;
  font-weight: 600;
  color: var(--bronze);
}
.btn-link:hover { color: var(--bronze-deep); }

/* ----------- FOOTER ----------- */
.site-foot {
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
  background: white;
  margin-top: 40px;
}
.foot-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-mute);
}
.foot-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
}
.foot-copy {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) {
  .foot-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* =============================================================
   RESPONSIVE — overrides para tablet e mobile
   ============================================================= */

/* ---------- Tablet landscape (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .hero { padding: 56px 20px 64px; }
  .how { padding: 56px 0; }
  .profile { padding: 64px 0; }
  .form-section { padding: 64px 0 80px; }
}

/* ---------- Tablet portrait (≤ 768px) ---------- */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }

  /* Header */
  .header-inner {
    padding: 0 18px;
    gap: 12px;
  }
  .brand { gap: 10px; }
  .brand-logo { height: 30px; }
  .brand-sep { height: 18px; }
  .brand-sub { font-size: 10px; letter-spacing: .08em; }
  .btn-ghost { padding: 8px 14px; font-size: 13px; }

  /* Hero */
  .hero { padding: 44px 18px 56px; }
  .hero h1 { font-size: clamp(34px, 8vw, 48px); margin-bottom: 16px; }
  .hero-sub { font-size: 16px; margin-bottom: 36px; }
  .hero-cards { gap: 12px; margin-bottom: 32px; }
  .hero-card { padding: 20px 16px; }
  .hero-card-num { font-size: 36px; }
  .cta-main { padding: 16px 28px; font-size: 16px; }

  /* Section titles */
  .section-title { font-size: clamp(26px, 5vw, 34px); margin-bottom: 32px; }

  /* How */
  .how { padding: 48px 0; }
  .how-grid { gap: 14px; }
  .how-card { padding: 22px 20px; }
  .how-card h3 { font-size: 18px; }
  .how-card p { font-size: 14px; }

  /* Profile (sim/não) — colunas 1+1 mas mais apertadas */
  .profile { padding: 48px 0; }
  .profile-grid { gap: 16px; }
  .profile-yes, .profile-no { padding: 24px 22px; }
  .profile-yes h3, .profile-no h3 { font-size: 19px; }

  /* Form */
  .form-section { padding: 48px 0 64px; }
  .form-head { margin-bottom: 28px; }
  .form-head h2 { font-size: clamp(24px, 5vw, 32px); }
  .form-head p { font-size: 15px; }
  .multi-form { padding: 28px 22px; border-radius: 16px; }
  .form-step legend { font-size: 16px; margin-bottom: 18px; }
  .form-progress { margin-bottom: 26px; }

  /* Result pages */
  .result-section { padding: 64px 0; }
  .result-icon { width: 64px; height: 64px; font-size: 28px; margin-bottom: 18px; }
  .result-text { font-size: 15px; }
  .result-cards { margin: 32px auto; gap: 12px; }
  .result-card { padding: 18px 20px; }

  /* Product cards (obrigado.php) */
  .product-links { margin-top: 36px; }
  .product-card { padding: 18px 20px; }
  .product-card strong { font-size: 20px; }
}

/* ---------- Mobile (≤ 600px) ---------- */
@media (max-width: 600px) {
  /* Header — simplifica bastante: logo só, sem sub */
  .brand-sep { display: none; }
  .brand-sub { display: none; }

  /* Hero */
  .hero { padding: 32px 16px 48px; }
  .hero-pill { font-size: 10px; padding: 5px 10px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(30px, 9vw, 42px); }
  .hero-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto; margin-right: auto;
  }
  .cta-main {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
  }
  .cta-note { font-size: 12px; }

  /* Form */
  .container { padding: 0 16px; }
  .multi-form { padding: 22px 18px; }
  .form-progress-steps span { font-size: 9px; letter-spacing: .02em; }
  .form-progress-steps span::before { content: ''; }
  /* Ocultar texto descritivo nos passos da barra de progresso, só números */
  .form-progress-steps span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 70px; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin-bottom: 18px; }
  .radio-grid { grid-template-columns: 1fr; gap: 8px; }
  .radio-card, .check-card { padding: 12px 14px; }
  .check-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .check-card span { font-size: 13px; }

  /* Form nav buttons full-width */
  .form-nav { flex-direction: column-reverse; gap: 10px; }
  .form-nav .btn-prev,
  .form-nav .btn-next,
  .form-nav .btn-submit { width: 100%; padding: 14px 20px; }

  /* Confirm box */
  .confirm-box { padding: 18px; }
  .confirm-box dl { grid-template-columns: 1fr; gap: 4px 0; }
  .confirm-box dt { margin-top: 8px; }

  /* Result */
  .result-section { padding: 48px 0; }
  .result-icon { width: 56px; height: 56px; font-size: 24px; }
  .result-section h1 { font-size: clamp(28px, 8vw, 36px); }
  .result-cards { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 10px; }
  .result-meta-card { padding: 20px 22px; }

  /* Footer */
  .foot-links { flex-direction: column; gap: 8px; }
}

/* ---------- Mobile pequeno (≤ 380px) ---------- */
@media (max-width: 380px) {
  .brand-logo { height: 26px; }
  .check-grid { grid-template-columns: 1fr; }
  .multi-form { padding: 20px 14px; }
  .hero h1 { font-size: 28px; }
}
