/* ============================================
   GUIA DA LANCHEIRA PRÁTICA - LANDING PAGE CSS
   Design Premium | Mobile-First
   ============================================ */

/* --- VARIÁVEIS GLOBAIS --- */
:root {
  --orange-primary: #FF7A00;
  --orange-dark: #E56D00;
  --orange-light: #FF9A33;
  --orange-vivid: #FF5500;
  --orange-glow: rgba(255, 122, 0, 0.45);
  --orange-subtle: rgba(255, 122, 0, 0.08);
  --white: #FFFFFF;
  --off-white: #FFF9F3;
  --beige: #FFF3E6;
  --beige-dark: #FFE8CC;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-500: #737373;
  --gray-700: #333333;
  --gray-900: #111111;
  --green-success: #22C55E;
  --red-old: #DC2626;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px var(--orange-glow);
  --shadow-3d: 0 20px 60px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-main: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--gray-900);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Base Image Styling */
.content-image {
  width: 100%;
  max-width: 480px;
  margin: 24px auto 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
  object-fit: cover;
}

/* Base Image Styling */
.content-image {
  width: 100%;
  max-width: 400px;
  margin: 24px auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
  object-fit: cover;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* --- WATERMARK TOPO --- */
.watermark-bar {
  background: var(--gray-900);
  color: var(--gray-300);
  text-align: center;
  padding: 6px 16px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- SEÇÃO BASE --- */
section {
  padding: 56px 0;
  position: relative;
}

/* --- FLOATING BACKGROUND ELEMENTS --- */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(70px);
  animation: blobFloat 18s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--orange-primary), var(--orange-vivid));
  top: 5%;
  right: -120px;
  animation-delay: 0s;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orange-light), #FFCC80);
  top: 35%;
  left: -100px;
  animation-delay: -6s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--orange-primary), var(--orange-dark));
  bottom: 15%;
  right: -80px;
  animation-delay: -12s;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-40px) scale(1.08) rotate(3deg); }
  66% { transform: translateY(25px) scale(0.94) rotate(-2deg); }
}

/* --- BACKGROUND ELABORADO (Emojis + 3D) --- */
.floating-icons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  perspective: 1200px;
}

/* Emojis Flutuantes */
.float-emoji {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.08; /* Super sutil para não poluir */
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
  animation: floatEmoji 22s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* Espalhando pela tela (profundidades, tamanhos e blurs diferentes) */
.emoji-1 { top: 8%; left: 5%; font-size: 3rem; animation-delay: 0s; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)) blur(2px); }
.emoji-2 { top: 25%; right: 7%; font-size: 2.2rem; animation-delay: -3s; }
.emoji-3 { top: 45%; left: 3%; font-size: 4rem; animation-delay: -7s; opacity: 0.05; filter: blur(4px); } /* Maior e desfocado no fundo */
.emoji-4 { top: 60%; right: 4%; font-size: 2.8rem; animation-delay: -11s; }
.emoji-5 { top: 85%; left: 12%; font-size: 2rem; animation-delay: -5s; }
.emoji-6 { top: 15%; right: 25%; font-size: 1.5rem; animation-delay: -9s; opacity: 0.06; }
.emoji-7 { top: 75%; right: 20%; font-size: 3.5rem; animation-delay: -14s; filter: blur(3px); opacity: 0.05; }
.emoji-8 { top: 35%; left: 20%; font-size: 1.8rem; animation-delay: -2s; }
.emoji-9 { top: 50%; right: 15%; font-size: 2.4rem; animation-delay: -17s; }
.emoji-10 { top: 90%; right: 35%; font-size: 2rem; animation-delay: -8s; }

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); }
  25% { transform: translateY(-40px) rotateX(15deg) rotateY(-15deg) rotateZ(10deg) scale(1.05); }
  50% { transform: translateY(15px) rotateX(-10deg) rotateY(20deg) rotateZ(-5deg) scale(0.95); }
  75% { transform: translateY(-25px) rotateX(20deg) rotateY(-5deg) rotateZ(15deg) scale(1.02); }
}

/* Formas 3D Premium Sutis */
.float-shape {
  position: absolute;
  opacity: 0.06; /* Mais sutil ainda */
  animation: floatEmoji 25s ease-in-out infinite reverse;
}

.float-shape--sphere {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--orange-primary));
  box-shadow: inset -10px -10px 20px rgba(0,0,0,0.2);
  top: 20%; left: -20px;
  animation-delay: -2s;
  filter: blur(5px);
}

