/* ============================================
   GMN FÁCIL — Design System
   Estética: Google-familiar, clean, confiável
   Fonte: Lexend (display) + Nunito Sans (corpo)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

/* ── TOKENS ───────────────────────────────────── */
:root {
  /* Google palette */
  --blue:           #1A73E8;
  --blue-hover:     #1557B0;
  --blue-light:     #E8F0FE;
  --blue-mid:       rgba(26,115,232,0.12);
  --red:            #EA4335;
  --red-light:      #FCE8E6;
  --green:          #34A853;
  --green-light:    #E6F4EA;
  --yellow:         #FBBC04;
  --yellow-light:   #FEF7E0;

  /* Neutrals */
  --bg:             #FFFFFF;
  --surface:        #F8F9FA;
  --surface2:       #F1F3F4;
  --border:         #DADCE0;
  --border-light:   #E8EAED;

  /* Text */
  --text:           #202124;
  --text-sub:       #5F6368;
  --text-muted:     #80868B;

  /* Shape */
  --radius:         16px;
  --radius-sm:      10px;
  --radius-xs:      6px;
  --shadow-sm:      0 1px 3px rgba(32,33,36,.10), 0 1px 2px rgba(32,33,36,.06);
  --shadow-md:      0 2px 10px rgba(32,33,36,.12);
  --shadow-lg:      0 4px 28px rgba(32,33,36,.14);
  --transition:     .2s cubic-bezier(.4,0,.2,1);

  --font-display:   'Lexend', sans-serif;
  --font-body:      'Nunito Sans', sans-serif;
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOPBAR ───────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}

.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 16px; height: 16px; color: white; }

.logo span { color: var(--blue); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-sub);
  font-weight: 600;
}

.dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .55; transform: scale(.75); }
}


/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
#section-hero {
  padding: 52px 0 72px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 920px) {
  .hero-layout { grid-template-columns: 1fr 420px; }
}

/* ── Hero Text ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: .02em;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -.025em;
}

.hero-headline .highlight {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hero-headline .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 34px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--text-sub);
  line-height: 1.55;
}

.pain-list .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  font-style: normal;
  font-size: .72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-cta-block { margin-bottom: 28px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .01em;
  box-shadow: 0 2px 8px rgba(26,115,232,.3);
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,115,232,.35);
}

.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: .8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.trust-dot {
  width: 3px;
  height: 3px;
  background: var(--border);
  border-radius: 50%;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.proof-avatars { display: flex; }

.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #4285F4);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}

.proof-avatar:first-child { margin-left: 0; }

.proof-text {
  font-size: .84rem;
  color: var(--text-sub);
  line-height: 1.45;
}

/* ── Hero Visual (Google Maps mock card) ── */
.hero-visual {
  display: none;
  position: relative;
}

@media (min-width: 920px) {
  .hero-visual { display: block; }
}

.maps-mock-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

/* Mapa de fundo */
.maps-bg {
  width: 100%;
  height: 200px;
  background:
    linear-gradient(0deg,   rgba(220,230,240,.6)  0%, transparent  50%),
    linear-gradient(90deg,  rgba(200,215,230,.4)  0%, transparent 100%);
  background-color: #C8D8E8;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}

.maps-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 28px, rgba(255,255,255,.25) 28px, rgba(255,255,255,.25) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(255,255,255,.25) 28px, rgba(255,255,255,.25) 29px);
}

/* Roads */
.maps-road {
  position: absolute;
  background: rgba(255,255,255,.6);
}

.maps-road-h1 { left: 0; right: 0; top: 48%;  height: 10px; }
.maps-road-h2 { left: 0; right: 0; top: 72%;  height: 6px; }
.maps-road-v1 { top: 0; bottom: 0; left: 30%;  width: 10px; }
.maps-road-v2 { top: 0; bottom: 0; left: 62%;  width: 6px; }

/* Map pin */
.maps-pin-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.3));
  animation: pin-bounce .6s cubic-bezier(.36,.07,.19,.97) 1;
}

@keyframes pin-bounce {
  0%  { transform: translate(-50%, -160%); opacity: 0; }
  60% { transform: translate(-50%, -90%); }
  80% { transform: translate(-50%, -105%); }
  100%{ transform: translate(-50%, -100%); opacity: 1; }
}

/* Business card panel */
.maps-card {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  border-top: none;
}

.maps-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.maps-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.maps-rating-num {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
}

.maps-stars { color: var(--yellow); font-size: .85rem; letter-spacing: -1px; }

.maps-reviews {
  font-size: .8rem;
  color: var(--blue);
  text-decoration: none;
}

