/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
}

h2 {
  font-size: 2rem;
  color: #1a1a1a;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

section {
  padding: 60px 0;
}

/* Header Styles */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.trust-badges {
  display: flex;
  gap: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
}

/* Hero Section */
.hero {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  position: relative;
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ff5722;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: rotate(15deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.discount-badge span:first-child {
  font-size: 1.2rem;
}

.discount-badge span:last-child {
  font-size: 0.7rem;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  margin: 20px 0;
  cursor: pointer;
}

.cta-button.primary {
  background-color: #ff5722;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.cta-button.secondary {
  background-color: #4CAF50;
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.cta-button.large {
  padding: 20px 40px;
  font-size: 1.2rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.shipping-info {
  font-size: 0.9rem;
  color: #666;
}

/* Problem Section */
.problem {
  background-color: #fff;
}

.problems-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.problem-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-5px);
}

.emoji {
  font-size: 2rem;
  margin-bottom: 15px;
}

.transition-text {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
}

/* Solution Section */
.solution {
  background-color: #f5f5f5;
  text-align: center;
}

.product-gallery {
  margin: 40px 0;
}

.main-image {
  margin-bottom: 20px;
}

.main-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  object-fit: contain;
}

.gallery-thumbnails {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.gallery-thumbnails img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-thumbnails img:hover {
  transform: scale(1.05);
}

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

.benefit-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Social Proof Section */
.social-proof-section {
  background-color: #fff;
  text-align: center;
}

.choice-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffc107;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 40px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.testimonial {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.customer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e0e0e0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sales-counter {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 30px;
}

/* Offer Section */
.offer {
  background-color: #f5f5f5;
}

.offer-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.product-image {
  flex: 1;
  position: relative;
}

.dimensions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.price-block {
  flex: 1;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.old-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.price-crossed {
  text-decoration: line-through;
  color: #999;
}

.current-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.price-highlight {
  font-size: 2rem;
  font-weight: 700;
  color: #ff5722;
}

.discount-tag {
  background-color: #ff5722;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 700;
}

.installments {
  margin-bottom: 20px;
  color: #666;
}

.bonus {
  margin: 30px 0;
}

.bonus-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.bonus-icon {
  font-size: 1.5rem;
}

.urgency {
  background-color: #fff8e1;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.countdown {
  margin-top: 15px;
}

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

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.number {
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
}

.label {
  font-size: 0.8rem;
  margin-top: 5px;
}

.separator {
  font-size: 1.5rem;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 10px;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.payment-methods img {
  max-height: 170px;
}

/* FAQ Section */
.faq {
  background-color: #fff;
}

.faq-items {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #666;
}

.faq-answer {
  padding: 20px 0;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 40px 0;
}

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

.company-info {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .offer-content {
    flex-direction: column;
  }
  
  .trust-badges {
    display: none;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
  
  .problems-list, .benefits, .testimonials {
    grid-template-columns: 1fr;
  }
  
  .cta-button.large {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .gallery-thumbnails img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .timer {
    gap: 5px;
  }
  
  .number {
    font-size: 1.2rem;
    min-width: 40px;
  }
}