.float-shape--ring {
  width: 150px;
  height: 150px;
  border: 20px solid var(--orange-primary);
  border-radius: 50%;
  top: 60%; right: -40px;
  animation-delay: -12s;
  opacity: 0.04;
  filter: blur(3px);
}

.float-shape--pill {
  width: 50px;
  height: 120px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--orange-vivid), var(--orange-primary));
  top: 80%; left: 20%;
  animation-delay: -8s;
  filter: blur(8px);
}

.float-shape--dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange-light);
  top: 40%; left: 85%;
  animation-delay: -16s;
  filter: blur(2px);
}

/* --- SECTION Z-INDEX --- */
section .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--beige) 40%, var(--off-white) 100%);
  padding: 40px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,122,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,154,51,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__logo-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo {
  max-width: 220px;
  height: auto;
  animation: fadeInDown 0.6s ease-out;
  filter: drop-shadow(0 4px 12px rgba(255, 122, 0, 0.15));
}

/* Pré-headline de urgência */
.hero__pre-headline {
  display: inline-block;
  background: #FFF3F3;
  color: #C0392B;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(192, 57, 43, 0.25);
  margin-bottom: 20px;
  animation: fadeInDown 0.5s ease-out;
  letter-spacing: 0.3px;
}

.hero__headline {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out;
}

.hero__headline span {
  color: var(--orange-primary);
  position: relative;
}

.hero__subheadline {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out 0.15s both;
}

.hero__subheadline strong {
  color: var(--gray-700);
  font-weight: 600;
}

/* VSL Container — 3D elevated */
.vsl-container {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 32px;
  aspect-ratio: 9/16;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d), 0 0 0 1px rgba(255,122,0,0.08);
  position: relative;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  transform: perspective(600px) rotateX(1deg);
  transition: var(--transition);
}

.vsl-container:hover {
  transform: perspective(600px) rotateX(0deg) translateY(-4px);
  box-shadow: var(--shadow-3d), var(--shadow-glow);
}

/* VSL Iframe Otimizado */
.vsl-iframe {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  pointer-events: none; /* Impede navegação para o YouTube, pausa acidental e mantém reprodução contínua */
  z-index: 1;
}

/* Overlay de Conversão */
.vsl-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
}

.vsl-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Thumbnail emocional do VSL */
.vsl-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(255,122,0,0.3) 0%, transparent 60%);
  position: relative;
}

.vsl-thumbnail__text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 1;
}

.vsl-overlay__subtext {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulseOpacity 1.5s infinite;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 1;
}

@keyframes pulseOpacity {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.vsl-overlay .play-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-vivid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow), 0 8px 24px rgba(255,85,0,0.3);
  transition: var(--transition);
  animation: playPulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-glow), 0 8px 24px rgba(255,85,0,0.3); }
  50% { transform: scale(1.08); box-shadow: 0 0 50px var(--orange-glow), 0 12px 30px rgba(255,85,0,0.4); }
}

/* --- CTA BUTTON --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  min-height: 56px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--orange-vivid) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 6px 0 #CC4400, 0 10px 20px rgba(255,122,0,0.4);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out 0.45s both;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
  animation: btnShine 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnShine {
  0%   { left: -120%; }
  50%  { left: 160%; }
  100% { left: 160%; }
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #CC4400, 0 15px 30px rgba(255,122,0,0.5);
}

.cta-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #CC4400, 0 5px 10px rgba(255,122,0,0.4);
}

.cta-sub {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--gray-500);
  animation: fadeInUp 0.6s ease-out 0.55s both;
}

.cta-sub svg {
  vertical-align: middle;
  margin-right: 4px;
}

/* ============================================
   PROBLEMA SECTION
   ============================================ */
.problema {
  background: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.problema__card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
  border: 1px solid transparent;
}

