@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --color-creme: #fdf8f4;
  --color-rose: #c97070;
  --color-rose-dark: #8b4a4a;
  --color-rose-light: #f0e0da;
  --color-gold: #c9a86c;
  --color-text: #2c1a1a;
  --color-text-muted: #7a5f5f;
  --color-cta: #E8475F;
  --color-cta-hover: #D13A50;
  --color-green: #10B981;
  --font-headline: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background-color: var(--color-creme);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 600;
  line-height: 1.25;
}
h1 { font-size: 1.75rem; margin-bottom: 0.75rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; font-size: 1rem; }
.text-muted { color: var(--color-text-muted); }

/* ── Layout ── */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hidden { display: none !important; }

/* ── Progress Bar ── */
.progress-container {
  width: 100%;
  height: 6px;
  background-color: var(--color-rose-light);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 50;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-rose), var(--color-cta));
  width: 0%;
  transition: width 0.6s ease-in-out;
  border-radius: 4px;
}
.progress-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 1rem;
  font-style: italic;
}

/* ── Badge ── */
.badge {
  display: inline-block;
  background-color: var(--color-rose-light);
  color: var(--color-rose-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── CTA Button ── */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cta);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 1.5rem;
  min-height: 56px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 1rem;
  box-shadow: 0 4px 14px rgba(232, 71, 95, 0.35);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.btn:hover, .btn:active {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 71, 95, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-muted);
  border: 2px solid var(--color-rose-light);
  box-shadow: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-secondary::after { display: none; }
.btn-secondary:hover {
  background-color: var(--color-rose-light);
  color: var(--color-rose-dark);
  box-shadow: none;
  transform: none;
}

/* ── Option Buttons ── */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.25rem;
}
.option-btn {
  background-color: white;
  border: 2px solid var(--color-rose-light);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.option-btn:hover, .option-btn:active {
  border-color: var(--color-rose);
  background-color: var(--color-rose-light);
  transform: translateX(4px);
}
.option-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

/* ── Educative Card ── */
.edu-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-left: 4px solid var(--color-gold);
}
.edu-card p { font-size: 0.95rem; margin-bottom: 0.75rem; }
.edu-card strong { color: var(--color-rose-dark); }
.edu-highlight {
  background: linear-gradient(135deg, var(--color-rose-light), #fff);
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--color-rose-dark);
  margin-top: 0.75rem;
  text-align: center;
}

/* ── Authority Section ── */
.authority-section {
  text-align: center;
  padding: 1rem 0;
}
.authority-photo {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  border: none;
  margin-bottom: 0.5rem;
  box-shadow: none;
  filter: drop-shadow(0 4px 18px rgba(201, 168, 108, 0.35));
}
.authority-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold), #d4b87a);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

/* ── Name Input ── */
.name-form { margin-top: 1.5rem; }
.name-input {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
  border: 2px solid var(--color-rose-light);
  border-radius: 12px;
  background: white;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.name-input:focus {
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(201, 112, 112, 0.15);
}
.name-input::placeholder { color: #bba0a0; }
.name-input.input-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

/* ── VSL Text Blocks ── */
.vsl-text-section { margin: 1.5rem 0; }
.vsl-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-rose-light);
}
.vsl-block:last-child { border-bottom: none; }

.sem-list { list-style: none; margin: 1rem 0; }
.sem-list li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pillar-list { list-style: none; margin: 1rem 0; }
.pillar-list li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  background: white;
  border-radius: 10px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.warning-box {
  background: #FFF8E1;
  border-left: 4px solid #FFC107;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-size: 0.9rem;
}

/* ── Testimonials ── */
.quote-box {
  background-color: var(--color-rose-light);
  padding: 1.25rem;
  border-radius: 12px;
  font-style: italic;
  margin: 1rem 0;
  position: relative;
  font-size: 0.95rem;
}
.quote-box::before {
  content: '"';
  font-family: var(--font-headline);
  font-size: 3.5rem;
  color: var(--color-rose);
  opacity: 0.2;
  position: absolute;
  top: -8px;
  left: 10px;
}
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.testimonial-full {
  display: block;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.testimonial-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-rose-light);
}
.testimonial-text { font-size: 0.9rem; }
.testimonial-name {
  font-weight: 700;
  color: var(--color-rose-dark);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* ── Social Proof Avatars ── */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.avatar-stack {
  display: flex;
}
.avatar-stack img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  margin-left: -8px;
}
.avatar-stack img:first-child { margin-left: 0; }

