/* ═══════════════════════════════════════════════════════
   CZ Decor Quiz — Design System Luxury
   UI Pro Max: Elegant Serif + Liquid Glass effects
   Mobile-first, SVG icons, 44px+ touch targets
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── RESET ISOLADO ──────────────────────────────────── */
.czq-root *, .czq-root *::before, .czq-root *::after {
  box-sizing: border-box;
}
.czq-root button, .czq-root input, .czq-root a {
  font-family: inherit;
}

/* ── VARIÁVEIS ─────────────────────────────────────── */
.czq-root {
  --czq-gold:      #C9A96E;
  --czq-gold-lt:   #E8D5B0;
  --czq-gold-dk:   #A67C3C;
  --czq-brown:     #2D2016;
  --czq-taupe:     #8B7355;
  --czq-cream:     #FDFAF6;
  --czq-warm:      #F5EDE0;
  --czq-border:    rgba(201,169,110,0.25);
  --czq-border-hl: rgba(201,169,110,0.7);
  --czq-shadow-sm: 0 2px 8px rgba(45,32,22,0.06);
  --czq-shadow-md: 0 8px 32px rgba(45,32,22,0.1);
  --czq-shadow-lg: 0 20px 60px rgba(45,32,22,0.14);
  --czq-radius:    16px;
  --czq-radius-sm: 10px;
  --czq-ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);

  font-family: 'Jost', sans-serif;
  color: var(--czq-brown);
  -webkit-font-smoothing: antialiased;
}

/* ── WRAPPER ────────────────────────────────────────── */
.czq-root {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px 48px;
  background: transparent;
}

/* ── CARD ───────────────────────────────────────────── */
.czq-card {
  background: var(--czq-cream);
  border-radius: var(--czq-radius);
  box-shadow: var(--czq-shadow-lg);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--czq-border);
}

/* ── PROGRESS ───────────────────────────────────────── */
.czq-progress-wrap {
  height: 3px;
  background: var(--czq-warm);
  width: 100%;
}
.czq-progress-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--czq-gold-dk) 0%, var(--czq-gold) 100%);
  width: 0%;
  transition: width 0.5s var(--czq-ease);
}

/* Dots de progresso */
.czq-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 0;
}
.czq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--czq-gold-lt);
  transition: all 0.3s var(--czq-ease);
}
.czq-dot.czq-dot-active {
  background: var(--czq-gold);
  width: 20px;
  border-radius: 3px;
}
.czq-dot.czq-dot-done {
  background: var(--czq-gold);
}

/* ── STEPS ──────────────────────────────────────────── */
.czq-step {
  display: none;
  padding: 28px 24px 28px;
}
.czq-step.czq-active {
  display: block;
  animation: czqSlideIn 0.32s var(--czq-ease) both;
}
@keyframes czqSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes czqSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-16px); }
}
@media (prefers-reduced-motion: reduce) {
  .czq-step.czq-active { animation: none; }
}

/* ── INTRO ──────────────────────────────────────────── */
.czq-intro-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.czq-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--czq-gold-lt) 0%, var(--czq-warm) 100%);
  border: 1px solid var(--czq-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--czq-taupe);
}
.czq-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 6vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--czq-brown);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.czq-intro-title em {
  font-style: italic;
  color: var(--czq-gold-dk);
}
.czq-intro-sub {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--czq-taupe);
  margin: 0 0 22px;
}

/* Pills SEM emoji */
.czq-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.czq-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--czq-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--czq-taupe);
}
.czq-pill svg {
  flex-shrink: 0;
  color: var(--czq-gold);
}

/* Social proof */
.czq-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.czq-avatars {
  display: flex;
}
.czq-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--czq-cream);
  background: linear-gradient(135deg, var(--czq-gold-lt), var(--czq-warm));
  margin-left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--czq-taupe);
}
.czq-avatars .czq-avatar:first-child { margin-left: 0; }
.czq-social-text {
  font-size: 0.75rem;
  color: var(--czq-taupe);
  line-height: 1.4;
}
.czq-social-text strong {
  color: var(--czq-brown);
  font-weight: 500;
}

/* ── PERGUNTA ───────────────────────────────────────── */
.czq-q-header {
  margin-bottom: 20px;
}
.czq-step-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--czq-gold);
  margin-bottom: 8px;
}
.czq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 4.5vw, 1.5rem);
  font-weight: 500;
  color: var(--czq-brown);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ── OPÇÕES — single column mobile ─────────────────── */
.czq-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

