/* ============================================================
   365 DIAS COM SÃO MIGUEL ARCANJO — Quiz Funnel Styles
   Paleta: Azul Royal + Dourado
   Mobile-first | Sem frameworks externos
   ============================================================ */

/* --- Google Fonts (única CDN permitida) --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --azul-royal: #1E3A8A;
  --azul-claro: #3B82F6;
  --dourado: #D4A017;
  --dourado-claro: #F5E6A8;
  --verde-cta: #16A34A;
  --verde-cta-hover: #15803D;
  --verde-claro-bg: #DCFCE7;
  --branco: #FFFFFF;
  --cinza-suave: #F9FAFB;
  --cinza-borda: #E5E7EB;
  --texto-principal: #1F2937;
  --texto-secundario: #6B7280;

  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(30,58,138,0.12);
  --shadow-lg: 0 8px 32px rgba(30,58,138,0.18);
  --shadow-dourado: 0 4px 24px rgba(212,160,23,0.22);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

/* Nenhum elemento pode causar scroll horizontal */
*:not(html):not(body) {
  max-width: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--branco);
  color: var(--texto-principal);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--azul-claro);
  text-decoration: none;
}

/* --- Progress Bar --- */
#progress-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cinza-borda);
  height: 5px;
  transition: opacity 0.3s ease;
}

#progress-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
}

#progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--azul-royal), var(--azul-claro), var(--dourado));
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 3px 3px 0;
}

/* --- App Container --- */
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* --- Screen System --- */
.screen {
  display: none;
  opacity: 0;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 5px; /* progress bar offset */
  transition: opacity 0.3s ease;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.screen.active {
  display: flex;
  opacity: 1;
}

.screen.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

.screen.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

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

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

/* --- Screen Inner Wrapper --- */
.screen-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Icon São Miguel --- */
.icon-sao-miguel {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--dourado);
  box-shadow: var(--shadow-dourado);
  margin: 12px auto 20px;
}

.icon-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-royal), var(--azul-claro));
  border: 3px solid var(--dourado);
  box-shadow: var(--shadow-dourado);
  margin: 12px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

/* --- Typography --- */
.headline-hero {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--azul-royal);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.headline-md {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 600;
  color: var(--azul-royal);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 16px;
}

.headline-sm {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  font-weight: 600;
  color: var(--azul-royal);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 12px;
}

.subheadline {
  font-size: clamp(1rem, 3vw, 1.15rem);
  color: var(--azul-claro);
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}

.body-text {
  font-size: 0.95rem;
  color: var(--texto-principal);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 20px;
}

.body-text-left {
  font-size: 0.95rem;
  color: var(--texto-principal);
  text-align: left;
  line-height: 1.7;
  margin-bottom: 16px;
}

.text-italic {
  font-style: italic;
  color: var(--texto-secundario);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: center;
}

.text-bold-highlight {
  font-weight: 600;
  color: var(--azul-royal);
  text-align: center;
  font-size: 1rem;
  margin-bottom: 16px;
}

.user-name {
  color: var(--azul-claro);
  font-weight: 700;
}

.microcopy {
  font-size: 0.82rem;
  color: var(--texto-secundario);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
  text-align: center;
  -webkit-appearance: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--azul-royal), #2563EB);
  color: var(--branco);
  box-shadow: 0 4px 16px rgba(30,58,138,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1E40AF, var(--azul-royal));
  box-shadow: 0 6px 24px rgba(30,58,138,0.45);
}

.btn-cta {
  background: linear-gradient(135deg, var(--verde-cta), #15803D);
  color: var(--branco);
  box-shadow: 0 4px 16px rgba(22,163,74,0.35);
  font-size: 1.05rem;
  min-height: 60px;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  animation: pulse-cta 2.5s infinite;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  white-space: normal;
  line-height: 1.3;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #15803D, #166534);
  box-shadow: 0 6px 20px rgba(22,163,74,0.45);
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 16px rgba(22,163,74,0.35); }
  50%       { box-shadow: 0 5px 22px rgba(22,163,74,0.5); }
}

.btn-continue {
  background: linear-gradient(135deg, var(--azul-royal), #2563EB);
  color: var(--branco);
  box-shadow: var(--shadow-md);
}

.btn-continue:hover {
  background: linear-gradient(135deg, #1E40AF, var(--azul-royal));
}

/* --- Input & Textarea --- */
.input-field,
.textarea-field {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cinza-borda);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--texto-principal);
  background: var(--branco);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 16px;
  outline: none;
  -webkit-appearance: none;
}

