/* ==========================================================================
   DESIGN SYSTEM - MOLDES & CRAFTS SALES PAGE (PINK & SCRIPT THEME)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #FFF5F7;
  --bg-card: #FFFFFF;
  --bg-reassurance: #FFF8E7; /* Soft warm cream like original reference image */
  --border-reassurance: #F5E6C8;
  --text-reassurance: #6B4E2E;
  
  --primary-pink: #D81B60;
  --primary-pink-hover: #C2185B;
  --light-pink: #FCE4EC;
  --accent-rose: #E8A598;
  --accent-gold: #D4AF37;
  
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --text-headline: #111827;

  /* Pill Badge Green */
  --badge-green-bg: #E8F5E9;
  --badge-green-border: #C8E6C9;
  --badge-green-text: #1B5E20;

  /* WhatsApp Colors */
  --wa-header-bg: #008069;
  --wa-chat-bg: #E5DDD5;
  --wa-bubble-bg: #FFFFFF;
  --wa-text-main: #111B21;
  --wa-text-muted: #667781;
  --wa-mic-green: #00A884;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-cursive: 'Dancing Script', cursive;
  --font-serif-italic: 'Playfair Display', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(216, 27, 96, 0.06);
  --shadow-md: 0 4px 16px rgba(216, 27, 96, 0.1);
  --shadow-lg: 0 10px 30px rgba(216, 27, 96, 0.15);
  --shadow-knob: 0 4px 12px rgba(216, 27, 96, 0.3);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: #F8EDF1;
  color: var(--text-dark);
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 0;
  overflow-x: hidden;
}

/* Background Floating Sparkles */
.bg-decorations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.25;
  animation: floatSparkle 6s infinite ease-in-out;
}

.s1 { top: 10%; left: 8%; animation-delay: 0s; }
.s2 { top: 35%; right: 6%; animation-delay: 1.5s; }
.s3 { top: 65%; left: 10%; animation-delay: 3s; }
.s4 { top: 85%; right: 12%; animation-delay: 4.5s; }

@keyframes floatSparkle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-15px) scale(1.15); opacity: 0.4; }
}

/* Mobile Container Chassis */
.mobile-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px; /* Smartphone viewport width */
  background-color: var(--bg-main);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  padding: 16px 20px 40px;
  display: flex;
  flex-direction: column;
}

/* Desktop Preview Frame Effect */
@media (min-width: 480px) {
  body {
    padding: 20px 0;
  }
  .mobile-container {
    border-radius: 36px;
    border: 8px solid #FFFFFF;
    min-height: 90vh;
  }
}

/* MULTI-SCREEN SYSTEM (5 Pages Flow) */
.page-screen {
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hidden-screen {
  display: none !important;
  opacity: 0;
  transform: translateX(20px);
}

.active-screen {
  display: flex !important;
  opacity: 1;
  transform: translateX(0);
  animation: fadeInRight 0.4s ease forwards;
}

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

/* FULLSCREEN VIDEO SCREEN (Screen 2 - No Controls) */
.fullscreen-video-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 0 !important;
  margin: 0 !important;
  background: #000000;
  overflow: hidden;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .fullscreen-video-screen {
    border-radius: 28px;
  }
}

.video-embed-fullscreen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  pointer-events: none;
  user-select: none;
}

.video-embed-fullscreen video {
  width: 100% !important;
  height: 100% !important;
  max-height: 100vh;
}



/* Header & Badges */
.top-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-align: center;
}

.live-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--badge-green-bg);
  border: 1.5px solid var(--badge-green-border);
  color: var(--badge-green-text);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: #2E7D32;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(46, 125, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

.live-user-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.cursive-accent-header {
  font-family: var(--font-cursive);
  font-size: 1.4rem;
  color: var(--primary-pink);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Main Headline */
.main-headline {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--text-headline);
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  text-align: center;
}

.highlight-pink {
  color: var(--primary-pink);
  position: relative;
  display: inline-block;
}

.highlight-underline {
  border-bottom: 3px solid var(--primary-pink);
  padding-bottom: 1px;
}

.cursive-inline {
  font-family: var(--font-cursive);
  font-size: 1.65rem;
  color: var(--primary-pink);
  font-weight: 700;
  vertical-align: middle;
}

.cursive-accent-bold {
  font-family: var(--font-cursive);
  font-size: 1.4rem;
  color: var(--primary-pink);
  font-weight: 700;
}

/* Subheadline */
.sub-headline {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
  padding: 0 4px;
  text-align: center;
}

.sub-headline strong {
  color: var(--text-headline);
}