/* ── Countdown Timer ── */
.countdown-banner {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(185,28,28,0.35);
}
.countdown-label {
  color: #fecaca;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.countdown-timer {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  animation: pulse-timer 1s ease-in-out infinite;
}
.countdown-sub {
  color: #fca5a5;
  font-size: 0.75rem;
  margin-top: 0.4rem;
}
.countdown-banner.expired {
  background: linear-gradient(135deg, #4b5563, #374151);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.countdown-banner.expired .countdown-label {
  color: #d1d5db;
}
.countdown-banner.expired .countdown-timer {
  color: #9ca3af;
  animation: none;
}
.countdown-banner.expired .countdown-sub {
  color: #6b7280;
}
@keyframes pulse-timer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* ── Pricing ── */
.pricing-box {
  background: white;
  border: 2px solid var(--color-gold);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-rose));
}
.price-strike {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}
.price-current {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  color: var(--color-rose-dark);
  margin: 0.3rem 0;
  font-weight: 700;
}
.price-installments {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

/* ── Check List ── */
.check-list { list-style: none; margin: 1.25rem 0; }
.check-list li {
  margin-bottom: 0.7rem;
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ── Bonus Cards ── */
.bonus-card {
  background: white;
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-rose-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.bonus-card-title {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--color-text);
}
.bonus-card-desc { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 0.3rem; }
.bonus-card-value {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--color-rose);
}

/* ── Evolution Table ── */
.evolution-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0;
  font-size: 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.evolution-table th {
  background: var(--color-rose-dark);
  color: white;
  padding: 0.75rem;
  font-weight: 600;
  text-align: left;
}
.evolution-table td {
  padding: 0.75rem;
  background: white;
  border-bottom: 1px solid var(--color-rose-light);
}
.evolution-table tr:last-child td { border-bottom: none; }
.evolution-table td:first-child {
  font-weight: 700;
  color: var(--color-rose-dark);
  white-space: nowrap;
}

/* ── FAQ Accordion ── */
.faq-section { margin: 1.5rem 0; }
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--color-rose);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.2rem 1rem;
}

/* ── Guarantee ── */
.guarantee-box {
  text-align: center;
  padding: 1.5rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-radius: 16px;
  border: 2px solid var(--color-green);
}
.guarantee-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.guarantee-title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 0.5rem;
}
.guarantee-text { font-size: 0.9rem; color: var(--color-text-muted); }

/* ── Gamification Loader ── */
.game-loader { text-align: center; }
.game-bar-wrap {
  width: 100%;
  height: 12px;
  background: var(--color-rose-light);
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5rem 0 1rem;
}
.game-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-rose), var(--color-cta));
  width: 0%;
  border-radius: 8px;
  transition: width 0.8s ease-in-out;
}
.game-percent {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-rose-dark);
  margin-bottom: 0.5rem;
}
.game-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: opacity 0.3s;
}

/* ── Loading Overlay ── */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(253, 248, 244, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.loading-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.loading-overlay .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-rose-light);
  border-top: 3px solid var(--color-rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1.5rem;
}
.loading-overlay-text {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--color-text);
  text-align: center;
  padding: 0 2rem;
  max-width: 400px;
  line-height: 1.4;
}

/* ── Screens & Animations ── */
.screen {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.4s ease forwards;
  flex: 1;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Loading Screen (Etapa 07) ── */
.narrated-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
}
.narrated-loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--color-rose-light);
  border-top: 4px solid var(--color-rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 2rem;
}
.narrated-text {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--color-text);
  transition: opacity 0.3s;
  min-height: 60px;
  display: flex;
  align-items: center;
}

/* ── Section Divider ── */
.section-divider {
  border: 0;
  border-top: 1px solid var(--color-rose-light);
  margin: 1.5rem 0;
}

/* ── Para Quem / Não Para Quem ── */
.for-list { list-style: none; margin: 1rem 0; }
.for-list li {
  padding: 0.5rem 0;
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
}
.for-list.positive li::before { content: '✅'; position: absolute; left: 0; }
.for-list.negative li::before { content: '❌'; position: absolute; left: 0; }

