/* ==========================================================================
   MÉTODO MEMÓRIA VIVA — DESIGN SYSTEM (ESTILO CALIGRAFIA FÁCIL)
   Tipografia: Plus Jakarta Sans
   Layout: Mobile-first App Container elevado (max-w 500px, rounded 2rem, shadow)
   Cores: HSL / Tailwind Tokens (Verde Esmeralda, Vermelho Rubi, Âmbar Dourado)
   ========================================================================== */

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

:root {
  /* Tokens de Cor (caligrafiafacil.com.br) */
  --background: 216 55% 92%;           /* #dce6f2 - Fundo ardósia suave da página */
  --foreground: 220 20% 16%;           /* #1e293b - Texto escuro principal */
  --card: 0 0% 100%;                   /* #ffffff - Fundo branco do container */
  --card-foreground: 220 20% 16%;
  --primary: 142 72% 37%;              /* #16a34a - Verde esmeralda para conversão */
  --primary-foreground: 0 0% 100%;
  --destructive: 343 81% 49%;          /* #e11d48 - Vermelho rubi para urgência/dor */
  --destructive-foreground: 0 0% 100%;
  --success: 142 72% 37%;              /* #16a34a - Verde aprovação */
  --success-foreground: 0 0% 100%;
  --warning: 45 93% 47%;               /* #f59e0b - Âmbar/Dourado para bônus */
  --warning-foreground: 220 20% 16%;
  --muted: 210 40% 96.1%;              /* #f1f5f9 - Fundo cinza suave de cartões */
  --muted-foreground: 215 16% 47%;     /* #64748b - Texto secundário */
  --border: 214 32% 91%;               /* #e2e8f0 - Bordas sutis */
  --radius: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  /* Fontes */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-elevated: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(22, 163, 74, 0.4);
}

/* Reset Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wrapper da Página (Desktop centrado, mobile fluido) */
.page-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 0;
}

@media (min-width: 640px) {
  .page-wrapper {
    padding: 1.5rem 1rem 3rem 1rem;
  }
}

@media (min-width: 768px) {
  .page-wrapper {
    padding: 2rem 1rem 4rem 1rem;
  }
}

/* Container Central "App Card" estilo Caligrafia Fácil */
.main-container {
  width: 100%;
  max-width: 500px;
  background-color: hsl(var(--card));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  border-radius: 0;
}

@media (min-width: 640px) {
  .main-container {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-elevated);
    border: 1px solid hsl(var(--border));
  }
}

/* ==========================================================================
   BARRA DE URGÊNCIA SUPERIOR
   ========================================================================== */
.top-banner {
  background: linear-gradient(90deg, #dc2626, #e11d48);
  color: #ffffff;
  padding: 0.625rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.top-banner span {
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

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

/* ==========================================================================
   ESTRUTURA DE SEÇÕES
   ========================================================================== */
.section {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
  position: relative;
}

.section-first {
  border-top: none;
  padding-top: 1.75rem;
  padding-bottom: 2.5rem;
}

/* Espaçamentos e Utilitários */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Tipografia Estilo Caligrafia Fácil */
.title-hero {
  font-family: var(--font-family);
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.02em;
}

@media (min-width: 480px) {
  .title-hero {
    font-size: 1.65rem;
    line-height: 1.45;
  }
}

.title-section {
  font-family: var(--font-family);
  font-size: 1.35rem;
  font-weight: 900;
  color: hsl(var(--card-foreground));
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

@media (min-width: 480px) {
  .title-section {
    font-size: 1.5rem;
  }
}

.subtitle-hero {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: hsl(var(--card-foreground));
}

.highlight-span {
  background-color: #fef08a;
  padding: 0.1em 0.35em;
  border-radius: 0.35rem;
  color: #000000;
  font-weight: 900;
}

.text-destructive {
  color: hsl(var(--destructive));
}

.text-success {
  color: hsl(var(--success));
}

.text-warning {
  color: hsl(var(--warning));
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.underline-destructive {
  text-decoration: underline;
  text-decoration-color: hsl(var(--destructive));
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  color: hsl(var(--destructive));
  font-style: italic;
}

/* ==========================================================================
   HEADER / LOGO
   ========================================================================== */
.brand-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground));
}

.brand-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: hsl(var(--success));
  box-shadow: 0 0 8px hsl(var(--success));
}

/* ==========================================================================
   BOTÃO DE CTA (ESTILO CALIGRAFIA FÁCIL)
   ========================================================================== */
.btn-cta {
  width: 100%;
  padding: 1.125rem 1rem;
  background-color: hsl(var(--success));
  color: #ffffff !important;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border-radius: 0.875rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(22, 163, 74, 0.5);
}

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

/* Efeito de brilho pulsante no botão principal */
.btn-pulse {
  animation: pulse-ring 2.2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.btn-cta:hover .btn-icon {
  transform: translateX(3px);
}

/* Selos de Confiança abaixo do CTA */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.trust-item-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(22, 163, 74, 0.05);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 0.75rem;
  padding: 0.625rem 0.375rem;
  text-align: center;
}

.trust-item-box svg {
  color: hsl(var(--success));
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.trust-item-box span {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  color: hsl(var(--card-foreground));
}

.trust-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

.trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-inline svg {
  color: hsl(var(--success));
}

/* ==========================================================================
   CARDS COMPARATIVOS: ANTES 😞 vs DEPOIS 😊 (ESTILO CALIGRAFIA FÁCIL)
   ========================================================================== */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.comparison-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.card-before {
  border: 3px solid hsl(var(--destructive));
  background: linear-gradient(180deg, rgba(225, 29, 72, 0.04) 0%, #ffffff 100%);
}

.card-after {
  border: 3px solid hsl(var(--success));
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.04) 0%, #ffffff 100%);
}

.comparison-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9375rem;
}

.header-before {
  color: hsl(var(--destructive));
  background-color: rgba(225, 29, 72, 0.08);
}

.header-after {
  color: hsl(var(--success));
  background-color: rgba(22, 163, 74, 0.08);
}

.comparison-body {
  padding: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--card-foreground));
  line-height: 1.5;
}