/* Reassurance Highlight Card (Match reference image cream box) */
.reassurance-card {
  width: 100%;
  background-color: var(--bg-reassurance);
  border: 1.5px solid var(--border-reassurance);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

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

.reassurance-text {
  font-size: 0.9rem;
  color: var(--text-reassurance);
  line-height: 1.4;
}

.reassurance-text strong {
  color: #5A3A1E;
}

/* SWIPE TO START MECHANISM */
.swipe-container-wrapper {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swipe-track {
  position: relative;
  width: 100%;
  height: 58px;
  background: #F3E5F5;
  border: 2px solid #E1BEE7;
  border-radius: var(--radius-full);
  padding: 4px;
  display: flex;
  align-items: center;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  cursor: pointer;
}

.swipe-track-bg-text {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-pink);
  letter-spacing: 1px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  left: 20px;
}

.arrows-anim {
  opacity: 0.6;
  animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(6px); opacity: 0.9; }
}

.swipe-knob {
  position: absolute;
  left: 4px;
  top: 4px;
  height: 50px;
  background: linear-gradient(135deg, #D81B60 0%, #AD1457 100%);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-knob);
  transition: width 0.1s ease-out, transform 0.2s ease;
  z-index: 3;
}

.knob-arrow {
  font-size: 1.1rem;
  font-weight: bold;
}

.swipe-subtext {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-arrows {
  color: var(--primary-pink);
  animation: bounceUp 1.2s infinite;
}

@keyframes bounceUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Pagination Footer Dots */
.pagination-footer {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.pagination-footer .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E0E0E0;
  transition: all 0.3s ease;
}

.pagination-footer .dot.active {
  width: 24px;
  border-radius: 12px;
  background: var(--primary-pink);
}

/* SCREEN 3 REFERENCE DESIGN MATCHING & COUNTER DARK CARD */
.ref-dark-card {
  background: #141414;
  color: #FFFFFF;
  border-radius: 22px;
  padding: 22px 18px;
  text-align: center;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  border: 1px solid #2A2A2A;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ref-dark-card.pulse-glow {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

.ref-dark-subtitle {
  font-size: 0.72rem;
  font-weight: 800;
  color: #9CA3AF;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.ref-dark-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: #22C55E; /* Vibrant Green */
  line-height: 1.25;
  margin-bottom: 10px;
  text-shadow: 0 0 24px rgba(34, 197, 94, 0.25);
}

.per-week-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4ADE80;
}

.ref-dark-desc {
  font-size: 0.85rem;
  color: #E5E7EB;
  line-height: 1.4;
  margin-bottom: 14px;
  padding: 0 4px;
}

.ref-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ADE80;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.dot-green {
  width: 6px;
  height: 6px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

/* 3 Product Trio Thumbnails */
.ref-product-trio {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.trio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
}

.trio-img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #FFFFFF;
  background: #FFF;
  transition: transform 0.2s ease;
}

.trio-card:hover .trio-img {
  transform: scale(1.06);
}

.trio-caption {
  font-size: 0.68rem;
  font-weight: 700;
  color: #374151;
  margin-top: 6px;
  text-align: center;
  line-height: 1.2;
}

/* Headline Block */
.ref-headline-wrap {
  text-align: center;
  margin-bottom: 22px;
  padding: 0 4px;
}

.ref-headline {
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--text-headline);
  line-height: 1.32;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.text-green-accent {
  color: #16A34A;
}

.ref-subheadline {
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.45;
  margin-bottom: 10px;
}

.ref-cursive {
  font-size: 1.35rem;
  color: var(--primary-pink);
  font-weight: 700;
}

/* Objection Cards with Red Cross */
.objection-cards-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.objection-card {
  background: #FFFFFF;
  border: 1.5px solid #FEE2E2;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.cross-icon {
  color: #EF4444;
  font-size: 1rem;
  flex-shrink: 0;
}

.objection-text {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.3;
}

/* Continue Button on Screen 3 & 4 */
.continue-btn-wrap {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}

.continue-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #D81B60 0%, #AD1457 100%);
  color: #FFF;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

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

.continue-btn .sub-btn {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 2px;
}

/* ==========================================================================
   SCREEN 4 VISUAL SELECTOR COMPARISON
   ========================================================================== */

.selector-top-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.45;
  margin-top: 6px;
  margin-bottom: 18px;
  padding: 0 10px;
}

/* Grande Card Preto Principal */
.selector-dark-container {
  background: #121214;
  border-radius: 28px;
  padding: 22px 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid #222226;
  margin-bottom: 20px;
}

.selector-dark-header {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #9CA3AF;
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

/* Opções Empilhadas Verticalmente */
.selector-option-card {
  border-radius: 18px;
  margin-bottom: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.selector-option-card:last-child {
  margin-bottom: 0;
}

/* Opções Discretas (Opção 1 e Opção 3) */
.option-discreet {
  background: #202024;
  border: 1px solid #2C2C32;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.75;
}

.cross-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-info {
  flex: 1;
}

.option-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
  line-height: 1.25;
}

.option-subtext {
  font-size: 0.7rem;
  color: #9CA3AF;
  line-height: 1.3;
}

.option-arrow {
  color: #6B7280;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Opção 2 - O Grande Destaque (Fundo Verde Forte) */
.option-winner {
  background: linear-gradient(135deg, #8FE316 0%, #76C908 100%);
  border: 2px solid #A3E635;
  border-radius: 20px;
  padding: 18px 14px;
  box-shadow: 0 8px 24px rgba(143, 227, 22, 0.4);
  position: relative;
}

.winner-content-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0F172A;
  color: #A3E635;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-title-winner {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 3px;
  line-height: 1.2;
}

.option-subtext-winner {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.35;
}

.option-arrow-winner {
  color: #0F172A;
  font-size: 0.95rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Caixa de Atenção Fundo Creme / Amarelo Claro */
.attention-warning-box {
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
}

.attention-badge {
  display: inline-block;
  background: #F59E0B;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.attention-text {
  font-size: 0.85rem;
  color: #92400E;
  line-height: 1.45;
}

.attention-text strong {
  color: #78350F;
}

/* Texto de Encerramento */
.selector-footer-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6B7280;
  text-align: center;
  margin-bottom: 18px;
  padding: 0 10px;
}

/* ==========================================================================
   SCREEN 5: WHATSAPP CHAT APPLICATION SIMULATION (RÉPLICA FIEL)
   ========================================================================== */

.whatsapp-screen-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--wa-chat-bg);
  overflow: hidden;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

@media (min-width: 480px) {
  .whatsapp-screen-full {
    border-radius: 28px;
  }
}

/* WhatsApp Top Header Bar */
.wa-header {
  background-color: var(--wa-header-bg);
  color: #FFFFFF;
  height: 62px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 10;
  flex-shrink: 0;
}

.wa-back-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  padding: 4px;
  margin-right: -2px;
}

.wa-avatar-box {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F48FB1 0%, #D81B60 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.wa-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background-color: #25D366;
  border: 2px solid #008069;
  border-radius: 50%;
}

.wa-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wa-contact-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.wa-status-text {
  font-size: 0.72rem;
  color: #E0F2F1;
  opacity: 0.9;
}

.wa-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.15rem;
  color: #FFFFFF;
}