.maps-category {
  font-size: .8rem;
  color: var(--text-sub);
  margin-bottom: 4px;
}

.maps-status {
  font-size: .8rem;
  color: #188038;
  font-weight: 700;
}

.maps-status span { color: var(--text-muted); font-weight: 400; }

.maps-action-bar {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.maps-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 7px 4px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border-light);
}

.maps-action svg  { width: 18px; height: 18px; color: var(--blue); }
.maps-action span { font-size: .68rem; color: var(--blue); font-weight: 700; }

/* Tag "Sem otimização" */
.maps-invisible-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(234,67,53,.9);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
}

.maps-invisible-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,.8);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Photo strip */
.maps-photos {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.maps-photo-thumb {
  width: 48px;
  height: 38px;
  background: rgba(255,255,255,.4);
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .6rem;
}

/* Shadow below card */
.maps-mock-container::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -12px;
  height: 20px;
  background: rgba(0,0,0,.08);
  border-radius: 50%;
  filter: blur(8px);
}


/* ════════════════════════════════════════════════
   QUIZ
   ════════════════════════════════════════════════ */
#section-quiz {
  display: none;
  min-height: 100vh;
  padding-bottom: 80px;
  background: var(--surface);
}

#section-quiz.active { display: block; }

/* Sticky progress header */
.quiz-progress {
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 20px;
  position: sticky;
  top: 58px;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.quiz-progress-header {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.quiz-step-label {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.quiz-step-fraction {
  font-size: .8rem;
  color: var(--text-muted);
  margin-left: auto;
}

.progress-bar-track {
  max-width: 600px;
  margin: 0 auto;
  height: 4px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #4285F4);
  border-radius: 4px;
  transition: width .45s cubic-bezier(.4,0,.2,1);
}

.micro-win {
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: .87rem;
  font-weight: 700;
  text-align: center;
  max-width: 600px;
  margin: 16px auto 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: all .3s ease;
  display: none;
  border: 1px solid rgba(26,115,232,.15);
}

.micro-win.show {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

/* ── Question Card ── */
.question-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  padding: 28px 24px;
  max-width: 600px;
  margin: 20px auto 0;
  animation: slideInRight .25s cubic-bezier(.4,0,.2,1) both;
}

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

@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-20px); }
}

.question-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface2);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.question-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
}

.question-hint {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--yellow-light);
  border-left: 3px solid var(--yellow);
  border-radius: 0 6px 6px 0;
}

/* ── Options ── */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.options-grid.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.option-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.option-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  opacity: 0;
  transition: opacity .15s;
  pointer-events: none;
}

.option-btn:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.option-btn:active { transform: scale(.98); }

.option-btn.selected {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 0 0 1px var(--blue);
}

.option-btn.selected .option-radio {
  background: var(--blue);
  border-color: var(--blue);
}

.option-btn.selected .option-radio::after {
  opacity: 1;
  transform: scale(1);
}

/* Grid-2 layout */
.options-grid.grid-2 .option-btn {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
}

.option-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  line-height: 1;
}

.options-grid.grid-2 .option-icon { width: 42px; height: 42px; font-size: 1.55rem; }

.option-content { flex: 1; }

.option-label {
  display: block;
  font-size: .93rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
}

.option-sub {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-radio::after {
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(.4);
  transition: all var(--transition);
}

/* Auto-advance hint */
.quiz-auto-hint {
  max-width: 600px;
  margin: 10px auto 0;
  text-align: center;
  font-size: .75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ── Score Peek ── */
.quiz-score-peek {
  max-width: 600px;
  margin: 14px auto 0;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  box-shadow: var(--shadow-sm);
}

.quiz-score-peek.show { opacity: 1; pointer-events: auto; }

.score-peek-label {
  font-size: .72rem;
  font-weight: 800;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}

.score-peek-bar-track {
  height: 6px;
  background: var(--surface2);
  border-radius: 6px;
  margin-bottom: 7px;
  overflow: hidden;
}

.score-peek-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 50%, var(--green) 100%);
  border-radius: 6px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}

.score-peek-hint { font-size: .82rem; color: var(--text-sub); }

/* ── Nav (btn next — fallback, kept for acessibilidade) ── */
.quiz-nav {
  max-width: 600px;
  margin: 12px auto 0;
  display: flex;
  justify-content: flex-end;
}

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  padding: 9px 20px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}

.btn-next.enabled { opacity: 1; pointer-events: auto; }
.btn-next:hover { background: var(--blue-hover); }


/* ════════════════════════════════════════════════
   LOADING
   ════════════════════════════════════════════════ */
#section-loading {
  display: none;
  min-height: 100vh;
  padding: 80px 20px;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#section-loading.active { display: flex; }

