/* Waitlist Discount Banner Styles */
.waitlist-discount-banner {
  position: relative;
  margin-top: -30px;
  margin-bottom: 30px;
  z-index: 10;
}

.waitlist-discount-banner .discount-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #faad14 0%, #ff9800 100%);
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}

/* Estilo para el tema oscuro */
body.dark-mode .waitlist-discount-banner .discount-content {
  color: #202020;
}

body.dark-mode .waitlist-discount-banner .discount-text h3,
body.dark-mode .waitlist-discount-banner .discount-text p {
  color: #202020;
}

.waitlist-discount-banner .discount-icon {
  font-size: 2rem;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.waitlist-discount-banner .discount-text {
  flex: 1;
}

.waitlist-discount-banner .discount-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.waitlist-discount-banner .discount-text p {
  margin-bottom: 0;
  font-size: 1.05rem;
  opacity: 1;
  font-weight: 400;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
}

.waitlist-discount-banner .discount-button .btn {
  white-space: nowrap;
  font-weight: 500;
  background: white;
  color: #ff9800;
  border: none;
  transition: all 0.3s ease;
}

.waitlist-discount-banner .discount-button .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .waitlist-discount-banner .discount-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .waitlist-discount-banner .discount-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .waitlist-discount-banner .discount-text {
    margin-bottom: 15px;
  }
}
