/* Estilos específicos para a página de Upsell */

/* Banner de Scroll */
.scroll-banner {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: flex;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}

.scroll-text {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 2rem;
}

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

/* Hero Upsell */
.upsell-hero {
  background-color: hsl(180, 100%, 12%);
  color: var(--foreground);
  padding: 4rem 1rem;
  text-align: center;
}

.upsell-logo {
  height: 5rem;
  margin: 0 auto 2rem;
  display: block;
}

.upsell-hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(0, 0%, 98%);
}

.upsell-hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 98%);
}

.upsell-hero-text {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: hsl(0, 0%, 98%);
}

/* Product List Section */
.product-list-section {
  padding: 4rem 1rem;
  background-color: var(--muted);
}

.product-list-card {
  background-color: hsl(180, 100%, 12%);
  color: var(--foreground);
  border-radius: var(--radius);
  padding: 3rem 2rem;
}

.product-list-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
  color: hsl(0, 0%, 98%);
}

.product-list {
  list-style: none;
  padding: 0;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--success);
  flex-shrink: 0;
}

.product-name {
  font-size: 1.125rem;
  color: hsl(0, 0%, 98%);
}

/* Product Showcase Section */
.showcase-section {
  padding: 4rem 1rem;
  background-color: var(--secondary);
  color: var(--foreground);
  text-align: center;
}

.showcase-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.showcase-subtitle {
  font-size: 1.25rem;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 2rem;
}

.showcase-image-wrapper {
  background-color: hsla(45, 100%, 55%, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.showcase-image {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.showcase-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.showcase-products-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.showcase-products-grid {
  display: grid;
  gap: 1rem;
  text-align: left;
  max-width: 40rem;
  margin: 0 auto;
}

.showcase-product-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.showcase-product-check {
  color: var(--success);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.showcase-product-text {
  font-size: 1.125rem;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 1rem;
  background-color: var(--muted);
  text-align: center;
}

.pricing-intro {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.pricing-question {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--foreground);
}

.pricing-card {
  background-color: hsl(142, 76%, 15%);
  color: var(--foreground);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}

.pricing-old-price {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.pricing-old-price span {
  text-decoration: line-through;
}

.pricing-label {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(142, 76%, 50%);
  margin-bottom: 2rem;
}

.pricing-warning {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: hsl(0, 0%, 98%);
}

.btn-guarantee {
  background-color: var(--success);
  color: var(--success-foreground);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-guarantee:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.pricing-copyright {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
  margin-top: 2rem;
}

/* Responsividade para Upsell */
@media (min-width: 768px) {
  .scroll-text {
    font-size: 1.125rem;
  }
  
  .upsell-hero {
    padding: 4rem 1rem;
  }
  
  .upsell-hero-title {
    font-size: 2.5rem;
  }
  
  .upsell-hero-subtitle {
    font-size: 1.25rem;
  }
  
  .upsell-hero-text {
    font-size: 1.125rem;
  }
  
  .product-list-section {
    padding: 4rem 1rem;
  }
  
  .product-list-card {
    padding: 3rem;
  }
  
  .product-list-title {
    font-size: 2rem;
  }
  
  .showcase-section {
    padding: 4rem 1rem;
  }
  
  .showcase-title {
    font-size: 2rem;
  }
  
  .showcase-subtitle {
    font-size: 1.5rem;
  }
  
  .showcase-price {
    font-size: 2.5rem;
  }
  
  .showcase-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-section {
    padding: 4rem 1rem;
  }
  
  .pricing-intro {
    font-size: 1.5rem;
  }
  
  .pricing-question {
    font-size: 2rem;
  }
  
  .pricing-label {
    font-size: 4rem;
  }
  
  .pricing-value {
    font-size: 3rem;
  }
  
  .pricing-warning {
    font-size: 1.75rem;
  }
}
