/* ============================================================
   IMA Lite — APOENA Gestão Empresarial
   style.css  |  Design: Institucional Refinado
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta */
  --brand:      #500000;   /* Bordô principal */
  --brand-dark: #3a0000;   /* Bordô escuro */
  --brand-mid:  #7a1a1a;   /* Bordô médio */
  --brand-soft: #f5ecec;   /* Bordô muito claro / fundo */
  --accent:     #c9a84c;   /* Dourado complementar */
  --black:      #1a1008;
  --gray-900:   #2d2318;
  --gray-700:   #5a4e42;
  --gray-500:   #8c7d70;
  --gray-300:   #d8cfc7;
  --gray-100:   #f5f1ee;
  --white:      #ffffff;
  --off-white:  #faf8f6;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Espaçamento */
  --section-pad: 96px;
  --card-radius: 16px;
  --border: 1px solid var(--gray-300);

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(80,0,0,.06);
  --shadow-md:  0 8px 32px rgba(80,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(80,0,0,.15);

  /* Transições */
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ---------- BOTÕES ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 4px 16px rgba(80,0,0,.25);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(80,0,0,.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  background: var(--gray-300);
  color: var(--gray-500);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--brand);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.btn-ghost:hover { background: var(--brand-soft); }

.btn-nav {
  background: var(--brand);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s var(--ease);
}
.btn-nav:hover { background: var(--brand-dark); }

.btn-full { width: 100%; justify-content: center; }

.btn-arrow { transition: transform .2s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 12px;
  text-decoration: none;
  transition: background .2s var(--ease), transform .15s var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

.btn-refazer {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,246,.96);
  backdrop-filter: blur(12px);
  border-bottom: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.logo-mark.sm { width: 32px; height: 32px; font-size: 17px; }
.logo-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
  letter-spacing: .5px;
}
.logo-text small {
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: .8px;
  text-transform: uppercase;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  transition: color .2s;
}
.header-nav a:hover { color: var(--brand); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-mid) 100%);
  color: var(--white);
  padding: var(--section-pad) 0 80px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}
/* Decorative grid lines */
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.5);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-cta { margin-bottom: 48px; }
.hero-cta .btn-primary {
  font-size: 16px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--brand);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.hero-cta .btn-primary:hover { background: var(--off-white); }
.hero-cta-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: .3px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* ---------- SEÇÃO HELPERS ---------- */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.7;
}

/* ---------- PILARES ---------- */
.pilares {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.pilares .container { text-align: left; }
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.pilar-card {
  background: var(--off-white);
  border: var(--border);
  border-radius: var(--card-radius);
  padding: 24px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.pilar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.pilar-icon { font-size: 28px; margin-bottom: 12px; }
.pilar-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 6px;
}
.pilar-card p { font-size: 13px; color: var(--gray-700); line-height: 1.5; }

/* ---------- COMO FUNCIONA ---------- */
.como-funciona {
  padding: var(--section-pad) 0;
  background: var(--brand-soft);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  padding: 0 24px;
  text-align: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--brand);
  opacity: .25;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--gray-900); }
.step p { font-size: 14px; color: var(--gray-700); }
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--brand);
  opacity: .3;
  align-self: center;
  margin-top: -40px;
  flex-shrink: 0;
}

/* ---------- TESTE SECTION ---------- */
.teste-section {
  padding: var(--section-pad) 0 120px;
  background: var(--white);
}
.teste-section .container { max-width: 760px; }

/* ---------- QUIZ WRAPPER ---------- */
.quiz-wrapper { margin-top: 48px; }

.quiz-screen { display: none; }
.quiz-screen.active { display: block; }

.quiz-card {
  background: var(--white);
  border: var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: fadeUp .35s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -- Intro Card -- */
.intro-card { padding: 48px; text-align: center; }
.intro-icon { font-size: 48px; margin-bottom: 20px; }
.intro-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.intro-card p { font-size: 15px; color: var(--gray-700); margin-bottom: 28px; }

.intro-escala {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 360px;
  margin: 0 auto 32px;
  background: var(--off-white);
  border-radius: 12px;
  padding: 20px 24px;
  border: var(--border);
}
.intro-escala li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
}
.badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.b0 { background: #f5f5f5; color: #999; }
.b1 { background: #fff3cd; color: #856404; }
.b2 { background: #d1ecf1; color: #0c5460; }
.b3 { background: #d4edda; color: #155724; }

/* -- Progress Bar -- */
.progress-bar-wrapper {
  padding: 20px 32px 0;
}
.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 8px;
  font-weight: 500;
}
.progress-track {
  background: var(--gray-100);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-mid), var(--brand));
  border-radius: 100px;
  transition: width .4s var(--ease);
  width: 0%;
}

/* -- Question Card -- */
.question-card { padding: 28px 32px 32px; }
.question-pilar {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(80,0,0,.15);
}
.question-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 28px;
}