/* WhatsApp Chat Wallpaper Body */
.wa-chat-body {
  flex: 1;
  background-color: #E5DDD5;
  background-image: radial-gradient(#D2C5B9 1px, transparent 1px);
  background-size: 20px 20px;
  overflow-y: auto;
  padding: 14px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

/* Date Pill Badge */
.wa-date-badge {
  align-self: center;
  background: rgba(255, 255, 255, 0.92);
  color: #54656F;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  margin-bottom: 4px;
}

/* Encryption Warning Box */
.wa-security-box {
  align-self: center;
  width: 95%;
  background: #FFF5C4;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  margin-bottom: 6px;
}

.wa-lock-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.wa-security-box p {
  font-size: 0.7rem;
  color: #54656F;
  line-height: 1.35;
  text-align: center;
}

/* Chat Messages List */
.wa-messages-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Chat Bubbles */
.wa-bubble {
  position: relative;
  max-width: 88%;
  padding: 8px 12px;
  border-radius: 0 14px 14px 14px;
  box-shadow: 0 1px 2px rgba(11, 20, 26, 0.12);
  font-size: 0.88rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.wa-bubble-incoming {
  align-self: flex-start;
  background-color: #FFFFFF;
  color: var(--wa-text-main);
  border-top-left-radius: 2px;
}

.wa-bubble-incoming::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 10px solid #FFFFFF;
  border-left: 10px solid transparent;
}

.wa-bubble-media {
  margin: -4px -8px 6px -8px;
  border-radius: 8px;
  overflow: hidden;
}

.wa-media-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.wa-bubble-time {
  font-size: 0.65rem;
  color: var(--wa-text-muted);
  float: right;
  margin-top: 4px;
  margin-left: 10px;
}

/* Offer Bubble Special Styling */
.wa-bubble-offer {
  max-width: 94%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF0F4 100%);
  border: 1.5px solid var(--primary-pink);
  border-radius: 16px;
  padding: 14px 12px;
}

.wa-offer-card-inner {
  text-align: center;
}

.wa-offer-header {
  font-size: 1.15rem;
  color: var(--primary-pink);
  font-weight: 700;
  margin-bottom: 6px;
}

.wa-old-price {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.wa-main-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--primary-pink);
  font-weight: 800;
  margin: 2px 0;
}

.wa-main-price .currency {
  font-size: 1.1rem;
  margin-right: 2px;
}

