/* ===========================
   QUIZ AGNÓSTICO — DESIGN SYSTEM
   Mobile-First 9:16 (100dvh)
   =========================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1B8C3D;
  --primary-light: #e8f5e9;
  --primary-dark: #0d6b2e;
  --accent: #FF6B35;
  --accent-light: #fff3ed;
  --text: #1a1a2e;
  --text-secondary: #555;
  --text-muted: #888;
  --bg: #FAFBFC;
  --bg-white: #FFFFFF;
  --border: #e8e8e8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Screens --- */
.screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  height: 100vh;
  display: none;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.screen.active {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 10;
}

.screen.fade-out {
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
}

.screen-inner {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  min-height: 100vh;
}

/* Screens 1-5: no scroll, centered */
#screen-1 .screen-inner,
#screen-2 .screen-inner,
#screen-3 .screen-inner,
#screen-4 .screen-inner,
#screen-5 .screen-inner {
  justify-content: center;
  gap: 14px;
}

#screen-5 .screen-inner {
  padding-bottom: 34px;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  align-self: flex-start;
}

.logo-centered {
  justify-content: center;
  align-self: center;
}

.verified-badge {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* --- Instituto Hero Image --- */
.instituto-hero-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  max-height: 120px;
  box-shadow: var(--shadow-sm);
}

/* --- Progress Bar --- */
.progress-bar-container {
  width: 100%;
  height: 5px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
}

.progress-bar {
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--primary), #4CAF50);
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Content --- */
.content-block {
  text-align: left;
}

.headline {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.03em;
}

.text-highlight {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
  font-weight: 700;
}

.sub-headline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 8px;
}

.sub-headline strong {
  color: var(--text);
}

/* --- Question Label --- */
.question-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

/* --- Option Buttons (Stack) --- */
.options-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  line-height: 1.35;
}

.option-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 140, 61, 0.08);
}

.option-btn:active {
  transform: scale(0.96) translateY(1px);
  border-color: var(--primary);
  background: var(--primary-light);
  transition-duration: 0.08s;
}

.option-btn.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(27, 140, 61, 0.15);
}

.option-btn small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.option-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

/* --- Tela 3: Options with Icons --- */
.option-btn-icon {
  padding: 10px 12px;
  gap: 12px;
}

.option-icon-img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.option-text-wrap {
  font-size: 0.84rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
}

/* --- Tela 5: Food Grid --- */
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.food-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  overflow: hidden;
}

.food-card:hover {
  border-color: var(--primary);
}

.food-card:active {
  transform: scale(0.93);
  transition-duration: 0.08s;
}

.food-card.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(27, 140, 61, 0.15);
}

.food-card.selected .food-check {
  opacity: 1;
  transform: scale(1);
}

.food-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.food-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
}

.food-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition-fast);
}

.btn-continuar {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 10px;
  -webkit-tap-highlight-color: transparent;
}

.btn-continuar.disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-continuar:not(.disabled):hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-continuar:not(.disabled):active {
  transform: scale(0.95) translateY(1px);
  transition-duration: 0.08s;
}

/* --- Tela 6: Processing --- */
.screen-processing {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 32px;
  background: radial-gradient(ellipse at 50% 40%, rgba(27, 140, 61, 0.06) 0%, transparent 70%);
}

.processing-animation {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

/* Outer glow */
.processing-animation::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 140, 61, 0.12) 0%, transparent 70%);
  animation: glow-breathe 2.5s ease-in-out infinite;
}

@keyframes glow-breathe {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Main ring */
.scanner-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(27, 140, 61, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dashed counter-rotating ring */
.scanner-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(27, 140, 61, 0.12);
  animation: spin-reverse 8s linear infinite;
}

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

.scanner-ring-inner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      var(--primary) 0%,
      rgba(76, 175, 80, 0.6) 15%,
      transparent 35%,
      transparent 100%);
  animation: spin-reverse 1.2s linear infinite;
  filter: blur(0.5px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Core pulse with inner dot */
.scanner-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 30px rgba(27, 140, 61, 0.15), inset 0 0 20px rgba(27, 140, 61, 0.05);
  animation: core-pulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scanner-pulse::after {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #4CAF50);
  animation: core-dot 2s ease-in-out infinite;
}

@keyframes core-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px rgba(27, 140, 61, 0.15);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 45px rgba(27, 140, 61, 0.25);
  }
}

