/* ============================================================
   style.css — Anamnese Capilar V2.0 (BF-82)
   ManuSystems — Design System Fresh Dawn
   ============================================================ */

/* ── LAYOUT BASE ─────────────────────────────────────────── */

.page-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 20px 40px;
  width: 100%;
}

header {
  position: relative;
  text-align: center;
  margin-bottom: 28px;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--text-serif);
  margin: 0 0 6px;
}

header .subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8c8270;
  margin: 0;
}

/* ── STEPS INDICATOR ─────────────────────────────────────── */

.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
  padding: 12px 8px;
  background: var(--glass-bg);
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  overflow-x: auto;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #8c8270;
  background: #f0ede8;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step-dot.active {
  background: var(--fresh-green-active);
  color: white;
  border-color: var(--fresh-green-active);
  box-shadow: 0 2px 10px rgba(143, 188, 143, 0.4);
  transform: scale(1.1);
}

.step-dot.completed {
  background: var(--fresh-green-subtle);
  color: #3a6e38;
  border-color: var(--fresh-green-active);
}

.step-connector {
  width: 20px;
  height: 2px;
  background: #e0dbd3;
  flex-shrink: 0;
}

/* ── ACCORDION ───────────────────────────────────────────── */

.accordion-block {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(143, 188, 143, 0.04);
}

.accordion-block.active {
  border-color: rgba(143, 188, 143, 0.35);
  box-shadow: 0 4px 20px rgba(143, 188, 143, 0.1);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: rgba(143, 188, 143, 0.04);
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.accordion-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gold-accent);
  opacity: 0.7;
  min-width: 28px;
}

.accordion-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-serif);
  margin: 0;
  line-height: 1.2;
}

.accordion-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8c8270;
  margin: 2px 0 0;
}

.accordion-status {
  margin: 0 12px;
}

.accordion-chevron {
  font-size: 12px;
  color: #8c8270;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-block.active .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 20px;
}

.accordion-content.open {
  max-height: 2000px;
  padding: 0 20px 24px;
}

/* ── STATUS BADGES ───────────────────────────────────────── */

.status-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.status-badge.ok {
  background: var(--fresh-green-subtle);
  color: #3a6e38;
}

.status-badge.pending {
  background: #f5f0e8;
  color: #9e9689;
}

/* ── FORM BLOCK ──────────────────────────────────────────── */

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

.field-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-item > label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-serif);
}

.field-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #9e9689;
  margin: 0;
  line-height: 1.4;
}

/* ── INPUTS / SELECTS ────────────────────────────────────── */

.field-item input[type='text'],
.field-item select,
.field-item textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(197, 160, 89, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-data);
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.field-item input[type='text']:focus,
.field-item select:focus,
.field-item textarea:focus {
  outline: none;
  border-color: var(--fresh-green-active);
  box-shadow: 0 0 0 3px rgba(143, 188, 143, 0.15);
}

.field-item input[type='text']::placeholder {
  color: #b5afa5;
}

/* ── AUTOCOMPLETE ────────────────────────────────────────── */

.autocomplete-wrapper {
  position: relative;
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 50;
  display: none;
  max-height: 240px;
  overflow-y: auto;
}

.autocomplete-list.visible {
  display: block;
}

.autocomplete-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-data);
  transition: background 0.15s;
}

.autocomplete-item:hover {
  background: var(--fresh-green-subtle);
}

.autocomplete-item .tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  background: #f0ede8;
  color: #8c8270;
  text-transform: uppercase;
}

.autocomplete-item .tag.warm {
  background: #fdf2e6;
  color: #c07820;
}

.autocomplete-item .tag.cold {
  background: #e6eff8;
  color: #3b6ea5;
}

/* ── RADIO CARDS (Bloco 2 — Saúde do Fio) ────────────────── */

.radio-card-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(197, 160, 89, 0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-card:hover {
  border-color: rgba(143, 188, 143, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

.radio-card.selected {
  border-color: var(--fresh-green-active);
  background: var(--fresh-green-subtle);
  box-shadow: 0 2px 8px rgba(143, 188, 143, 0.15);
}

.radio-card.critical {
  border-color: rgba(232, 160, 144, 0.3);
}

.radio-card.critical:hover {
  border-color: rgba(232, 160, 144, 0.6);
}

.radio-card.critical.selected {
  border-color: #e8a090;
  background: #fdf2f0;
  box-shadow: 0 2px 8px rgba(232, 160, 144, 0.15);
}

.radio-card input[type='radio'] {
  margin-top: 3px;
  accent-color: var(--fresh-green-active);
  flex-shrink: 0;
}

.radio-card.critical input[type='radio'] {
  accent-color: #e8a090;
}

.radio-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.radio-card-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-serif);
}

.radio-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8c8270;
  line-height: 1.4;
}

