/* Reset e variáveis CSS otimizadas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores principais */
  --primary-blue: #1a1a2e;
  --secondary-blue: #16213e;
  --accent-green: #10b981;
  --accent-cyan: #06b6d4;
  --orange: #ff6b35;
  --orange-light: #ff8c42;
  --yellow: #fbbf24;
  --red: #e53e3e;
  --red-dark: #c53030;
  --red-light: #fc8181;
  --mocha: #a67c5a;
  --mocha-light: #c49b7a;
  --mocha-dark: #8b6342;
  
  /* Cores neutras */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-900: #0f172a;
  
  /* Tipografia mobile-first */
  --font-xs: 0.75rem;    /* 12px */
  --font-sm: 0.875rem;   /* 14px */
  --font-base: 1rem;     /* 16px */
  --font-lg: 1.125rem;   /* 18px */
  --font-xl: 1.25rem;    /* 20px */
  --font-2xl: 1.5rem;    /* 24px */
  --font-3xl: 1.875rem;  /* 30px */
  --font-4xl: 2.25rem;   /* 36px */
  
  /* Espaçamentos mobile-first */
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-5: 1.25rem;    /* 20px */
  --space-6: 1.5rem;     /* 24px */
  --space-8: 2rem;       /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  
  /* 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);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  
  /* Bordas */
  --radius-sm: 0.375rem;  /* 6px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */
  --radius-2xl: 1.5rem;   /* 24px */
  --radius-full: 9999px;
}

/* Base styles mobile-first */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-base);
  line-height: 1.6;
  color: var(--primary-blue);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Header otimizado para mobile */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: var(--shadow-md);
}

.urgency-banner {
  padding: var(--space-2) var(--space-4);
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.urgency-text {
  font-weight: 700;
  font-size: var(--font-sm);
  color: var(--primary-blue);
  text-align: center;
}

.timer {
  display: flex;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--font-sm);
  color: var(--primary-blue);
  align-items: center;
}

.timer span {
  background: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  min-width: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

/* Hero Section mobile-first */
.hero {
  padding: var(--space-8) 0 var(--space-12);
  text-align: center;
  background: var(--white);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  color: var(--white);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-sm);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.hero-title {
  font-size: var(--font-3xl);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: var(--primary-blue);
}

.hero-title .highlight {
  color: var(--accent-green);
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-lg);
  color: var(--gray-500);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA no Hero */
.hero-cta {
  margin-bottom: var(--space-8);
}

.price-highlight {
  margin-bottom: var(--space-4);
}

.price-old {
  display: block;
  font-size: var(--font-base);
  color: var(--gray-500);
  text-decoration: line-through;
  margin-bottom: var(--space-1);
}

.price-new {
  display: block;
  font-size: var(--font-4xl);
  font-weight: 900;
  color: var(--red);
  margin-bottom: var(--space-4);
}

/* Botões otimizados */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  color: var(--white);
  border: none;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: var(--font-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  min-height: 56px;
  width: 100%;
  max-width: 400px;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  outline: none;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  font-size: var(--font-xl);
  padding: var(--space-5) var(--space-10);
  min-height: 64px;
}

/* Stats do Hero */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: var(--font-3xl);
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
}

.stat span {
  font-size: var(--font-sm);
  color: var(--gray-500);
  font-weight: 600;
}

/* Seções principais */
.pain-section,
.solution-section,
.benefits,
.bonus,
.testimonials,
.faq {
  padding: var(--space-12) 0;
}

.pain-section {
  text-align: center;
  background: var(--gray-50);
}

.pain-section h2 {
  font-size: var(--font-3xl);
  font-weight: 900;
  color: var(--red);
  margin-bottom: var(--space-4);
}

.pain-section p {
  font-size: var(--font-lg);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.pain-section strong {
  color: var(--accent-green);
  font-weight: 700;
}

/* Solution Section */
.solution-section {
  background: var(--white);
}

.solution-section h2 {
  font-size: var(--font-3xl);
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--primary-blue);
}

.solution-grid {
  display: grid;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  cursor: pointer;
}

.solution-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-green);
}

.solution-item:hover .solution-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.solution-icon {
  font-size: var(--font-3xl);
  flex-shrink: 0;
}

.solution-content h3 {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: var(--space-2);
}

.solution-content p {
  color: var(--gray-500);
  font-size: var(--font-base);
}

/* Benefits Section */
.benefits {
  background: var(--gray-50);
}

.benefits h2 {
  font-size: var(--font-3xl);
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--primary-blue);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transition: left 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-green);
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(5deg);
  transition: transform 0.3s ease;
}

.benefit-icon {
  font-size: var(--font-4xl);
  margin-bottom: var(--space-4);
}

.benefit-card h3 {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: var(--space-2);
}

.benefit-card p {
  color: var(--gray-500);
  font-size: var(--font-base);
}

/* Bonus Section */
.bonus {
  background: var(--white);
}

.bonus h2 {
  font-size: var(--font-3xl);
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--primary-blue);
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 600px;
  margin: 0 auto;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  color: var(--white);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--font-lg);
  box-shadow: var(--shadow-md);
}