.comparison-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comparison-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.comparison-body li span.icon {
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ==========================================================================
   LISTA DE DESTAQUES (BG-MUTED + CHECKMARKS VERDES)
   ========================================================================== */
.feature-list-card {
  background-color: hsl(var(--muted));
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.25rem;
  border: 1px solid hsl(var(--border));
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-weight: 500;
  font-size: 0.9375rem;
  color: hsl(var(--card-foreground));
  line-height: 1.45;
}

.feature-list-item strong {
  color: hsl(var(--foreground));
  font-weight: 700;
}

.feature-list-item svg {
  color: hsl(var(--success));
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.feature-list-divider {
  border: none;
  border-top: 1px solid hsl(var(--border));
  margin: 0;
}

/* ==========================================================================
   COMO FUNCIONA & PÍLULAS DE TRANQUILIDADE (CLAREZA DE ENTREGA & APLICAÇÃO)
   ========================================================================== */
.reassurance-pills-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0 0.5rem 0;
}

.reassurance-pill {
  background-color: #ffffff;
  border: 1.5px solid rgba(22, 163, 74, 0.25);
  border-left: 4px solid hsl(var(--primary));
  border-radius: var(--radius-lg);
  padding: 0.75rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84375rem;
  color: #334155;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.reassurance-pill strong {
  color: #0f172a;
}

.reassurance-pill .pill-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.how-it-works-box {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1.125rem;
  margin: 1.25rem 0;
  box-shadow: var(--shadow-sm);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.how-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.how-step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 1rem 0.875rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.step-badge {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, hsl(var(--primary)), #15803d);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(22, 163, 74, 0.35);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.step-content strong {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.step-content p {
  font-size: 0.84375rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   CAIXA DE DESTAQUE VERDE (BG-SUCCESS/10)
   ========================================================================== */
.highlight-box-green {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background-color: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  padding: 1rem;
  border-radius: var(--radius);
}

.highlight-box-green svg {
  color: hsl(var(--success));
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 20px;
  height: 20px;
}

.highlight-box-green p {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--card-foreground));
  line-height: 1.5;
}

/* Imagens com cantos arredondados */
.img-rounded-2xl {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   COMO FUNCIONA: 3 PASSOS COM CARTÕES
   ========================================================================== */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: hsl(var(--muted));
  border-radius: var(--radius-xl);
  border: 1px solid hsl(var(--border));
  transition: transform 0.15s ease;
}

.step-card:hover {
  transform: translateY(-2px);
}

.step-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
}

.step-content h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: hsl(var(--card-foreground));
  margin-bottom: 0.25rem;
}

.step-content h3 span {
  color: hsl(var(--success));
}

.step-content p {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.45;
}