.problema__card:hover {
  border-color: var(--gray-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.problema__card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.problema__card-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.problema__card-text strong {
  color: var(--gray-900);
}

/* --- PASSARELA ANIMADA --- */
.passarela-wrapper {
  position: relative;
  height: 100px;
  margin: 32px -20px -32px; /* Margens negativas para expandir e compensar padding */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.passarela {
  position: absolute;
  width: 150vw;
  left: -25vw;
  display: flex;
  overflow: hidden;
  padding: 12px 0;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.passarela--1 {
  transform: rotate(-4deg);
  background: var(--orange-primary);
  color: var(--white);
  z-index: 2;
}

.passarela--2 {
  transform: rotate(4deg);
  background: var(--white);
  color: var(--orange-primary);
  border-top: 2px solid var(--orange-primary);
  border-bottom: 2px solid var(--orange-primary);
  z-index: 1;
}

.passarela__track {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 25s linear infinite;
}

.passarela__track--reverse {
  animation: scrollMarqueeReverse 25s linear infinite;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollMarqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.passarela span {
  display: inline-flex;
  align-items: center;
}

.passarela__star {
  margin: 0 16px;
  font-size: 1.1rem;
}

/* ============================================
   SOLUÇÃO SECTION
   ============================================ */
.solucao {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--beige) 50%, var(--off-white) 100%);
}

.solucao__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.step-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255,255,255,0.6) inset;
  transform: perspective(500px) rotateX(1deg);
}

.step-card:hover {
  transform: perspective(500px) rotateX(0deg) translateY(-8px);
  box-shadow: var(--shadow-3d);
  border-color: rgba(255,122,0,0.15);
}

.step-card__number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}

.step-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.step-card__text {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================
   BENEFÍCIOS SECTION
   ============================================ */
.beneficios {
  background: var(--white);
}

.beneficios__img-wrapper {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(255,122,0,0.08);
}

.beneficios__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease;
}

.beneficios__img:hover {
  transform: scale(1.03);
}

.beneficios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  background: var(--white);
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-md), 0 0 20px rgba(255,122,0,0.08);
  transform: translateY(-4px) scale(1.02);
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.benefit-card:hover .benefit-card__icon {
  background: var(--orange-primary);
  transform: scale(1.05);
}

.benefit-card__text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* ============================================
   PROVA SOCIAL SECTION
   ============================================ */
.prova-social {
  background: var(--off-white);
}

.social-counter {
  text-align: center;
  margin-bottom: 32px;
}

.social-counter__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  line-height: 1;
}

.social-counter__text {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Audio Player WhatsApp Style */
.audio-player-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.audio-player-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 8px 20px 8px 8px;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  max-width: 320px;
  width: 100%;
  border: 1px solid var(--gray-200);
}

.audio-player__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.audio-player__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.audio-player__play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: transform 0.2s;
}

.audio-player__play-btn:active {
  transform: scale(0.9);
}

.audio-player__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
  flex: 1;
}

.wave-bar {
  width: 3px;
  height: 4px;
  background-color: var(--gray-300);
  border-radius: 2px;
  transition: height 0.1s ease;
}

.wave-bar.active {
  background-color: var(--orange-primary);
  animation: waveWhatsApp 1s infinite alternate ease-in-out;
}

.wave-bar.active:nth-child(even) { animation-duration: 0.7s; }
.wave-bar.active:nth-child(3n) { animation-duration: 1.2s; }
.wave-bar.active:nth-child(4n) { animation-duration: 0.9s; }

@keyframes waveWhatsApp {
  0% { height: 4px; }
  100% { height: 16px; }
}

.audio-player__time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  flex-shrink: 0;
}
  flex-shrink: 0;
  padding: 0;
}

.audio-player__play-btn svg {
  width: 16px;
  height: 16px;
}

.audio-player__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
  flex: 1;
}

.wave-bar {
  width: 4px;
  height: 4px;
  background-color: var(--orange-light);
  border-radius: 50%;
  transition: height 0.1s ease;
}

.wave-bar.active {
  animation: waveWhatsApp 1s infinite alternate ease-in-out;
  border-radius: 2px;
}

.wave-bar.active:nth-child(even) { animation-duration: 0.7s; }
.wave-bar.active:nth-child(3n) { animation-duration: 1.2s; background-color: var(--orange-primary); }
.wave-bar.active:nth-child(4n) { animation-duration: 0.9s; }
.wave-bar.active:nth-child(5n) { background-color: var(--orange-vivid); }

@keyframes waveWhatsApp {
  0% { height: 4px; }
  100% { height: 16px; }
}

.audio-player__time {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  flex-shrink: 0;
}

/* Prova Social Screenshots */
.prova-screenshots {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.prova-screenshot {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--gray-200);
}

.prova-screenshot:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(255,122,0,0.1);
  border-color: var(--orange-light);
}

.prova-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   OFERTA SECTION
   ============================================ */
.oferta {
  background: linear-gradient(180deg, var(--white) 0%, var(--beige) 100%);
}

