/* ===============================
   FONTS (sempre no topo)
   =============================== */

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===============================
   RESET / BASE
   =============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Otimizações de performance */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Otimizar renderização de imagens */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: contents;
}

/* Melhorar performance de animações */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
  --primary-color: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --secondary-color: #0f766e;
  --accent-color: #dc2626;
  --accent-gold: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  --gradient-dark: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.cta-nav {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-link.cta-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('./images/bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* WebP support */
@supports (background-image: url('./images/bg.webp')) {
  .hero {
    background-image: url('./images/bg.webp');
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(5, 37, 35, 0.88));
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.badge-icon {
  font-size: 1.25rem;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
  font-weight: 900;
  margin-top: clamp(1rem, 5vh, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.title-main {
  display: block;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.hero-subtitle strong {
  color: #fbbf24;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2rem 0;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.1);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

section {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: var(--primary-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.video-section {
  background: var(--bg-light);
}

.video-wrapper {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--white);
}

.video-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.938rem;
  color: var(--text-light);
  margin: 0;
}

.dicas-section {
  background: var(--white);
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.carousel-card {
  min-width: calc(33.333% - 1.333rem);
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.15);
  border-color: var(--primary-light);
}

.card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 2.5rem;
}

.carousel-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.carousel-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.938rem;
}

.card-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f0fdf4;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-size: 0.875rem;
  font-weight: 600;
}

.benefit-icon {
  color: var(--primary-color);
  font-weight: 800;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: auto;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

.cta-section {
  position: relative;
  background-image: url('./images/bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
  overflow: hidden;
}

/* WebP support */
@supports (background-image: url('./images/bg.webp')) {
  .cta-section {
    background-image: url('./images/bg.webp');
  }
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(5, 37, 35, 0.9));
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cta-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.cta-benefit-item {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.938rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  padding: 1.125rem 2.5rem;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
  margin-bottom: 1rem;
}

.cta-urgency {
  font-size: 0.938rem;
  color: #fbbf24;
  font-weight: 600;
  margin-top: 1rem;
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.oferta-section {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  text-align: center;
}

.oferta-content {
  max-width: 700px;
  margin: 0 auto;
}

.bonus-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
  animation: pulse-bonus 2s ease-in-out infinite;
}

.bonus-icon {
  font-size: 3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.bonus-text {
  text-align: left;
  flex: 1;
}

.bonus-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-text p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.bonus-details {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.bonus-details h3 {
  color: var(--primary-color);
  font-size: 1.375rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.bonus-list {
  list-style: none;
  padding: 0;
}

.bonus-list li {
  padding: 0.75rem 0;
  font-size: 1.125rem;
  color: var(--text-dark);
  border-bottom: 1px solid #e5e7eb;
}

.bonus-list li:last-child {
  border-bottom: none;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

@keyframes pulse-bonus {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.price-box {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin: 2rem 0;
  position: relative;
  border: 3px solid var(--primary-light);
}

.price-header {
  margin-bottom: 1.5rem;
}

.urgency-text {
  display: inline-block;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #b91c1c;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-urgency 1.5s ease-in-out infinite;
}

@keyframes pulse-urgency {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.old-price {
  margin-bottom: 0.5rem;
}

.old-price .price-label {
  font-size: 1rem;
  color: var(--text-light);
}

.old-price .price-value {
  font-size: 1.75rem;
  color: var(--text-light);
  text-decoration: line-through;
  display: block;
  margin-top: 0.25rem;
  opacity: 0.7;
}

.current-price {
  margin-bottom: 1.5rem;
}

.current-price .price-label {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.current-price .price-value {
  font-size: 4.5rem;
  color: var(--primary-color);
  font-weight: 900;
  display: block;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.current-price sup {
  font-size: 2rem;
  vertical-align: super;
}

.discount-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
  animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

.price-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #f0fdf4;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.price-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.938rem;
  font-weight: 600;
}

.detail-icon {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.125rem;
}

.oferta-text {
  color: var(--text-light);
  margin: 1.5rem 0;
  font-size: 1rem;
  font-weight: 500;
}

.oferta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  padding: 1.125rem 2.5rem;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
}

.guarantee-text {
  margin-top: 1.5rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.guarantee-icon {
  font-size: 1.5rem;
}

.depoimentos-section {
  background: var(--bg-light);
}

.testimonials-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.testimonial-card {
  flex: 0 0 calc(50% - 1rem);
  min-width: calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 6rem;
  color: var(--primary-light);
  opacity: 0.1;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.15);
  border-color: var(--primary-light);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #dcfce7;
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial-text {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  font-weight: 700;
}

.author-result {
  display: block;
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.author-location {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.garantia-section {
  background: var(--white);
}

.garantia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.garantia-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.garantia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.garantia-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.garantia-text p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.garantia-list {
  list-style: none;
  margin-bottom: 2rem;
}

.garantia-list li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 500;
}

.faq-section {
  background: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--primary-color);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.faq-answer ul {
  color: var(--text-light);
  line-height: 1.6;
}

.faq-answer ul li {
  margin-bottom: 0.5rem;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer-content > p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid #374151;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Media Query para tablets e telas médias */
@media (max-width: 1024px) {
  .hero {
    padding: 90px 0 50px;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: clamp(2.25rem, 4.5vw + 0.5rem, 3.5rem);
  }

  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 968px) {
  .carousel-card {
    min-width: calc(50% - 1rem);
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .garantia-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .garantia-text {
    text-align: center;
  }

  .garantia-text .btn {
    display: inline-block;
    margin: 0 auto;
  }

  .hero {
    padding: 85px 0 45px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    gap: 1rem;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    background-attachment: scroll;
    margin-top: 0;
    min-height: auto;
    padding: 80px 0 50px;
  }

  .hero-content {
    padding: 5rem 1rem 1.5rem 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .hero-badge {
    padding: 0.4rem 1.25rem;
    margin-bottom: 1rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }

  .cta-section {
    background-attachment: scroll;
  }

  .video-wrapper {
    gap: 2rem;
  }

  .video-container {
    border-radius: 12px;
    border: 2px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .video-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-content h4 {
    font-size: 1rem;
  }

  .feature-content p {
    font-size: 0.875rem;
  }

  .carousel-card {
    min-width: 100%;
  }

  .carousel-container,
  .testimonials-carousel {
    padding: 0 50px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-tag {
    font-size: 0.75rem;
    padding: 0.4rem 1.25rem;
  }

  section {
    padding: 3rem 0;
  }

  .current-price .price-value {
    font-size: 2.5rem;
  }

  .price-box {
    padding: 2rem 1.5rem;
  }

  .bonus-badge {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .bonus-text {
    text-align: center;
  }

  .bonus-text h3 {
    font-size: 1.25rem;
  }

  .bonus-text p {
    font-size: 1rem;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 2rem 1.5rem;
  }

  .cta-icon {
    font-size: 3rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.125rem;
  }

  .cta-benefits {
    gap: 1rem;
  }

  .cta-benefit-item {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
  }

  .garantia-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .garantia-text {
    text-align: center;
  }

  .garantia-text .btn {
    display: inline-block;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-content {
    padding: 4rem 0.75rem 1rem 0.75rem;
  }

  .hero-title {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .title-main {
    padding-top: 30px;
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .hero-stats {
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .stat-item {
    min-width: 120px;
  }

  .hero-badge {
    padding: 0.35rem 1rem;
    margin-bottom: 0.75rem;
  }

  .badge-icon {
    font-size: 1rem;
  }

  .badge-text {
    font-size: 0.7rem;
  }

  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .video-container {
    border-radius: 8px;
    border: 2px solid var(--white);
  }

  .video-features {
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .feature-content h4 {
    font-size: 0.938rem;
  }

  .feature-content p {
    font-size: 0.8125rem;
  }

  .carousel-container,
  .testimonials-carousel {
    padding: 0 40px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .price-box {
    padding: 1.5rem 1rem;
  }

  .current-price .price-value {
    font-size: 3rem;
  }

  .bonus-details {
    padding: 1.5rem;
  }

  .bonus-list li {
    font-size: 0.938rem;
    padding: 0.5rem 0;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-icon {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-urgency {
    font-size: 0.875rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Media Query para dispositivos muito pequenos em landscape */
@media (max-width: 640px) and (max-height: 500px) {
  .hero {
    min-height: auto;
    padding: 70px 0 30px;
  }

  .hero-content {
    padding: 3rem 1rem 1rem 1rem;
  }

  .hero-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    margin-bottom: 1rem;
  }

  .hero-stats {
    margin: 1rem 0;
  }

  .hero-badge {
    margin-bottom: 0.5rem;
  }
}

/* Media Query para melhorar em telas entre 480px e 640px */
@media (max-width: 640px) and (min-width: 481px) {
  .hero-stats {
    gap: 1.25rem;
  }

  .stat-item {
    min-width: 140px;
  }
}
.video-cta {
  text-align: center;
  margin-top: 28px;
}

.video-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(46, 204, 113, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(46, 204, 113, 0.55);
}

.video-cta-note {
  margin-top: 6px;
  font-size: 0.75rem;
  color: #4ade80;
  opacity: 0.9;
}
.cta-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #dff5ea;
  opacity: 0.9;
}
/* BOTÃO CTA PADRÃO */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 24px;
  padding: 18px 36px;

  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: #ffffff;

  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;

  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(46, 204, 113, 0.45);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(46, 204, 113, 0.55);
}
/* Performance mobile */
img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

/* ===============================
   VIDEO LAZY LOAD (PageSpeed)
================================ */

.video-lazy {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background-color: #000;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
}

.video-lazy img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-lazy .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.video-lazy .play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
}
.problem-section {
    padding: 60px 20px;
    background: #f8f9f7;
    text-align: center;
}

.problem-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1f2d1f;
}

.problem-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 25px auto;
}

.problem-list li {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.problem-section strong {
    font-size: 20px;
    color: #2e7d32;
}