/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #e0f7fa 0%, #fce4ec 50%, #f3e5f5 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-pink {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient {
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-green {
  background: linear-gradient(135deg, #059669, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-5px);
  }
  90% {
    transform: translateY(-2px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.pulsing {
  animation: scale 1s infinite;
}
.rotating {
  animation: rotate 2s linear infinite;
}

/* Credits Banner */
.credits-banner {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.urgency-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

/* Activity Bar */
.activity-bar {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  padding: 8px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.activity-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #67e8f9;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Header */
.header {
  background: linear-gradient(135deg, #22d3ee, #3b82f6, #8b5cf6);
  color: white;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.header-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
}

.header-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 500;
  opacity: 0.95;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
}

.sparkle-icon {
  position: absolute;
  top: -10px;
  right: -20px;
  font-size: 1.5rem;
  animation: scale 2s infinite;
}

.hero-description {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #4b5563;
}

/* Social Proof */
.social-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.proof-item {
  background: linear-gradient(135deg, #ffffff, #e0f7fa);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #b2ebf2;
  transition: all 0.3s ease;
}

.proof-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.proof-icon {
  background: linear-gradient(135deg, #22d3ee, #ec4899);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 1.5rem;
}

.proof-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.proof-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
}

/* Hero Video */
.hero-video {
  margin-bottom: 40px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-video video {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid transparent;
  background: linear-gradient(135deg, #22d3ee, #ec4899);
  background-clip: padding-box;
}

.video-badge-hero {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
  animation: pulse 2s infinite;
}

/* CTA Buttons */
.btn-primary {
  background: linear-gradient(135deg, #ec4899, #f43f5e, #ec4899);
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
  animation: none;
}

.btn-primary.large {
  padding: 25px 50px;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.cta-info {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

/* Product Section */
.product-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #e0f7fa, #fce4ec);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-image {
  text-align: center;
  position: relative;
}

.product-image img {
  width: 80%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.05) rotate(1deg);
}

.quality-badge {
  position: absolute;
  top: -8px;
  right: 10%;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(236, 72, 153, 0.3);
  animation: bounce 2s infinite;
}

.product-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
}

.crown-icon {
  position: absolute;
  top: -10px;
  right: -30px;
  color: #fbbf24;
  animation: rotate 3s linear infinite;
}

.product-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #4b5563;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-item.high-priority {
  background: linear-gradient(135deg, #e0f7fa, #fce4ec);
  border: 2px solid #b2ebf2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item:not(.high-priority) {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border: 2px solid #e5e7eb;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.benefit-item.high-priority .benefit-icon {
  background: linear-gradient(135deg, #22d3ee, #ec4899);
}

.benefit-item:not(.high-priority) .benefit-icon {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.benefit-item span {
  flex: 1;
  font-weight: 500;
  color: #374151;
}

.top-badge {
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  color: white;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Results Section */
.results-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fce4ec, #f3e5f5, #e0f7fa);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
  color: #1f2937;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  color: #6b7280;
  font-weight: 500;
}

/* Carousel */
.results-carousel,
.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-container,
.testimonial-container {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.carousel-item,
.testimonial-item {
  display: none;
  position: relative;
}

.carousel-item.active,
.testimonial-item.active {
  display: block;
}

.carousel-item img,
.carousel-item video {
  width: 100%;
  border-radius: 30px;
  border: 4px solid transparent;
  background: linear-gradient(135deg, #22d3ee, #ec4899);
  background-clip: padding-box;
}

.result-badge,
.video-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.result-badge {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.video-badge {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-info {
  text-align: center;
  margin: 30px 0;
}

.carousel-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-info p {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  box-shadow: 0 3px 10px rgba(6, 182, 212, 0.3);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #fce4ec, #e0f7fa);
}

.testimonial-item {
  background: linear-gradient(135deg, #ffffff, #e0f7fa);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.testimonial-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #22d3ee, #ec4899);
  border-radius: 20px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.testimonial-item img {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  background: linear-gradient(135deg, #22d3ee, #ec4899);
  background-clip: padding-box;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.stars i {
  color: #fbbf24;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #374151;
  font-weight: 500;
  line-height: 1.6;
}

.testimonial-author strong {
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: #6b7280;
  font-weight: 500;
}

/* Offers Section */
.offers-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f7fa, #f3e5f5, #fce4ec);
}

.urgency-timer {
  text-align: center;
  margin-bottom: 40px;
}

.urgency-timer > div {
  background: linear-gradient(135deg, #fce4ec, #f8bbd9, #fce4ec);
  border: 2px solid #f9a8d4;
  border-radius: 20px;
  padding: 20px;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: scale 2s infinite;
}

.timer-text {
  color: #be185d;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
}

.timer-text span {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timer-subtitle {
  color: #ec4899;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.offer-card {
  background: linear-gradient(135deg, #ffffff, #e0f7fa);
  border: 2px solid #b2ebf2;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.offer-card.selected {
  border-color: #ec4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.2);
}

.offer-card.popular {
  border: 4px solid transparent;
  background: linear-gradient(135deg, #ffffff, #e0f7fa, #fce4ec) padding-box, linear-gradient(135deg, #22d3ee, #ec4899)
    border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Offer Badges */
.popular-badge,
.economy-badge,
.complete-badge,
.max-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

.popular-badge {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.economy-badge,
.complete-badge,
.max-badge {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.offer-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-description {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 20px;
  font-weight: 500;
}

.pricing {
  margin-bottom: 15px;
}

.original-price {
  font-size: 0.9rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 5px;
}

.current-price {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #059669, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.discount-badge {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
  box-shadow: 0 3px 10px rgba(236, 72, 153, 0.3);
}

.savings {
  font-size: 0.8rem;
  background: linear-gradient(135deg, #059669, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.product-image-offer {
  margin: 15px 0;
}

.product-image-offer img {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.selected-badge {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

/* Main CTA */
.main-cta {
  text-align: center;
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.guarantee-item {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #bbf7d0;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #166534;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.guarantee-item i {
  color: #22c55e;
}

/* Guarantee Section */
.guarantee-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #e0f7fa, #fce4ec);
}

.guarantee-card {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7, #f0fdf4);
  border: 4px solid #22c55e;
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.guarantee-icon {
  font-size: 4rem;
  color: #22c55e;
  margin-bottom: 30px;
  animation: scale 2s infinite;
  filter: drop-shadow(0 5px 15px rgba(34, 197, 94, 0.3));
}

.guarantee-card h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: #1f2937;
}

.guarantee-card p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #374151;
  line-height: 1.6;
  font-weight: 500;
}

.guarantee-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.guarantee-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
}

.guarantee-features .feature i {
  color: #3b82f6;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fce4ec, #f3e5f5, #e0f7fa);
}

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

.faq-item {
  background: linear-gradient(135deg, #ffffff, #e0f7fa);
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  color: white;
  border: none;
  padding: 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #0891b2, #f43f5e);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: linear-gradient(135deg, #ffffff, #e0f7fa);
}

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

.faq-answer p {
  padding: 20px;
  margin: 0;
  color: #374151;
  line-height: 1.6;
  font-weight: 500;
  border-top: 1px solid #e0f7fa;
}

/* Final CTA */
.final-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #fce4ec, #e0f7fa);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: #1f2937;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #374151;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f7fa, #f3e5f5, #fce4ec);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon.whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-icon.email {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.contact-icon.address {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
}

.contact-card p {
  color: #6b7280;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-card small {
  color: #9ca3af;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 20px;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.btn-email {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.btn-email:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.cnpj-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #6b7280;
}

.cnpj-info i {
  color: #22c55e;
}

/* Footer */
.footer {
  padding: 40px 20px;
  background: linear-gradient(135deg, #1f2937, #374151, #1f2937);
  color: white;
  text-align: center;
}

.footer p {
  margin-bottom: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

.footer p:last-child {
  opacity: 0.6;
  font-size: 0.8rem;
}

/* Urgency Popup */
.urgency-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 350px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-content {
  background: linear-gradient(135deg, #fce4ec, #f8bbd9);
  border: 2px solid #f9a8d4;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 15px;
  position: relative;
}

.popup-icon {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.popup-text h3 {
  color: #be185d;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}

.popup-text p {
  color: #be185d;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.btn-popup {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.btn-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
  .urgency-content,
  .activity-content {
    flex-direction: column;
    gap: 10px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .social-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-features {
    flex-direction: column;
    gap: 15px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .urgency-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .btn-primary {
    padding: 15px 25px;
    font-size: 1rem;
  }

  .social-proof {
    grid-template-columns: 1fr;
  }

  .guarantee-card {
    padding: 30px 20px;
  }

  .popup-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Focus states for accessibility */
button:focus,
.faq-question:focus {
  outline: 2px solid #06b6d4;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .urgency-banner,
  .activity-bar,
  .urgency-popup,
  .carousel-btn {
    display: none !important;
  }
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
}

/* Video optimization */
video {
  max-width: 100%;
  height: auto;
}