.wa-main-price .amount {
  font-size: 2.8rem;
  line-height: 1;
}

.wa-main-price .cents {
  font-size: 1.3rem;
}

.wa-sub-price {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.wa-offer-perks {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  color: #374151;
  font-weight: 700;
  margin-bottom: 12px;
}

.wa-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #D81B60 0%, #C2185B 100%);
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(216, 27, 96, 0.35);
}

.animate-pop {
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Dynamic Typing Indicator Bubble */
.wa-typing-bubble {
  align-self: flex-start;
  padding: 10px 14px;
  min-width: 60px;
}

.hidden-typing {
  display: none !important;
}

.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background-color: #8696A0;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* WhatsApp Bottom Input Footer */
.wa-input-footer {
  background-color: #F0F2F5;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wa-input-box {
  flex: 1;
  background: #FFFFFF;
  border-radius: 24px;
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.wa-input-placeholder {
  flex: 1;
  font-size: 0.88rem;
  color: #8696A0;
}

.wa-input-icon {
  font-size: 1.15rem;
  color: #8696A0;
}

.wa-pay-icon {
  font-size: 0.8rem;
  font-weight: 800;
  color: #008069;
  border: 1.5px solid #008069;
  border-radius: 4px;
  padding: 0 3px;
}

.wa-input-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-mic-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--wa-mic-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

/* Ribbon Divider */
.ribbon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 16px;
}

.ribbon-line {
  flex: 1;
  height: 1px;
  background: #F48FB1;
}

.ribbon-badge {
  background: var(--light-pink);
  color: var(--primary-pink);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid #F8BBD0;
}

/* Printer Feature Spotlight */
.spotlight-card {
  background: #FFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #F8BBD0;
  margin-bottom: 20px;
}

.spotlight-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.spotlight-body {
  padding: 14px;
}

.mini-tag {
  display: inline-block;
  background: var(--light-pink);
  color: var(--primary-pink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.spotlight-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 4px;
}

.spotlight-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Categories Pill Switcher */
.moldes-categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 10px;
  scrollbar-width: none;
}

.moldes-categories::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex-shrink: 0;
  background: #FFF;
  border: 1.5px solid #F8BBD0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-pill.active {
  background: var(--primary-pink);
  color: #FFF;
  border-color: var(--primary-pink);
  box-shadow: var(--shadow-sm);
}

.category-preview-card {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid #F8BBD0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.cat-content h4 {
  font-size: 0.95rem;
  color: var(--primary-pink);
  margin-bottom: 6px;
}

.cat-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cat-features {
  list-style: none;
  font-size: 0.8rem;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.benefit-item {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-pink);
}

.benefit-icon {
  font-size: 1.4rem;
  background: var(--light-pink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-info h4 {
  font-size: 0.9rem;
  color: var(--text-headline);
  margin-bottom: 2px;
}

.benefit-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Testimonials */
.testimonials-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.testimonials-header {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-headline);
}

.testimonial-card {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #FCE4EC;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.user-avatar {
  width: 34px;
  height: 34px;
  background: var(--primary-pink);
  color: #FFF;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-location {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.stars {
  margin-left: auto;
  font-size: 0.75rem;
}

.testimonial-text {
  font-size: 0.82rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.4;
}

/* Guarantee Box */
.guarantee-box {
  background: #F1F8E9;
  border: 1.5px solid #C8E6C9;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.guarantee-badge-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.guarantee-box h4 {
  font-size: 0.9rem;
  color: #2E7D32;
  margin-bottom: 2px;
}

.guarantee-box p {
  font-size: 0.78rem;
  color: #33691E;
  line-height: 1.35;
}

/* Special Offer Pricing Card */
.pricing-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF0F4 100%);
  border: 2px solid var(--primary-pink);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin-bottom: 20px;
}

.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-pink);
  color: #FFF;
  font-size: 1.05rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.font-cursive {
  font-family: var(--font-cursive);
}

.old-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 8px;
}

.current-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--primary-pink);
  font-weight: 800;
  margin: 4px 0;
}

.current-price .currency {
  font-size: 1.2rem;
  margin-right: 4px;
}

.current-price .amount {
  font-size: 3rem;
  line-height: 1;
}

.current-price .cents {
  font-size: 1.4rem;
}

.payment-terms {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* CTA Glow Button */
.cta-button-glow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #D81B60 0%, #C2185B 100%);
  color: #FFF;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.sub-cta {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 2px;
}

.pulse-btn {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0% { transform: scale(1); box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 8px 26px rgba(216, 27, 96, 0.6); }
  100% { transform: scale(1); box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4); }
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 14px;
  flex-wrap: wrap;
}

/* Footer */
.page-footer {
  margin-top: 10px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-legal {
  font-size: 0.68rem;
  opacity: 0.7;
}