/* ── RADIO INLINE GROUP ──────────────────────────────────── */

.radio-inline-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-inline-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(197, 160, 89, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-data);
}

.radio-inline-item:hover {
  border-color: rgba(143, 188, 143, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

.radio-inline-item.selected {
  border-color: var(--fresh-green-active);
  background: var(--fresh-green-subtle);
}

.radio-inline-item.critical {
  border-color: rgba(232, 160, 144, 0.3);
}

.radio-inline-item.critical.selected {
  border-color: #e8a090;
  background: #fdf2f0;
}

.radio-inline-item input[type='radio'] {
  accent-color: var(--fresh-green-active);
  flex-shrink: 0;
}

.radio-inline-item.critical input[type='radio'] {
  accent-color: #e8a090;
}

/* ── RADIO ETNIA GROUP ───────────────────────────────────── */

.radio-etnia-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-etnia-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(197, 160, 89, 0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-etnia-item:hover {
  border-color: rgba(143, 188, 143, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

.radio-etnia-item.selected {
  border-color: var(--fresh-green-active);
  background: var(--fresh-green-subtle);
  box-shadow: 0 2px 8px rgba(143, 188, 143, 0.15);
}

.radio-etnia-item input[type='radio'] {
  margin-top: 4px;
  accent-color: var(--fresh-green-active);
  flex-shrink: 0;
}

.etnia-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-serif);
  display: block;
}

.etnia-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8c8270;
  line-height: 1.5;
  display: block;
  margin-top: 2px;
}

.etnia-aviso {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8c8270;
  background: var(--fresh-green-bg);
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 3px solid var(--fresh-green-active);
  line-height: 1.5;
  margin-bottom: 6px;
}

/* ── GATE ALERT FIELD ────────────────────────────────────── */

.gate-alert-field {
  background: var(--fresh-rose-bg);
  padding: 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(232, 160, 144, 0.25);
}

.gate-alert-field > label {
  color: #8a2e20;
}

/* ── UPLOAD ──────────────────────────────────────────────── */

.upload-label-small {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px dashed rgba(197, 160, 89, 0.3);
  border-radius: 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8c8270;
  transition: all 0.2s ease;
}

.upload-label-small:hover {
  border-color: var(--fresh-green-active);
  background: rgba(255, 255, 255, 0.9);
}

.upload-label-small input[type='file'] {
  display: none;
}

.preview-inspiracao {
  display: none;
  position: relative;
  margin-top: 8px;
}

.preview-inspiracao img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.remove-foto {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(138, 46, 32, 0.85);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── BOTÕES ──────────────────────────────────────────────── */

.btn-primary {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 28px auto 0;
  padding: 16px 28px;
  background: var(--fresh-green-active);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(143, 188, 143, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 188, 143, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-next-block {
  display: inline-block;
  padding: 10px 22px;
  background: var(--fresh-green-active);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.2s ease;
}

.btn-next-block:hover {
  background: #7aaa7a;
  transform: translateY(-1px);
}

.btn-prev-block {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  color: #8c8270;
  border: 1.5px solid rgba(197, 160, 89, 0.25);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-prev-block:hover {
  border-color: var(--fresh-green-active);
  color: var(--text-serif);
}

.btn-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

/* ── GATE 1 OVERLAY ──────────────────────────────────────── */

.gate1-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 54, 42, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.gate1-overlay.hidden {
  display: none !important;
}

.gate1-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border: 2px solid #e8a090;
  animation: slideUp 0.3s ease;
}

.gate1-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.gate1-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: #8a2e20;
  margin: 0 0 12px;
}

.gate1-mensagem {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-data);
  line-height: 1.6;
  margin: 0 0 20px;
}

.gate1-flags {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a2e20;
  background: var(--fresh-rose-bg);
  padding: 14px 18px;
  border-radius: 12px;
  text-align: left;
  line-height: 1.8;
  border: 1px solid rgba(232, 160, 144, 0.3);
}

/* ── ANIMAÇÕES ───────────────────────────────────────────── */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* ── RESPONSIVO ──────────────────────────────────────────── */

/* ── PAINEL ANAMNESE WHATSAPP (Leitura) ─────────────────── */

.painel-anamnese-whatsapp {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(143, 188, 143, 0.04);
}

.painel-anamnese-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.painel-anamnese-icone {
  font-size: 24px;
  flex-shrink: 0;
}

.painel-anamnese-titulo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-serif);
  margin: 0;
  line-height: 1.2;
}

.painel-anamnese-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8c8270;
  margin: 2px 0 0;
}