/* ── Security Footer ── */
.security-footer {
  text-align: center;
  margin-top: 1rem;
  opacity: 0.7;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── Responsive Images ── */
.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ── Prints WhatsApp Grid ── */
.whatsapp-prints {
  max-width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ── Pitch Special ── */
.pitch-offer-box {
  background: linear-gradient(135deg, #fff, var(--color-rose-light));
  border: 2px solid var(--color-rose);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1rem 0;
}

/* ── Trust Indicators ── */
.trust-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ── Upload de Foto ── */
.photo-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  border: 2px dashed var(--color-gold);
  border-radius: 16px;
  cursor: pointer;
  background: rgba(201,168,108,0.06);
  margin: 1.5rem 0;
  transition: background 0.2s;
}
.photo-upload-area:hover { background: rgba(201,168,108,0.12); }
.photo-upload-icon { font-size: 2.5rem; }
.photo-upload-area p { font-size: 0.95rem; color: var(--color-text-muted); text-align: center; margin: 0; }

/* ── Loading com Foto ── */
.eal-photo-wrap {
  display: none;
  position: relative;
  max-width: 220px;
  margin: 1.5rem auto 0;
  border-radius: 12px;
  overflow: hidden;
  justify-content: center;
}
.eal-photo { width: 100%; display: block; border-radius: 12px; }
.eal-scan {
  display: none;
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: scanMove 1.8s linear infinite;
}
.eal-scan.active { display: block; }
@keyframes scanMove {
  0% { top: 0%; }
  100% { top: 100%; }
}

/* ── Card de Resultado ── */
.result-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(201,168,108,0.25);
  margin-bottom: 0.5rem;
}
.result-header {
  background: linear-gradient(135deg, var(--color-rose-dark), var(--color-rose));
  padding: 1.5rem;
  text-align: center;
}
.result-badge {
  display: inline-block;
  background: white;
  color: var(--color-rose-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.result-header h2 { color: white; font-size: 1.1rem; margin: 0; }
.result-profile {
  display: flex;
  border-bottom: 1px solid rgba(201,168,108,0.2);
}
.result-profile-item {
  flex: 1;
  padding: 0.9rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(201,168,108,0.2);
}
.result-profile-item:last-child { border-right: none; }
.result-profile-label {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.result-profile-value {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-rose-dark);
}
.result-findings {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(201,168,108,0.15);
}
.result-findings h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.result-finding-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.finding-icon { flex-shrink: 0; }
.result-protocol { padding: 1.25rem; }
.result-protocol h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.result-protocol p { font-size: 0.93rem; margin-bottom: 0.75rem; }
.result-protocol-badge {
  background: linear-gradient(135deg, rgba(201,168,108,0.12), rgba(201,168,108,0.04));
  border: 1px solid rgba(201,168,108,0.4);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  text-align: center;
  margin-top: 0.75rem;
}

.result-focus {
  padding: 1rem 1.25rem;
  background: rgba(139,74,74,0.05);
  border-bottom: 1px solid rgba(201,168,108,0.15);
}
.result-focus-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 0.35rem;
}
.result-focus-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-rose-dark);
  line-height: 1.4;
}
.result-attention {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(201,168,108,0.15);
}
.result-attention-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
}
.result-attention-item {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
  color: var(--color-text);
}
.result-promise {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.07), rgba(16,185,129,0.02));
  border-bottom: 1px solid rgba(16,185,129,0.15);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
}
.result-promise strong { color: #059669; }

/* ── Face Shape Cards (EFA) ── */
.face-shape-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.face-shape-card {
  background: white;
  border: 2px solid var(--color-rose-light);
  border-radius: 14px;
  padding: 0.75rem 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.face-shape-card:hover,
.face-shape-card:active {
  border-color: var(--color-rose);
  background-color: var(--color-rose-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201,112,112,0.18);
}
.face-shape-img-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.face-shape-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.face-shape-card span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}
/* 5º card sozinho: ocupa largura de uma coluna centralizado */
.face-shape-card--solo {
  grid-column: 1 / -1;
  width: calc(50% - 0.375rem);
  margin: 0 auto;
}