.oferta__box {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-3d), 0 0 0 1px rgba(255,122,0,0.05);
  position: relative;
  overflow: hidden;
}

.oferta__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange-primary), var(--orange-vivid));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* --- TIMER DA OFERTA --- */
.oferta__timer-wrap {
  background: var(--off-white);
  border: 1px solid var(--beige-dark);
  border-radius: 50px;
  padding: 8px 12px 8px 20px;
  margin-bottom: 24px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.oferta__timer-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  margin: 0;
  text-align: left;
  line-height: 1.3;
}

.oferta__timer {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-vivid), var(--orange-dark));
  padding: 6px 16px;
  border-radius: 50px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 85, 0, 0.3);
}

.oferta__list {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.oferta__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.oferta__list li:last-child {
  border-bottom: none;
}

.oferta__list li .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

/* Item da oferta com valor ancoragem */
.oferta__list-item {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.oferta__item-valor {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: line-through;
  opacity: 0.7;
}

/* Linha de subtotal / ancoragem */
.oferta__anchor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  margin: 4px 0 8px;
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 600;
}

.oferta__anchor-old {
  font-size: 1rem;
  font-weight: 800;
  color: var(--red-old);
  text-decoration: line-through;
}

/* Pop-up de prova social */
.social-proof-popup {
  position: fixed;
  bottom: 24px;
  left: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  z-index: 9999;
  transform: translateX(-300px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.social-proof-popup.show {
  transform: translateX(0);
}

.social-proof-popup__avatar {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.social-proof-popup__text {
  font-size: 0.75rem;
  color: var(--gray-700);
  line-height: 1.4;
}

.social-proof-popup__text strong {
  color: var(--gray-900);
  font-size: 0.8rem;
}

.oferta__price {
  margin: 28px 0 24px;
}

.oferta__price-old {
  font-size: 1rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.oferta__price-new {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange-primary);
  line-height: 1.1;
}

.oferta__price-new small {
  font-size: 1rem;
  font-weight: 600;
}

.oferta__price-info {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================
   GARANTIA SECTION
   ============================================ */
.garantia {
  background: var(--white);
}

.garantia__box {
  background: linear-gradient(145deg, var(--white) 0%, var(--gray-50) 100%);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.garantia__box::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(34,197,94,0.08), transparent 70%);
  border-radius: 50%;
}

.garantia__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.garantia__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.garantia__text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
  text-align: center;
  color: var(--white);
}

.cta-final .section-title {
  color: var(--white);
  font-size: 1.4rem;
}

.cta-final__sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.cta-btn--white {
  background: var(--white);
  color: var(--orange-primary);
  box-shadow: var(--shadow-lg);
}

.cta-btn--white:hover {
  background: var(--gray-50);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.cta-btn--white::before {
  background: linear-gradient(90deg, transparent, rgba(255,122,0,0.1), transparent);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  background: var(--off-white);
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.faq__item:hover {
  border-color: var(--orange-primary);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--orange-primary);
}

.faq__question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--orange-primary);
}

.faq__item.active .faq__question .arrow {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 20px 18px;
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-500);
  text-align: center;
  padding: 32px 0;
  font-size: 0.75rem;
}

.footer p {
  margin-bottom: 4px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse for CTA */
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 0 #CC4400, 0 10px 20px rgba(255,122,0,0.4); transform: scale(1); }
  50% { box-shadow: 0 8px 0 #CC4400, 0 15px 40px rgba(255,122,0,0.6); transform: scale(1.02); }
}

.cta-btn--pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

/* ============================================
   DESKTOP RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .container {
    max-width: 680px;
    padding: 0 32px;
  }

  section {
    padding: 80px 0;
  }

  .hero__headline {
    font-size: 2.5rem;
  }

  .hero__subheadline {
    font-size: 1.15rem;
  }

  .vsl-container {
    max-width: 360px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .beneficios__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .solucao__steps {
    flex-direction: row;
    gap: 16px;
  }

  .step-card {
    flex: 1;
  }

  .oferta__price-new {
    font-size: 3.2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 800px;
    padding: 0 40px;
  }

  section {
    padding: 100px 0;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero__headline {
    font-size: 2.8rem;
  }

  .beneficios__grid {
    gap: 20px;
  }

  .float-icon {
    font-size: 2rem;
    opacity: 0.07;
  }
}

/* ============================================
   SELEÇÃO DE TEXTO
   ============================================ */
::selection {
  background: var(--orange-primary);
  color: var(--white);
}