.loading-icon {
  width: 96px;
  height: 96px;
  position: relative;
  margin-bottom: 32px;
}

.loading-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--blue);
  animation: spin 1.2s linear infinite;
}

.loading-ring-2 {
  inset: 10px;
  border-top-color: rgba(26,115,232,.35);
  animation-duration: .9s;
  animation-direction: reverse;
}

.loading-inner {
  position: absolute;
  inset: 22px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.loading-inner svg { width: 22px; height: 22px; }

@keyframes spin { to { transform: rotate(360deg); } }

.loading-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-align: center;
}

.loading-sub {
  font-size: .93rem;
  color: var(--text-sub);
  margin-bottom: 36px;
  text-align: center;
  max-width: 340px;
}

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .87rem;
  color: var(--text-muted);
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border-light);
  transition: all .25s ease;
}

.loading-step.active {
  color: var(--blue);
  background: var(--blue-light);
  border-color: rgba(26,115,232,.2);
}

.loading-step.done {
  color: var(--green);
  background: var(--green-light);
  border-color: rgba(52,168,83,.2);
}

.step-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════
   RESULTADO
   ════════════════════════════════════════════════ */
#section-result {
  display: none;
  padding-bottom: 80px;
  background: var(--surface);
}

#section-result.active { display: block; }

/* Score header */
.result-header {
  background: var(--bg);
  padding: 44px 20px 36px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 28px;
}

.result-badge-wrap { margin-bottom: 24px; }

.result-score-ring {
  position: relative;
  width: 144px;
  height: 144px;
  margin: 0 auto;
}

.result-score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg { fill: none; stroke: var(--border-light); stroke-width: 10; }

.ring-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(.4,0,.2,1);
}

.result-score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.result-score-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.result-score-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.result-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.result-subtitle {
  font-size: .95rem;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── App mockup block (resultado) ── */
.result-mockup {
  max-width: 680px;
  margin: 0 auto 28px;
  padding: 0 20px;
}

.result-mockup-inner {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.result-mockup-inner img {
  width: 100%;
  display: block;
}

.result-mockup-placeholder {
  padding: 48px 20px;
  text-align: center;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
}

.result-mockup-placeholder svg { width: 48px; height: 48px; margin: 0 auto 12px; display: block; opacity: .3; }
.result-mockup-placeholder p { font-size: .82rem; }

/* ── Diagnosis Grid ── */
.diagnosis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto 28px;
  padding: 0 20px;
}

@media (min-width: 600px) {
  .diagnosis-grid { grid-template-columns: 1fr 1fr; }
}

.diag-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--border);
}

.diag-card.critical { border-left-color: var(--red); }
.diag-card.warn     { border-left-color: var(--yellow); }
.diag-card.ok       { border-left-color: var(--green); }

.diag-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }

.diag-label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 4px;
}

.diag-card.critical .diag-label { color: var(--red); }
.diag-card.warn .diag-label     { color: #C5720A; }
.diag-card.ok .diag-label       { color: var(--green); }

.diag-title  { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: 5px; }
.diag-text   { font-size: .8rem; color: var(--text-sub); line-height: 1.55; }

/* ── Plan Section ── */
.plan-section {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 680px;
  margin: 0 auto 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.plan-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text); }
.plan-subtitle { font-size: .82rem; color: var(--text-sub); margin-top: 4px; }

.plan-badge {
  background: var(--blue-light);
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.plan-steps { display: flex; flex-direction: column; gap: 14px; }

.plan-step { display: flex; gap: 14px; align-items: flex-start; }

.plan-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-step-text { font-size: .88rem; color: var(--text-sub); line-height: 1.65; padding-top: 4px; }

/* ── Urgency Bar ── */
.urgency-bar {
  background: var(--blue-light);
  border: 1px solid rgba(26,115,232,.2);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--blue);
  font-weight: 700;
  max-width: 680px;
  margin: 0 auto 24px;
}

/* ── Offer Block ── */
.offer-block {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  max-width: 680px;
  margin: 0 auto;
  border: 2px solid var(--blue);
  box-shadow: 0 4px 28px rgba(26,115,232,.12);
  text-align: center;
}

.offer-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.offer-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 14px;
}

.offer-desc {
  font-size: .95rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.offer-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-sub);
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-price { margin-bottom: 22px; }
.offer-price-old  { font-size: .88rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.offer-price-value { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 4px; }
.offer-price-note { font-size: .8rem; color: var(--text-muted); }

.btn-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 17px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(26,115,232,.3);
  letter-spacing: .01em;
}

.btn-offer:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,115,232,.35);
}

.offer-guarantee {
  margin-top: 16px;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