/* ==========================================================================
   BÔNUS EXCLUSIVOS: CAIXAS TRACEJADAS DOURADAS (ESTILO CALIGRAFIA FÁCIL)
   ========================================================================== */
.bonus-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  border: 2px dashed hsl(var(--warning));
  border-radius: var(--radius-xl);
  background-color: rgba(245, 158, 11, 0.08);
  margin-top: 1.5rem;
}

.bonus-badge-floating {
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  background-color: hsl(var(--warning));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  animation: pulse-scale 2.5s infinite ease-in-out;
}

@keyframes pulse-scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.bonus-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.bonus-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.bonus-text h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: hsl(var(--card-foreground));
  margin-bottom: 0.25rem;
}

.bonus-text p {
  font-size: 0.8125rem;
  color: hsl(var(--card-foreground));
  line-height: 1.45;
}

.bonus-price-tag {
  text-align: center;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(245, 158, 11, 0.4);
  font-size: 0.8125rem;
  color: hsl(var(--card-foreground));
}

.bonus-price-tag .old-price {
  text-decoration: line-through;
  color: hsl(var(--destructive));
  font-weight: 600;
}

.bonus-price-tag .free-price {
  color: hsl(var(--success));
  font-weight: 900;
  text-decoration: underline;
}

/* ==========================================================================
   BENEFÍCIOS: ÍCONES CIRCULARES VERDES
   ========================================================================== */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.benefit-icon-circle {
  margin-top: 0.125rem;
  border-radius: 9999px;
  background-color: rgba(22, 163, 74, 0.1);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon-circle svg {
  width: 1.125rem;
  height: 1.125rem;
  color: hsl(var(--success));
}

.benefit-text p.b-title {
  font-weight: 800;
  font-size: 0.9375rem;
  color: hsl(var(--card-foreground));
}

.benefit-text p.b-desc {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.45;
}

/* ==========================================================================
   DEPOIMENTOS / PROVA SOCIAL
   ========================================================================== */
.testimonials-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card {
  background-color: hsl(var(--muted));
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  border: 1px solid hsl(var(--border));
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.875rem;
  font-style: italic;
  color: hsl(var(--card-foreground));
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #0d9488);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.8125rem;
  color: hsl(var(--card-foreground));
}

.author-info small {
  font-size: 0.6875rem;
  color: hsl(var(--success));
  font-weight: 700;
}

/* ==========================================================================
   OFERTA & TABELA DE PREÇO (COM CRONÔMETRO DIGITAL VERMELHO)
   ========================================================================== */
.pricing-section {
  background: linear-gradient(180deg, #ffffff 0%, rgba(22, 163, 74, 0.04) 100%);
}

/* Cronômetro Digital em Blocos Vermelhos (caligrafiafacil.com.br) */
.timer-container {
  text-align: center;
  margin-bottom: 1.25rem;
}

.timer-label {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(var(--card-foreground));
  margin-bottom: 0.625rem;
}

.digital-clock {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.75rem;
  font-weight: 900;
}

.clock-block {
  background-color: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  min-width: 58px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.clock-unit {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-top: 0.25rem;
  font-family: var(--font-family);
  font-weight: 700;
}

/* Cartão da Oferta */
.pricing-card {
  border: 3px solid hsl(var(--success));
  border-radius: var(--radius-2xl);
  padding: 1.75rem 1.25rem;
  background-color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(22, 163, 74, 0.2);
  position: relative;
  text-align: center;
}

.pricing-badge-top {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #16a34a, #15803d);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 900;
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* Card Plano Trimestral Básico (R$ 19,90) */
.pricing-card-basic {
  border: 2px solid hsl(var(--border));
  border-radius: var(--radius-2xl);
  padding: 1.75rem 1.25rem 1.5rem 1.25rem;
  background-color: hsl(var(--muted));
  position: relative;
  text-align: center;
  transition: border-color 0.2s ease;
}

.pricing-card-basic:hover {
  border-color: rgba(22, 163, 74, 0.3);
}

.pricing-badge-basic {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #64748b;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn-secondary-plan {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: #ffffff;
  color: hsl(var(--card-foreground)) !important;
  border: 2px solid hsl(var(--border));
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary-plan:hover {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
}

.item-disabled {
  opacity: 0.55;
  color: hsl(var(--muted-foreground)) !important;
}

.item-disabled span {
  text-decoration: line-through;
}

.price-product-name {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: hsl(var(--card-foreground));
  margin-top: 0.5rem;
}

.price-strike {
  font-size: 0.9375rem;
  color: hsl(var(--destructive));
  text-decoration: line-through;
  font-weight: 700;
  margin-top: 0.25rem;
}

.price-headline {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(var(--card-foreground));
  margin-top: 0.25rem;
}

.price-big-wrap {
  margin: 0.5rem 0 1rem 0;
}

.price-big {
  font-size: 2.75rem;
  font-weight: 900;
  color: hsl(var(--success));
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-big span.currency {
  font-size: 1.25rem;
  font-weight: 800;
  vertical-align: super;
}

.price-installment {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
  margin-top: 0.25rem;
}

.pricing-includes-list {
  text-align: left;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.pricing-includes-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--card-foreground));
}

.pricing-includes-list li svg {
  color: hsl(var(--success));
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
}

/* ==========================================================================
   GARANTIA (ESTILO CALIGRAFIA FÁCIL)
   ========================================================================== */
.guarantee-box {
  background-color: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: var(--radius-2xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.guarantee-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.guarantee-badge-svg {
  width: 104px;
  height: 104px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.guarantee-box:hover .guarantee-badge-svg {
  transform: scale(1.06) rotate(1deg);
}

.guarantee-box h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: hsl(var(--card-foreground));
  text-transform: uppercase;
}

.guarantee-box p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--card-foreground));
}

/* ==========================================================================
   FAQ ACORDEÃO (ESTILO CALIGRAFIA FÁCIL)
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background-color: hsl(var(--card));
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
  border-color: rgba(22, 163, 74, 0.4);
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.125rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 800;
  color: hsl(var(--card-foreground));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: hsl(var(--muted-foreground));
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: hsl(var(--success));
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.125rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.125rem 1.125rem 1.125rem;
}

/* ==========================================================================
   RODAPÉ (ESTILO CALIGRAFIA FÁCIL)
   ========================================================================== */
.footer-box {
  padding: 2rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--muted));
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.footer-seals {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-seal-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
}

.footer-seal-item svg {
  color: hsl(var(--success));
  width: 18px;
  height: 18px;
}

.footer-copy {
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ==========================================================================
   STICKY CTA FLUTUANTE INFERIOR (MOBILE)
   ========================================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid hsl(var(--border));
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 0.875rem;
  white-space: nowrap;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 641px) {
  .sticky-cta-bar {
    max-width: 500px;
    left: 50%;
    transform: translate(-50%, 110%);
    border-radius: 1.25rem 1.25rem 0 0;
    border-left: 1px solid hsl(var(--border));
    border-right: 1px solid hsl(var(--border));
    padding: 0.875rem 1.25rem;
  }
  .sticky-cta-bar.visible {
    transform: translate(-50%, 0);
  }
}

/* ==========================================================================
   NOVOS COMPONENTES DO FUNIL DE 9 ETAPAS (FOCO NO FAMILIAR)
   ========================================================================== */

/* 1. Etapa 4: Card de Conexão Emocional do Autor */
.author-story-box {
  background: linear-gradient(180deg, #ffffff 0%, hsl(var(--muted)) 100%);
  border: 2px solid hsl(var(--border));
  border-left: 5px solid hsl(var(--primary));
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.author-profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.125rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid hsl(var(--border));
}

@media (min-width: 440px) {
  .author-profile-header {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1.25rem;
  }
}

.author-photo-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  flex-shrink: 0;
}

.author-profile-photo {
  width: 144px;
  height: 144px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 25px -4px rgba(22, 163, 74, 0.25), 0 4px 10px rgba(0, 0, 0, 0.08);
  outline: 2px solid hsl(var(--primary) / 0.35);
  transition: transform 0.3s ease;
}

.author-profile-photo:hover {
  transform: scale(1.03);
}

.author-photo-tag {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, hsl(var(--primary)), #15803d);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #ffffff;
}

.author-profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}

@media (min-width: 440px) {
  .author-profile-info {
    align-items: flex-start;
  }
}

.author-profile-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
}