/* 2 colunas apenas para opções simples (q2, q3) */
.czq-options.czq-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.czq-option {
  background: #fff;
  border: 1.5px solid var(--czq-border);
  border-radius: var(--czq-radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.22s var(--czq-ease);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.czq-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.czq-option:hover::before,
.czq-option.czq-selected::before { opacity: 1; }
.czq-option:hover {
  border-color: var(--czq-border-hl);
  box-shadow: var(--czq-shadow-sm);
  transform: translateY(-1px);
}
.czq-option.czq-selected {
  border-color: var(--czq-gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.18), var(--czq-shadow-sm);
  background: #fffcf6;
}

/* Ícone da opção — SVG */
.czq-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--czq-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease;
}
.czq-option.czq-selected .czq-option-icon {
  background: linear-gradient(135deg, var(--czq-gold-lt), var(--czq-warm));
}
.czq-option-icon svg {
  width: 18px;
  height: 18px;
  color: var(--czq-taupe);
  transition: color 0.22s ease;
}
.czq-option.czq-selected .czq-option-icon svg {
  color: var(--czq-gold-dk);
}

/* Para grid-2: ícone empilhado no topo */
.czq-options.czq-grid-2 .czq-option {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 80px;
  padding: 14px 12px;
}

.czq-option-text { flex: 1; min-width: 0; }
.czq-option-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--czq-brown);
  line-height: 1.3;
  display: block;
}
.czq-option-hint {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--czq-taupe);
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}

/* Check mark quando selecionado */
.czq-option-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--czq-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: all 0.22s ease;
}
.czq-option.czq-selected .czq-option-check {
  background: var(--czq-gold);
  border-color: var(--czq-gold);
}
.czq-option-check svg {
  width: 10px;
  height: 10px;
  color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.czq-option.czq-selected .czq-option-check svg { opacity: 1; }

/* No grid-2, sem check */
.czq-options.czq-grid-2 .czq-option-check { display: none; }

/* ── BOTÕES ─────────────────────────────────────────── */
.czq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--czq-radius-sm);
  cursor: pointer;
  transition: all 0.22s var(--czq-ease);
  text-decoration: none;
  padding: 13px 20px;
  min-height: 46px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.czq-btn-primary {
  background: var(--czq-brown);
  color: var(--czq-cream);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.czq-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.czq-btn-primary:hover::after { opacity: 1; }
.czq-btn-primary:hover {
  background: #3D2E1E;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,32,22,0.25);
}
.czq-btn-primary:disabled {
  background: #C4B8AD;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.czq-btn-primary:disabled::after { display: none; }

.czq-btn-gold {
  background: linear-gradient(135deg, var(--czq-gold-dk) 0%, var(--czq-gold) 100%);
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 16px rgba(166,124,60,0.3);
}
.czq-btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(166,124,60,0.4);
}

.czq-btn-wa {
  background: #22C55E;
  color: #fff;
  width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.czq-btn-wa:hover {
  background: #16A34A;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.3);
}
.czq-btn-outline {
  background: transparent;
  border: 1.5px solid var(--czq-border);
  color: var(--czq-taupe);
  flex: 1;
}
.czq-btn-outline:hover {
  border-color: var(--czq-gold);
  color: var(--czq-brown);
  background: rgba(201,169,110,0.06);
}
.czq-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* ── BACK ───────────────────────────────────────────── */
.czq-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--czq-taupe);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.2s ease;
  text-transform: uppercase;
}
.czq-back:hover { color: var(--czq-brown); }
.czq-back svg { transition: transform 0.2s ease; }
.czq-back:hover svg { transform: translateX(-2px); }

/* ── LEAD GATE ──────────────────────────────────────── */
.czq-lead-preview {
  background: linear-gradient(135deg, var(--czq-brown) 0%, #4A3828 100%);
  border-radius: var(--czq-radius-sm);
  padding: 18px 20px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.czq-lead-preview-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,169,110,0.2);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.czq-lead-preview-icon svg { color: var(--czq-gold); width: 22px; height: 22px; }
.czq-lead-preview-text { flex: 1; }
.czq-lead-preview-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 3px;
}
.czq-lead-preview-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
}

.czq-lead-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--czq-brown);
  margin: 0 0 6px;
}
.czq-lead-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--czq-taupe);
  margin: 0 0 22px;
  line-height: 1.6;
}