@keyframes core-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(0.85);
    opacity: 1;
  }
}

/* Sweeping line */
.scanner-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 65px;
  background: linear-gradient(to top, transparent, var(--primary));
  transform-origin: bottom center;
  transform: translate(-50%, -100%);
  animation: scan-sweep 1.2s linear infinite;
  border-radius: 2px;
  opacity: 0.5;
}

@keyframes scan-sweep {
  to {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}

/* Orbiting dot */
.processing-animation::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--primary);
  animation: spin 3s linear infinite;
  transform-origin: 3px 72px;
  opacity: 0.6;
}

.processing-headline {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  min-height: 2.5em;
  transition: opacity 0.35s ease;
  letter-spacing: -0.01em;
}

.processing-progress-container {
  width: 80%;
  max-width: 300px;
  height: 6px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.processing-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #4CAF50);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.processing-percent {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Tela 7: Opt-in Wall --- */
.screen-optin {
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}

.optin-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(27, 140, 61, 0.15) 0%, rgba(76, 175, 80, 0.08) 50%, rgba(255, 107, 53, 0.08) 100%),
    var(--bg);
  backdrop-filter: blur(30px);
  z-index: 0;
}

.optin-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: center;
}

.optin-success-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.optin-headline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 12px;
}

.optin-subtext {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* --- Opt-in Form --- */
.optin-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.input-group {
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition-fast);
  outline: none;
}

.input-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 140, 61, 0.1);
}

.input-group input::placeholder {
  color: #bbb;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
  background: var(--bg);
}

.phone-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 140, 61, 0.1);
}

.phone-prefix {
  padding: 14px 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--border);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.phone-input-wrap input {
  border: none;
  border-radius: 0;
  padding: 14px 12px;
  flex: 1;
  background: transparent;
}

.phone-input-wrap input:focus {
  box-shadow: none;
}

.btn-optin {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--primary), #2DA44E);
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
  margin-top: 6px;
  -webkit-tap-highlight-color: transparent;
}

.btn-optin:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(27, 140, 61, 0.3);
}

.btn-optin:active {
  transform: scale(0.95) translateY(1px);
  transition-duration: 0.08s;
}

/* Pulse Animation */
.pulse {
  animation: pulse-shadow 2s ease-in-out infinite;
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 140, 61, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(27, 140, 61, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(27, 140, 61, 0);
  }
}

.optin-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* --- Tela 8: Sales Page --- */
.screen-sales {
  overflow-y: auto;
}

.screen-sales .screen-inner {
  min-height: auto;
}

.sales-page {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.sales-block {
  padding: 32px 20px;
}

/* Block 1: Diagnostico */
.block-diagnostico {
  background: var(--bg-white);
  text-align: center;
  padding-top: 40px;
}

.badge-resultado {
  display: inline-block;
  padding: 8px 18px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.sales-headline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 24px;
}

.diagnostico-card {
  background: #FFF8F0;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  text-align: left;
  margin-top: 8px;
}

.diagnostico-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.diagnostico-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.diagnostico-card p:last-child {
  margin-bottom: 0;
}

.diagnostico-destaque {
  color: var(--text) !important;
  font-weight: 500;
}

/* Block 2: Espelhamento */
.block-espelhamento {
  background: var(--bg);
}

.espelhamento-alimentos {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.espelhamento-alimentos img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.sales-subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 16px;
}

.block-espelhamento p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.espelhamento-destaque {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}

.espelhamento-destaque p {
  margin-bottom: 10px;
  color: var(--text);
}

.espelhamento-destaque p:last-child {
  margin-bottom: 0;
}

/* Block 3: Social Proof */
.block-social {
  background: var(--bg-white);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 14px 16px 18px;
  border: 1px solid var(--border);
}

.testimonial-photo {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  max-height: 280px;
  margin-bottom: 12px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #4CAF50);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-header strong {
  font-size: 0.88rem;
  display: block;
}

.testimonial-stars {
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-secondary);
  font-style: italic;
}