.bonus-icon {
  font-size: var(--font-2xl);
  flex-shrink: 0;
}

/* CTA Principal */
.cta-main {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
}

.cta-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.9), rgba(197, 48, 48, 0.9));
  z-index: 1;
}

.cta-main > * {
  position: relative;
  z-index: 2;
}

.cta-main h2 {
  font-size: var(--font-3xl);
  font-weight: 900;
  margin-bottom: var(--space-8);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.price-section {
  margin-bottom: var(--space-8);
}

.price-comparison {
  margin-bottom: var(--space-4);
}

.price-comparison .price-old {
  font-size: var(--font-lg);
  opacity: 0.8;
}

.price-comparison .price-new {
  font-size: var(--font-4xl);
  color: var(--yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 900;
}

.price-highlight-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.savings-badge {
  background: linear-gradient(135deg, var(--yellow), #f59e0b);
  color: var(--primary-blue);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-sm);
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
}

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

.price-section {
  position: relative;
  margin-bottom: var(--space-8);
}

.discount-ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  font-weight: 700;
  font-size: var(--font-sm);
  transform: rotate(12deg);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  z-index: 10;
  border: 2px solid var(--white);
}

.discount-ribbon::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-left: 8px solid var(--red-dark);
  border-bottom: 8px solid transparent;
}

.discount-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 0;
  height: 0;
  border-right: 8px solid var(--red-dark);
  border-bottom: 8px solid transparent;
}

.urgency-note-enhanced {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--font-base);
  font-weight: 700;
  color: var(--yellow);
  margin-top: var(--space-6);
  padding: var(--space-3);
  background: rgba(251, 191, 36, 0.1);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--yellow);
}

.urgency-icon {
  font-size: var(--font-lg);
  animation: flash 1.5s infinite;
}

@keyframes flash {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.5; }
}

.discount-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--primary-blue);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-base);
  margin-bottom: var(--space-6);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin: var(--space-6) 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-sm);
  font-weight: 600;
}

.trust-icon {
  font-size: var(--font-lg);
}

.urgency-note {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--yellow);
  margin-top: var(--space-4);
}

/* Testimonials mobile-friendly */
.testimonials {
  background: var(--gray-50);
}

.testimonials h2 {
  font-size: var(--font-3xl);
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--primary-blue);
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto var(--space-6);
}

.testimonial {
  display: none;
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.testimonial.active {
  display: block;
}

.testimonial-content p {
  font-size: var(--font-lg);
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.testimonial-author strong {
  display: block;
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: var(--space-1);
}

.testimonial-author span {
  font-size: var(--font-base);
  color: var(--accent-cyan);
  font-weight: 600;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--accent-green);
}

/* FAQ mobile-optimized */
.faq {
  background: var(--white);
}

.faq h2 {
  font-size: var(--font-3xl);
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--primary-blue);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  background: none;
  border: none;
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--primary-blue);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-green);
}

.faq-icon {
  font-size: var(--font-2xl);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: var(--space-6);
  color: var(--gray-500);
  font-size: var(--font-base);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: var(--gray-500);
  text-align: center;
  padding: var(--space-8) 0;
}

/* Botão CTA fixo mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: var(--space-4);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--gray-200);
}

.btn-sticky {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border: none;
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: var(--font-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.btn-sticky:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-text {
  flex: 1;
}

.btn-icon {
  font-size: var(--font-xl);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: var(--space-4);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: var(--font-xl);
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Media Queries - Desktop */
@media (min-width: 768px) {
  :root {
    --font-3xl: 2.5rem;   /* 40px */
    --font-4xl: 3rem;     /* 48px */
  }
  
  .container {
    padding: 0 var(--space-6);
  }
  
  .urgency-content {
    justify-content: center;
    gap: var(--space-6);
  }
  
  .urgency-text {
    font-size: var(--font-base);
  }
  
  .timer {
    font-size: var(--font-sm);
  }
  
  .hero {
    padding: var(--space-16) 0;
  }
  
  .hero-title {
    font-size: var(--font-4xl);
  }
  
  .hero-stats {
    gap: var(--space-12);
  }
  
  .btn-primary {
    width: auto;
    min-width: 300px;
  }
  
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-badges {
    gap: var(--space-8);
  }
  
  .sticky-cta {
    display: none;
  }
  
  .back-to-top {
    bottom: var(--space-6);
    right: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}





.hero-product-image {
  margin: var(--space-8) auto;
  max-width: 400px;
  text-align: center;
}

.product-preview {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.product-preview:hover {
  transform: scale(1.05);
}




/* Hero Image Slider */
.hero-image-slider {
  position: relative;
  max-width: 400px; /* Ajuste conforme necessário */
  margin: var(--space-8) auto var(--space-6);
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-image-item {
  display: none;
  width: 100%;
}

.hero-image-item.active {
  display: block;
}

.hero-image-item img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero-image-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-image-dots .dot.active {
  background: var(--accent-green);
}