.input-field:focus,
.textarea-field:focus {
  border-color: var(--azul-claro);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
}

.textarea-field {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

/* --- Option Cards --- */
.options-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.option-card {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 2px solid var(--cinza-borda);
  border-radius: var(--radius-md);
  background: var(--cinza-suave);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--texto-principal);
  text-align: left;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-appearance: none;
  outline: none;
}

.option-card:hover {
  border-color: var(--azul-claro);
  background: #EFF6FF;
  transform: translateX(2px);
}

.option-card.selected {
  border-color: var(--azul-royal);
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  box-shadow: 0 2px 12px rgba(30,58,138,0.15);
}

.option-card .emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* --- Product Box --- */
.produto-box {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--dourado);
  box-shadow: var(--shadow-dourado);
  overflow: hidden;
  background: var(--cinza-suave);
}

.produto-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.produto-placeholder {
  width: 100%;
  max-width: 300px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--dourado);
  box-shadow: var(--shadow-dourado);
  background: linear-gradient(135deg, var(--azul-royal) 0%, #2563EB 50%, var(--dourado) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
  gap: 8px;
}

.produto-placeholder .produto-icon {
  font-size: 3rem;
}

/* --- Imagens reais (substituem placeholders automaticamente) --- */
.icon-sao-miguel-wrap {
  margin: 12px auto 20px;
  width: 72px;
  height: 72px;
}

.icon-emoji-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-royal), var(--azul-claro));
  border: 3px solid var(--dourado);
  box-shadow: var(--shadow-dourado);
  font-size: 2rem;
}

.produto-img-wrap {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 24px;
}

.produto-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 3px solid var(--dourado);
  box-shadow: var(--shadow-dourado);
  display: block;
}

.depoimento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* --- Audio Player --- */
.audio-wrapper {
  width: 100%;
  margin: 20px 0;
  padding: 16px;
  background: linear-gradient(135deg, #EFF6FF, var(--dourado-claro));
  border: 2px solid var(--dourado);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.audio-wrapper audio {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-sm);
}

.audio-label {
  font-size: 0.85rem;
  color: var(--texto-secundario);
  text-align: center;
  font-style: italic;
}

/* --- Loading Screen --- */
.loading-wrapper {
  width: 100%;
  margin: 24px 0;
}

.loading-label {
  font-size: 0.95rem;
  color: var(--texto-secundario);
  text-align: center;
  margin-bottom: 12px;
}

.loading-track {
  width: 100%;
  height: 14px;
  background: var(--cinza-borda);
  border-radius: 99px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.loading-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--azul-royal), var(--azul-claro), var(--dourado));
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 99px;
}

.loading-percent {
  font-size: 0.9rem;
  color: var(--azul-royal);
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

/* --- Screen 10: Sales Page --- */
.sales-banner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--azul-royal), #1E40AF);
  color: var(--branco);
  text-align: center;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
  word-break: break-word;
}

.sales-page {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 16px 60px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.price-box {
  text-align: center;
  padding: 20px;
  background: var(--cinza-suave);
  border-radius: var(--radius-lg);
  border: 2px solid var(--cinza-borda);
  margin: 20px 0;
}

.price-original {
  color: var(--texto-secundario);
  font-size: 0.9rem;
  text-decoration: line-through;
}

.price-por {
  font-size: 0.9rem;
  color: var(--texto-secundario);
  margin: 4px 0;
}

.price-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  color: var(--verde-cta);
  line-height: 1.1;
}

.price-parcel {
  font-size: 0.88rem;
  color: var(--texto-secundario);
  margin-top: 4px;
}