/* Block 4: Oferta */
.block-oferta {
  background: var(--primary-light);
  text-align: center;
}

.oferta-mockup {
  text-align: center;
  margin: 20px 0;
}

.mockup-produto-img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  display: block;
}

.mockup-phone {
  width: 130px;
  height: 220px;
  background: #222;
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.mockup-phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 5px;
  background: #444;
  border-radius: 4px;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), #2DA44E);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.mockup-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.2;
}

.mockup-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 4px;
}

.oferta-bullets {
  list-style: none;
  text-align: left;
}

.oferta-bullets li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 14px;
  padding-left: 4px;
}

/* Block 5: Bonus */
.block-bonus {
  background: var(--bg);
}

.bonus-transition {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: center;
}

.bonus-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-img {
  width: 70%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto 14px;
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.bonus-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 0 var(--radius-sm);
  letter-spacing: 0.05em;
}

.bonus-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.bonus-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.bonus-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bonus-price s {
  color: #c0392b;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: #c0392b;
  text-decoration-thickness: 2.5px;
}

.free {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* Block 6: Fechamento */
.block-fechamento {
  background: var(--bg-white);
  text-align: center;
  padding-bottom: 60px;
}

.bundle-mockup {
  text-align: center;
  margin: 16px 0 24px;
}

.bundle-mockup img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-md);
  margin: 0 auto;
  display: block;
}

.bundle-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.bundle-checklist li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bundle-checklist li:last-child {
  border-bottom: none;
}

.bundle-valor {
  font-size: 0.8rem;
  color: #c0392b;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-weight: 600;
  flex-shrink: 0;
}

.fechamento-intro {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.price-box {
  background: linear-gradient(135deg, #f8fdf9, var(--primary-light));
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 20px;
}

.price-old {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 4px;
}

.price-new {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.price-installment {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.price-value {
  color: var(--primary);
}

.price-cash {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.btn-checkout {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--primary), #2DA44E);
  color: white;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
  margin-bottom: 24px;
  -webkit-tap-highlight-color: transparent;
}

.btn-checkout:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27, 140, 61, 0.3);
}

.btn-checkout:active {
  transform: scale(0.98);
}

.garantia {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fdf9;
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
  margin-bottom: 20px;
}

.garantia-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.garantia strong {
  font-size: 0.88rem;
  display: block;
  margin-bottom: 4px;
}

.garantia p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.selos {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.selo {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 6px 12px;
  background: var(--bg);
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* --- Responsive fine-tuning --- */
@media (max-height: 680px) {
  .headline {
    font-size: 1.3rem;
  }

  .option-btn {
    padding: 12px 14px;
    font-size: 0.87rem;
  }

  .option-icon-img {
    width: 42px;
    height: 42px;
  }

  .food-img {
    aspect-ratio: 1;
  }

  .screen-inner {
    padding: 16px 16px;
  }
}

@media (max-height: 600px) {
  .headline {
    font-size: 1.15rem;
  }

  .option-btn {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .option-icon-img {
    width: 36px;
    height: 36px;
  }

  .logo {
    margin-bottom: 4px;
  }

  #screen-1 .screen-inner,
  #screen-2 .screen-inner,
  #screen-3 .screen-inner,
  #screen-4 .screen-inner,
  #screen-5 .screen-inner {
    gap: 12px;
  }
}

@media (min-width: 500px) {
  .screen-inner {
    padding: 32px 24px;
  }
}