/* ===== Tipografia ===== */
body { font-family: 'Inter', system-ui, sans-serif; }
.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ===== Cards de tipo de cabelo ===== */
.hair-card {
  background: #F3E6CC;
  border: 1px solid #E5D6B8;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.hair-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -8px rgba(0,0,0,.15); }
.hair-card:active { transform: translateY(0); }
.hair-card .hair-img {
  aspect-ratio: 1 / 1.15;
  background-color: #E5D6B8;
  background-size: cover;
  background-position: center top;
}
.hair-card .hair-label {
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #1A1A1A;
  background: #FBF1E2;
}
.chev { color: #7A7268; font-size: 18px; line-height: 1; }

/* ===== Pílulas (4 opções grid) ===== */
.pill {
  background: #F3E6CC;
  border: 1px solid #E5D6B8;
  border-radius: 14px;
  padding: 18px 16px;
  font-size: 15px;
  color: #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform .15s, background .15s;
  cursor: pointer;
  text-align: left;
}
.pill:hover { background: #ECDDBE; }
.pill:active { transform: scale(.98); }

/* ===== Pílulas full-width (lista vertical) ===== */
.pill-wide {
  background: #F3E6CC;
  border: 1px solid #E5D6B8;
  border-radius: 14px;
  padding: 18px 18px;
  font-size: 15px;
  color: #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: background .15s, transform .15s;
  cursor: pointer;
}
.pill-wide:hover { background: #ECDDBE; }
.pill-wide:active { transform: scale(.99); }

/* ===== Checkbox pílula (multi-select) ===== */
.check-pill {
  background: #F3E6CC;
  border: 1px solid #E5D6B8;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background .15s;
}
.check-pill:hover { background: #ECDDBE; }
.check-pill input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #1A1A1A;
  border-radius: 5px;
  background: #FBF1E2;
  cursor: pointer;
  display: grid;
  place-content: center;
  flex-shrink: 0;
}
.check-pill input[type="checkbox"]:checked {
  background: #1A1A1A;
}
.check-pill input[type="checkbox"]:checked::after {
  content: '✓';
  color: #FBF1E2;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

/* ===== Botão preto (Continuar) ===== */
.btn-ink {
  background: #1A1A1A;
  color: #FBF1E2;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: opacity .15s, transform .15s;
  cursor: pointer;
}
.btn-ink:hover:not(:disabled) { opacity: .9; }
.btn-ink:active:not(:disabled) { transform: scale(.99); }
.btn-ink:disabled { opacity: .35; cursor: not-allowed; }

/* ===== Botão verde (oferta) ===== */
.btn-offer {
  background: #3DAF5C;
  color: #FFFFFF;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .15s, transform .15s;
  cursor: pointer;
}
.btn-offer:hover { background: #2F8F49; }
.btn-offer:active { transform: scale(.99); }

/* ===== Cards WhatsApp ===== */
.wa-card {
  background: #FFFFFF;
  border: 1px solid #E5D6B8;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
  color: #1A1A1A;
  box-shadow: 0 2px 6px -2px rgba(0,0,0,.06);
}
.wa-card .wa-name {
  font-size: 11px;
  font-weight: 600;
  color: #3DAF5C;
  margin-bottom: 4px;
}
.wa-card mark {
  background: #FFE89A;
  color: #1A1A1A;
  padding: 0 2px;
  border-radius: 2px;
}
.wa-card p { margin: 0; }

/* ===== Métricas (Hero do resultado) ===== */
.metric-row {
  padding: 12px 0;
  border-bottom: 1px solid #E5D6B8;
}
.metric-row .metric-name {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: #1A1A1A;
}
.metric-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.metric-bad,
.metric-good {
  justify-self: center;
  width: max-content;
  max-width: 100%;
  color: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.metric-bad { background: #E55353; }
.metric-good { background: linear-gradient(90deg, #3DAF5C, #2F8F49); }

/* ===== Stack cards (entregáveis) ===== */
.stack-card {
  background: #FFFFFF;
  border: 1px solid #E5D6B8;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}
.stack-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 6px;
}
.stack-card p { font-size: 12px; color: #5A554F; line-height: 1.45; }
.stack-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #EAD9B7;
  border: 1px solid #E5D6B8;
}
.stack-thumb-1 { background-image: url('../images/card-cronograma.jpg'); }
.stack-thumb-2 { background-image: url('../images/card-favoritos.jpg'); }
.stack-thumb-3 { background-image: url('../images/card-video.jpg'); }
.stack-thumb-4 { background-image: url('../images/card-clases.jpg'); }

/* ===== Bonus cards ===== */
.bonus-card {
  background: #FFFFFF;
  border: 1px solid #E5D6B8;
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
}
.bonus-icon { font-size: 28px; margin-bottom: 8px; }
.bonus-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.bonus-card p { font-size: 11px; color: #5A554F; line-height: 1.4; }

/* ===== Benefícios ===== */
.benefits-list { list-style: none; padding: 0; }
.benefits-list li {
  border-bottom: 1px solid #E5D6B8;
  padding: 14px 0;
  font-size: 14px;
  color: #1A1A1A;
}
.benefits-list li strong { display: block; margin-bottom: 2px; font-size: 15px; }

/* ===== Garantia ===== */
.warranty-block {
  background: #FFFFFF;
  border: 1px solid #E5D6B8;
  border-radius: 14px;
  padding: 22px 18px;
}

/* ===== Animações ===== */
.step { animation: fadeUp .35s ease-out; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Estado selecionado ===== */
.pill.selected, .pill-wide.selected, .hair-card.selected {
  background: #1A1A1A !important;
  color: #FBF1E2 !important;
  border-color: #1A1A1A !important;
}
.pill.selected .chev, .pill-wide.selected .chev, .hair-card.selected .chev { color: #FBF1E2 !important; }
.hair-card.selected .hair-label { background: #1A1A1A; color: #FBF1E2; }