.author-profile-role {
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1.35;
}

.author-profile-sub {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(22, 163, 74, 0.12);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.author-quote-highlight {
  font-style: italic;
  color: #0f172a;
  font-weight: 700;
  border-left: 3px solid hsl(var(--destructive));
  padding-left: 0.875rem;
  margin: 1rem 0;
  line-height: 1.5;
}

/* Provas Sociais na Etapa de Conexão */
.connection-social-proof-wrap {
  margin-top: 1.25rem;
}

.badge-mini-heart {
  display: inline-block;
  background-color: rgba(22, 163, 74, 0.1);
  color: hsl(var(--primary));
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.connection-testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.connection-test-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  padding: 1.125rem 1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.test-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.test-quote-stars {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

.test-verified-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  background-color: rgba(22, 163, 74, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.connection-quote-text {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.55;
  font-style: normal;
}

.connection-quote-text em {
  font-weight: 700;
  color: #0f172a;
  font-style: italic;
}

.connection-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding-top: 0.625rem;
  border-top: 1px solid hsl(var(--border));
}

.avatar-circle-sm {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.18), rgba(22, 163, 74, 0.3));
  color: hsl(var(--primary));
  font-size: 0.8125rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(22, 163, 74, 0.35);
}

.connection-author-sub {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  display: block;
  line-height: 1.35;
  margin-top: 0.1rem;
}

.connection-author-row strong {
  display: block;
  font-size: 0.75rem;
  color: hsl(var(--card-foreground));
  line-height: 1.2;
}

.connection-author-row span {
  display: block;
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.2;
}

/* 2. Etapa 5: Validação Institucional & Neurociência */
.institutional-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.institutional-card {
  background-color: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  padding: 1.125rem 1rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.institutional-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.inst-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: rgba(22, 163, 74, 0.12);
  color: hsl(var(--primary));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inst-content h4 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: hsl(var(--card-foreground));
  margin-bottom: 0.25rem;
}

.inst-content p {
  font-size: 0.8125rem;
  color: hsl(var(--foreground));
  line-height: 1.5;
}

/* 3. Etapa 6: Custo da Inércia (Malefícios) vs Benefícios */
.inertia-contrast-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.inertia-card-bad {
  background-color: #fef2f2;
  border: 2px solid rgba(225, 29, 72, 0.25);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1rem;
}

.inertia-header-bad {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 900;
  color: hsl(var(--destructive));
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(225, 29, 72, 0.2);
}

.inertia-list-bad {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.inertia-list-bad li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84375rem;
  color: #7f1d1d;
  line-height: 1.45;
}

.inertia-list-bad li svg {
  color: hsl(var(--destructive));
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
}

.inertia-card-good {
  background-color: #f0fdf4;
  border: 2px solid rgba(22, 163, 74, 0.35);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1rem;
}

.inertia-header-good {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 900;
  color: hsl(var(--success));
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(22, 163, 74, 0.25);
}

.inertia-list-good {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.inertia-list-good li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84375rem;
  color: #14532d;
  line-height: 1.45;
}

.inertia-list-good li svg {
  color: hsl(var(--success));
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
}

/* 4. Etapa 6: Tese de Reportagem Especial */
.reportage-box {
  background-color: #ffffff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.125rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.reportage-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 900;
  background-color: #0f172a;
  color: #f8fafc;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.625rem;
}

.reportage-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

.reportage-body {
  font-size: 0.84375rem;
  color: #334155;
  line-height: 1.6;
}

/* 5. Etapa 6: Por que o acesso é cobrado? */
.why-charged-box {
  background-color: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  padding: 1.125rem 1rem;
  font-size: 0.84375rem;
  line-height: 1.55;
  color: #334155;
}

.why-charged-box h4 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: hsl(var(--card-foreground));
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Card de Oportunidade Primeiro Acesso (Estilo da Imagem de Referência) */
.first-access-card {
  background-color: #ecfdf5;
  border: 2px solid #059669;
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.25rem;
  text-align: left;
  margin-top: 1.25rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
}

.first-access-badge {
  display: inline-block;
  background-color: #059669;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.first-access-title {
  font-size: 1.1875rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.first-access-text {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

/* 6. Etapa 7: Escassez Interativa (Harmonizada com a Landing Page e Compacta no Mobile) */
:root {
  --voucher-harmonious-bg: #ecfdf5;
  --voucher-harmonious-notch: #e2f8ec;
}

.voucher-lime-section {
  background: linear-gradient(180deg, #ecfdf5 0%, #e0f7ea 100%);
  padding: 3.5rem 1.25rem 4.5rem 1.25rem;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 2px solid #a7f3d0;
  border-bottom: 2px solid #a7f3d0;
  margin-bottom: 2rem;
}

/* Decorações flutuantes sutis e elegantes */
.lime-decor-card {
  position: absolute;
  width: 38px;
  height: 24px;
  background-color: #a7f3d0;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0.6;
}

.lime-decor-card::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 3.5px;
  background-color: #6ee7b7;
}

.card-tl {
  top: 15%;
  left: 14px;
  transform: rotate(-12deg);
}

.card-br {
  bottom: 15%;
  right: 14px;
  transform: rotate(10deg);
}

.lime-decor-star {
  position: absolute;
  color: #059669;
  font-size: 1.15rem;
  pointer-events: none;
  opacity: 0.7;
}

.star-tr {
  top: 18%;
  right: 22px;
}

.star-ml {
  bottom: 20%;
  left: 24px;
}

/* Títulos do Voucher (Com presença marcante e respiração) */
.voucher-screen-title {
  font-size: clamp(1.65rem, 6.2vw, 2.2rem);
  font-weight: 900;
  color: #064e3b;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.voucher-screen-subtitle {
  font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
  font-weight: 600;
  color: #047857;
  line-height: 1.45;
  max-width: 320px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
  transition: all 0.3s ease;
}

/* O Cartão Ingresso / Ticket (Ampliado para destaque visual) */
.lime-ticket-card {
  position: relative;
  width: 100%;
  max-width: 290px;
  background-color: #ffffff;
  border: 3px solid #064e3b;
  border-radius: 22px;
  box-shadow: 8px 8px 0px #064e3b;
  padding: 1.5rem 1.25rem 1.125rem 1.25rem;
  margin: 0 auto 1.75rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  user-select: none;
  overflow: visible;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lime-ticket-card:hover {
  transform: translateY(-3px);
  box-shadow: 10px 10px 0px #064e3b;
}

.lime-ticket-card:active {
  transform: translateY(1px);
  box-shadow: 5px 5px 0px #064e3b;
}

/* Notches (recortes circulares laterais no formato de ingresso) */
.lime-ticket-card::before,
.lime-ticket-card::after {
  content: '';
  position: absolute;
  top: 64%;
  width: 24px;
  height: 24px;
  background-color: var(--voucher-harmonious-notch);
  border: 3px solid #064e3b;
  border-radius: 50%;
  z-index: 3;
}

.lime-ticket-card::before {
  left: -14px;
}

.lime-ticket-card::after {
  right: -14px;
}

/* Conteúdo interno do Ticket */
.ticket-flower-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.5rem;
}

/* Estado 1: Inicial (Não Resgatado) */
.ticket-initial-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.ticket-initial-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #064e3b;
  line-height: 1.15;
  margin: 0.35rem 0 1rem 0;
  letter-spacing: -0.01em;
}

/* Estado 2: Resgatado */
.ticket-redeemed-wrap {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: pop-in 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.ticket-redeemed-title {
  font-size: 2rem;
  font-weight: 900;
  color: #064e3b;
  line-height: 1.05;
  margin: 0.2rem 0 0.1rem 0;
  letter-spacing: -0.02em;
}

.ticket-redeemed-title span {
  font-size: 1.3rem;
  display: block;
}

.ticket-redeemed-sub {
  font-size: 0.78125rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.35;
  margin: 0.4rem 0 0.75rem 0;
  padding: 0 0.25rem;
}

/* Código de Barras */
.ticket-barcode-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  padding-top: 0.4rem;
  border-top: 1px dashed #cbd5e1;
}

.ticket-barcode-svg {
  width: 170px;
  height: 42px;
}

.barcode-num {
  display: none;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #064e3b;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
}

/* Botão Preto Estilo Imagem */
.btn-voucher-black {
  width: 100%;
  max-width: 290px;
  background-color: #0f172a;
  color: #ffffff !important;
  font-size: 1.0625rem;
  font-weight: 800;
  border-radius: 14px;
  padding: 1rem 1.75rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.28);
  transition: transform 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-voucher-black:hover {
  transform: translateY(-2px);
  background-color: #1e293b;
}

.btn-voucher-black:active {
  transform: translateY(1px);
}

/* Quando Resgatado (Classe .is-redeemed adicionada ao container) */
.voucher-lime-section.is-redeemed .ticket-initial-wrap {
  display: none;
}

.voucher-lime-section.is-redeemed .ticket-redeemed-wrap {
  display: flex;
}

.voucher-lime-section.is-redeemed .barcode-num {
  display: block;
}

@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

/* Canvas para Confetes */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999999;
}