/* --- Offer Stack --- */
.offer-stack-header {
  background: linear-gradient(135deg, var(--azul-royal), #1e40af);
  color: var(--branco);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 24px;
  margin-bottom: 0;
}

.offer-item {
  width: 100%;
  border-left: 4px solid transparent;
  border-right: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
  background: var(--branco);
  padding: 16px;
  position: relative;
}

.offer-item:last-of-type {
  border-radius: 0;
}

.offer-item-principal {
  border-left-color: var(--azul-royal);
  background: #EFF6FF;
  border-right-color: #BFDBFE;
  border-bottom-color: #BFDBFE;
}

.offer-item-bonus {
  border-left-color: var(--verde-cta);
  background: var(--branco);
}

.offer-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.offer-badge-principal {
  background: var(--azul-royal);
  color: var(--branco);
}

.offer-badge-bonus {
  background: var(--verde-cta);
  color: var(--branco);
}

.offer-item-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.offer-info {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.offer-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.offer-info {
  flex: 1;
  min-width: 0;
}

.offer-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--texto-principal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.offer-desc {
  font-size: 0.84rem;
  color: var(--texto-secundario);
  line-height: 1.5;
}

.offer-value-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 56px;
  text-align: center;
  margin-top: 2px;
}

.offer-value-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--texto-secundario);
  font-weight: 600;
  line-height: 1.2;
}

.offer-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--texto-secundario);
  text-decoration: line-through;
  line-height: 1.2;
}

/* Total do stack */
.offer-total {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid var(--verde-cta);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.offer-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--texto-principal);
  margin-bottom: 8px;
}

.offer-total-riscado {
  color: var(--texto-secundario);
  font-size: 0.92rem;
}

.offer-total-destaque {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.offer-total-preco {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--verde-cta);
}

.offer-economia {
  text-align: center;
  font-size: 0.82rem;
  color: #166534;
  background: #BBF7D0;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-weight: 600;
}

.benefits-box {
  background: linear-gradient(135deg, #EFF6FF, var(--dourado-claro));
  border: 2px solid var(--dourado);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 20px 0;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.benefit-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  border: 1px solid var(--cinza-borda);
  width: 100%;
}

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

.benefit-content {
  flex: 1;
  min-width: 0;
}

.benefit-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--azul-royal);
  margin-bottom: 2px;
}

.benefit-text {
  font-size: 0.82rem;
  color: var(--texto-secundario);
  line-height: 1.4;
}

.checklist {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checklist li {
  font-size: 0.93rem;
  color: var(--texto-principal);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checklist li::before {
  content: '✅';
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Carrossel de Depoimentos --- */
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 16px 0 8px;
  position: relative;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
}

.dep-carousel-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 2px solid var(--cinza-borda);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 4px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--cinza-borda);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: var(--azul-royal);
  transform: scale(1.2);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 16px 0;
}

.depoimento-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--cinza-borda);
  background: var(--cinza-suave);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.depoimento-card img {
  width: 100%;
  height: auto;
}

.depoimento-placeholder {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #EFF6FF, var(--dourado-claro));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
}

.depoimento-placeholder .dep-icon {
  font-size: 2rem;
}

.depoimento-placeholder p {
  font-size: 0.8rem;
  color: var(--texto-secundario);
  text-align: center;
  font-style: italic;
}

.garantia-box {
  background: var(--dourado-claro);
  border: 3px solid var(--dourado);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  margin: 24px 0;
  text-align: center;
  box-shadow: var(--shadow-dourado);
}

.garantia-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--azul-royal);
  font-size: 2.5rem;
}

.garantia-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-royal);
  margin-bottom: 10px;
}

.garantia-text {
  font-size: 0.93rem;
  color: var(--texto-principal);
  line-height: 1.6;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), var(--azul-claro));
  margin: 36px auto;
  border-radius: 99px;
}

.btn-cta-final {
  margin-top: 8px;
  animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
  0%   { transform: scale(1);    box-shadow: 0 4px 16px rgba(22,163,74,0.35); }
  50%  { transform: scale(1.04); box-shadow: 0 8px 32px rgba(22,163,74,0.60); }
  100% { transform: scale(1);    box-shadow: 0 4px 16px rgba(22,163,74,0.35); }
}

.sao-miguel-hero-img {
  width: 100%;
  max-width: 300px;
  margin: 16px auto;
  border-radius: var(--radius-lg);
  border: 3px solid var(--dourado);
  box-shadow: var(--shadow-dourado);
  overflow: hidden;
  background: linear-gradient(135deg, var(--azul-royal), #2563EB);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.sales-footer {
  text-align: center;
  padding: 20px 16px;
  font-size: 0.8rem;
  color: var(--texto-secundario);
  border-top: 1px solid var(--cinza-borda);
  margin-top: 32px;
}

/* --- Reforço pré-checkout --- */
.reforco-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--azul-royal);
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 24px;
  line-height: 1.5;
  padding: 0 8px;
}