/* Opções */
.opcoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.opcao-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color .18s var(--ease), background .18s var(--ease), transform .15s var(--ease);
  font-family: var(--font-body);
  width: 100%;
}
.opcao-btn:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: translateX(3px);
}
.opcao-btn.selecionada {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.opcao-btn.selecionada .opcao-valor {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.opcao-valor {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1.5px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background .18s, color .18s, border-color .18s;
  color: var(--gray-700);
}
.opcao-label {
  font-size: 14px;
  color: var(--gray-900);
  line-height: 1.4;
  font-weight: 400;
}

/* Nav botões do quiz */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: var(--border);
  padding-top: 20px;
}

/* -- Formulário -- */
.form-card { padding: 40px; }
.form-header { text-align: center; margin-bottom: 32px; }
.form-check-icon {
  width: 56px;
  height: 56px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.form-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.form-header p { font-size: 14px; color: var(--gray-700); }

.form-fields { display: flex; flex-direction: column; gap: 18px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .2px;
}
.field-group input,
.field-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c7d70' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field-group input:focus,
.field-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(80,0,0,.08);
}
.field-group input.error,
.field-group select.error { border-color: #dc3545; }

.field-error {
  font-size: 12px;
  color: #dc3545;
  display: none;
}
.field-error.visible { display: block; }

/* Radio group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.radio-option:hover { border-color: var(--brand); background: var(--brand-soft); }
.radio-option input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: var(--brand);
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  padding: 0;
}
.radio-option span { font-size: 14px; color: var(--gray-900); }
.radio-option:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.radio-option:has(input:checked) span { font-weight: 600; color: var(--brand); }

.privacidade small { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

/* -- Resultado -- */
.resultado-card { padding: 40px; }
.resultado-header { text-align: center; margin-bottom: 32px; }
.resultado-logo { margin: 0 auto 8px; }
.resultado-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.score-ring-wrapper {
  position: relative;
  width: 150px;
  margin: 0 auto;
}
.score-ring { width: 150px; height: 150px; }
.score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.score-sub { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

.resultado-perfil {
  text-align: center;
  padding: 24px;
  background: var(--brand-soft);
  border-radius: 12px;
  margin-bottom: 28px;
}
.perfil-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(80,0,0,.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.perfil-titulo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}
.perfil-desc { font-size: 14px; color: var(--gray-700); line-height: 1.6; }

/* Pilares barras */
.resultado-pilares {
  margin-bottom: 28px;
}
.resultado-pilares h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pilares-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pilar-bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 28px;
  align-items: center;
  gap: 10px;
}
.pilar-bar-nome { font-size: 13px; color: var(--gray-700); font-weight: 500; }
.pilar-bar-track {
  background: var(--gray-100);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}
.pilar-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--brand-mid), var(--brand));
  transition: width .6s var(--ease);
}
.pilar-bar-val { font-size: 12px; color: var(--gray-500); font-weight: 600; text-align: right; }

.resultado-cta {
  background: var(--off-white);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  border: var(--border);
}
.cta-frase { font-size: 13px; color: var(--gray-500); margin-bottom: 6px; }
.resultado-cta h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.3;
}
.cta-sub { font-size: 13px; color: var(--gray-700); margin-bottom: 20px; }

/* ---------- SOBRE ---------- */
.sobre {
  padding: var(--section-pad) 0;
  background: var(--brand-dark);
  color: var(--white);
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.sobre .section-label { color: var(--accent); }
.sobre .section-title { color: var(--white); }
.sobre-text p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 20px; font-weight: 300; }
.sobre-text .btn-primary {
  background: var(--accent);
  color: var(--brand-dark);
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.sobre-text .btn-primary:hover { background: #b8944a; }

.sobre-destaques { display: flex; flex-direction: column; gap: 16px; }
.destaque-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 20px 24px;
}
.destaque-icon { font-size: 22px; margin-bottom: 10px; }
.destaque-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.destaque-card p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand .logo { margin-bottom: 8px; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { text-align: right; }
.footer-copy p { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.7; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .header-nav a:not(.btn-nav) { display: none; }

  .hero-inner { max-width: 100%; }
  .hero-stats { gap: 20px; }
  .stat-divider { height: 32px; }

  .pilares-grid { grid-template-columns: repeat(2, 1fr); }

  .steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .step { padding: 0; text-align: center; }

  .intro-card { padding: 32px 24px; }
  .question-card { padding: 20px 20px 24px; }
  .form-card { padding: 28px 20px; }
  .resultado-card { padding: 28px 20px; }

  .quiz-nav { flex-direction: column-reverse; }
  .quiz-nav button { width: 100%; justify-content: center; }

  .pilar-bar-row { grid-template-columns: 100px 1fr 24px; }
  .pilar-bar-nome { font-size: 12px; }

  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 10px; }
  .pilares-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
}