.czq-form { display: flex; flex-direction: column; gap: 14px; }
.czq-field { display: flex; flex-direction: column; gap: 5px; }
.czq-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--czq-taupe);
}
.czq-label span {
  color: #C4B5AA;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
.czq-input {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--czq-brown);
  background: #fff;
  border: 1.5px solid rgba(139,115,85,0.2);
  border-radius: var(--czq-radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  min-height: 50px;
}
.czq-input::placeholder { color: #C0B4A8; }
.czq-input:focus {
  border-color: var(--czq-gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.czq-input.czq-error {
  border-color: #E07070;
  box-shadow: 0 0 0 3px rgba(224,112,112,0.1);
}
.czq-error-msg {
  font-size: 0.72rem;
  color: #C0504D;
  display: none;
}
.czq-error-msg.czq-show { display: block; }
.czq-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.7rem;
  color: #B0A090;
  margin-top: 10px;
  line-height: 1.5;
}
.czq-privacy svg { flex-shrink: 0; color: #C4B5AA; }

/* ── RESULTADO ──────────────────────────────────────── */
.czq-result-header {
  background: linear-gradient(145deg, var(--czq-brown) 0%, #4A3828 50%, #2D2016 100%);
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.czq-result-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
}
.czq-result-header::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
}
.czq-result-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}
.czq-result-icon svg { color: var(--czq-gold); width: 26px; height: 26px; }
.czq-result-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.czq-result-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.czq-result-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
}

.czq-result-body {
  padding: 22px 24px 24px;
}
.czq-result-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: #6B5B4E;
  margin: 0 0 18px;
}

.czq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}
.czq-tag {
  background: var(--czq-warm);
  border: 1px solid var(--czq-border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--czq-taupe);
}

.czq-result-ctas { display: flex; flex-direction: column; gap: 10px; }

.czq-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C4B5AA;
}
.czq-divider::before, .czq-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--czq-border);
}

.czq-share-row {
  display: flex;
  gap: 10px;
}
.czq-share-row .czq-btn {
  flex: 1;
  white-space: nowrap;
  justify-content: center;
  padding: 11px 10px;
  font-size: 0.7rem;
}
.czq-reset {
  text-align: center;
  margin-top: 16px;
}
.czq-reset button {
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: #B0A090;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.2s ease;
}
.czq-reset button:hover { color: var(--czq-taupe); }

/* ── LOADING ────────────────────────────────────────── */
.czq-loading {
  display: none;
  text-align: center;
  padding: 14px 0 4px;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--czq-taupe);
}
.czq-loading.czq-show { display: flex; align-items: center; justify-content: center; gap: 8px; }
.czq-spinner {
  width: 16px; height: 16px;
  border: 2px solid var(--czq-gold-lt);
  border-top-color: var(--czq-gold);
  border-radius: 50%;
  animation: czqSpin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes czqSpin { to { transform: rotate(360deg); } }

/* ── TOAST ──────────────────────────────────────────── */
.czq-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--czq-brown);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 12px 22px;
  border-radius: 100px;
  opacity: 0;
  transition: all 0.3s var(--czq-ease);
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(45,32,22,0.3);
}
.czq-toast.czq-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── RESULTADO ANIMAÇÃO ─────────────────────────────── */
.czq-step[data-step="result"].czq-active {
  animation: czqResultIn 0.4s var(--czq-ease) both;
}
@keyframes czqResultIn {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── STEP BODY / FOOTER ──────────────────────────────── */
.czq-step-head {
  flex-shrink: 0;
  margin-bottom: 4px;
}
.czq-step-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.czq-step-footer {
  flex-shrink: 0;
  padding-top: 14px;
}

/* ── LOGO MOBILE (dentro do card) ───────────────────── */
.czq-card-logo {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 18px 0 10px;
  flex-shrink: 0;
}
.czq-card-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--czq-brown);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.czq-card-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--czq-taupe);
  display: block;
  margin-top: 1px;
}

/* ── RESULTADO: header sem margin negativa no mobile ── */
.czq-result-header-full {
  margin: 0;
  padding: 28px 24px 22px;
}

/* ── FULL SCREEN MOBILE ──────────────────────────────── */
@media (max-width: 599px) {
  .czq-root {
    padding: 0;
    min-height: 100svh;
    align-items: stretch;
  }
  .czq-card {
    border-radius: 0;
    min-height: 100svh;
    max-width: 100%;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
  }
  .czq-card-logo { display: flex; }
  .czq-progress-wrap { flex-shrink: 0; }
  /* Steps preenchem o espaço restante */
  .czq-step {
    padding: 16px 20px 20px;
    display: none;
  }
  .czq-step.czq-active {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  /* Resultado: não usa flex (scroll natural) */
  .czq-step[data-step="result"].czq-active {
    display: block;
  }
  /* Opções: scroll se necessário */
  .czq-options {
    gap: 8px;
  }
  .czq-option {
    min-height: 52px;
    padding: 12px 14px;
  }
  /* Resultado: header sem margin negativa */
  .czq-result-header-full {
    margin: -16px -20px 0;
    border-radius: 0;
  }
  .czq-result-body {
    padding: 20px 20px 28px;
  }
  /* Grid-2 vira coluna única em telas muito estreitas */
  .czq-options.czq-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── MOBILE PEQUENO ──────────────────────────────────── */
@media (max-width: 370px) {
  .czq-options.czq-grid-2 { grid-template-columns: 1fr; }
  .czq-step { padding: 12px 16px 16px; }
}