/* --- Post-select feedback --- */
.feedback-msg {
  display: none;
  background: linear-gradient(135deg, var(--azul-royal), #2563EB);
  color: var(--branco);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 16px;
  animation: fadeIn 0.3s ease;
}

.feedback-msg.visible {
  display: block;
}

/* --- Responsive: telas muito pequenas (até 380px) --- */
@media (max-width: 380px) {
  html {
    font-size: 15px;
  }

  .screen-inner {
    padding: 16px 12px 32px;
  }

  .sales-page {
    padding: 16px 12px 48px;
  }

  .headline-hero {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .headline-md {
    font-size: 1.05rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .btn-cta {
    font-size: 0.98rem;
    padding: 14px 14px;
    min-height: 56px;
  }

  .price-box {
    padding: 16px 12px;
  }

  .price-value {
    font-size: 2rem !important;
  }

  .offer-item,
  .offer-total,
  .garantia-box {
    padding: 14px 12px;
  }

  .offer-icon {
    font-size: 1.6rem;
  }

  .offer-total-preco {
    font-size: 1.3rem;
  }

  .option-card {
    padding: 14px 12px;
    font-size: 0.92rem;
  }

  .option-card .emoji {
    font-size: 1.4rem;
  }

  .reforco-text {
    font-size: 0.82rem;
  }

  .produto-img-wrap {
    max-width: 240px;
  }
}

/* --- Responsive: 600px+ (tablets/desktop pequeno) --- */
@media (min-width: 600px) {
  .screen-inner {
    padding: 32px 32px 48px;
  }

  .depoimentos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-item {
    padding: 20px;
  }
}

/* --- Responsive: 1024px+ --- */
@media (min-width: 1024px) {
  .screen-inner {
    padding: 40px 40px 60px;
  }

  .headline-hero {
    font-size: 2.6rem;
  }

  .sales-page {
    max-width: 720px;
    padding: 32px 24px 80px;
  }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  .screen,
  .screen.fade-in,
  .screen.fade-out,
  .btn,
  .option-card,
  #progress-bar,
  .loading-fill,
  .btn-cta,
  .btn-cta-final {
    transition: none;
    animation: none;
  }
}

:focus-visible {
  outline: 3px solid var(--azul-claro);
  outline-offset: 2px;
}

/* ============================================================
   PRICING GRID — Two-tier offer (Protocolo vs Jornada Premium)
   ============================================================ */

.app-intro-box {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 2px solid var(--azul-claro);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  margin: 20px 0 16px;
  text-align: center;
}

.app-intro-icon {
  font-size: 2rem;
  margin-bottom: 6px;
}

.app-intro-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul-royal);
  margin-bottom: 8px;
}

.app-intro-text {
  font-size: 0.88rem;
  color: var(--texto-principal);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 24px;
  width: 100%;
}

.pricing-card {
  background: var(--branco);
  border: 2px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: 20px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.pricing-card-premium {
  border-color: var(--dourado);
  background: linear-gradient(160deg, #fffbeb 0%, #fff 70%);
  box-shadow: var(--shadow-dourado);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dourado);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texto-secundario);
  margin-bottom: 4px;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--azul-royal);
  margin-bottom: 4px;
  line-height: 1.2;
}

.pricing-duration {
  font-size: 0.74rem;
  color: var(--texto-secundario);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pricing-price-old {
  font-size: 0.72rem;
  color: var(--texto-secundario);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.pricing-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--azul-royal);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-card-premium .pricing-price {
  color: var(--dourado);
  font-size: 1.8rem;
}

.pricing-includes {
  list-style: none;
  text-align: left;
  font-size: 0.73rem;
  line-height: 1.7;
  margin-bottom: 14px;
  width: 100%;
  color: var(--texto-principal);
}

.pricing-includes li {
  padding: 1px 0;
}

.btn-cta-basico {
  background: var(--azul-royal);
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 700;
  font-size: 0.74rem;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-sans);
  transition: background 0.2s ease;
  margin-top: auto;
  line-height: 1.35;
  min-height: 46px;
  letter-spacing: 0.02em;
}

.btn-cta-basico:hover {
  background: #1e40af;
}

.pricing-parcel {
  font-size: 0.7rem;
  color: var(--texto-secundario);
  margin-top: 6px;
}

@media (max-width: 420px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card-premium {
    order: -1;
  }
}