.painel-anamnese-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.anamnese-tag-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(197, 160, 89, 0.15);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.anamnese-tag-card--full {
  grid-column: 1 / -1;
}

.anamnese-tag-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8c8270;
}

.anamnese-tag-valor {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-data);
}

/* Tag estado normal */
.anamnese-tag-valor.tag-normal {
  display: inline-block;
  background: var(--fresh-green-subtle);
  color: #3a6e38;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 20px;
  width: fit-content;
}

/* Tag estado alerta (Hene=Sim, Gestante=Sim, Marcapasso=Sim, Elasticidade=Critica) */
.anamnese-tag-valor.tag-alerta {
  display: inline-block;
  background: var(--erro);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  width: fit-content;
  animation: pulse-alerta 2s infinite;
}

@keyframes pulse-alerta {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 64, 64, 0.3);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(232, 64, 64, 0);
  }
}

/* ── PERFIL PSICOGRAFICO (F143) ─────────────────────────── */

.painel-perfil-psicografico {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(143, 188, 143, 0.04);
}

.perfil-psicografico-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.perfil-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
}

.perfil-chip--padrao {
  background: var(--fresh-green-subtle);
  color: #3a6e38;
  border-color: var(--fresh-green-active);
}

.perfil-chip--alerta {
  background: var(--fresh-rose-bg);
  color: #8a2e20;
  border-color: var(--erro);
}

.perfil-chip--neutro {
  background: #f5f0e8;
  color: #8c8270;
  border-color: rgba(197, 160, 89, 0.2);
}

.perfil-chip-icone {
  font-size: 14px;
  flex-shrink: 0;
}

.perfil-chip-label {
  white-space: nowrap;
}

/* ── MODAL SUGESTAO IA ──────────────────────────────────── */

.modal-ia-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 54, 42, 0.6);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-ia-card {
  background: white;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--glass-border);
  animation: slideUp 0.3s ease;
}

.modal-ia-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--glass-border);
}

.modal-ia-titulo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-serif);
  margin: 0 0 4px;
}

.modal-ia-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8c8270;
  margin: 0;
}

.modal-ia-fechar {
  background: none;
  border: none;
  font-size: 24px;
  color: #8c8270;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}

.modal-ia-fechar:hover {
  color: var(--text-serif);
}

.modal-ia-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-ia-secao-titulo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8c8270;
  margin: 0 0 10px;
}

.modal-ia-ativos-lista,
.modal-ia-sinergias-lista,
.modal-ia-alertas-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Ativo recomendado */
.modal-ia-ativo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(197, 160, 89, 0.15);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-data);
}

.modal-ia-ativo-nome {
  font-weight: 600;
  color: var(--text-serif);
}

.modal-ia-ativo-funcao {
  font-size: 12px;
  color: #8c8270;
}

/* Sinergia positiva — destaque verde */
.modal-ia-sinergia-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--fresh-green-subtle);
  border: 1.5px solid var(--fresh-green-active);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #3a6e38;
}

.sinergia-icone {
  font-size: 16px;
  flex-shrink: 0;
}

.sinergia-texto {
  line-height: 1.4;
}

.sinergia-texto strong {
  color: var(--fresh-green-active);
  font-weight: 600;
}

/* Alerta no modal */
.modal-ia-alerta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--fresh-rose-bg);
  border: 1.5px solid rgba(232, 160, 144, 0.3);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a2e20;
}

.modal-ia-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--glass-border);
}

/* ── RESPONSIVO ──────────────────────────────────────────── */

@media (max-width: 480px) {
  .page-container {
    padding: 70px 14px 30px;
  }

  header h1 {
    font-size: 22px;
  }

  .steps-indicator {
    padding: 10px 6px;
    gap: 0;
  }

  .step-dot {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .step-connector {
    width: 12px;
  }

  .accordion-header {
    padding: 14px 16px;
  }

  .accordion-number {
    font-size: 17px;
  }

  .accordion-title {
    font-size: 14px;
  }

  .accordion-content.open {
    padding: 0 16px 20px;
  }

  .radio-card {
    padding: 12px 14px;
  }

  .radio-inline-group {
    flex-direction: column;
  }

  .radio-inline-item {
    width: 100%;
  }

  .btn-primary {
    font-size: 15px;
    padding: 14px 24px;
  }
}
