.elementor-15 .elementor-element.elementor-element-be4eb2d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-36e264b *//* ===== EFEITOS GLOBAIS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 221, 85, 0.7); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(255, 221, 85, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 221, 85, 0); }
}

@keyframes glow {
  0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.7); }
  50% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.9); }
  100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.7); }
}

/* ===== BANNER PRINCIPAL ===== */
.discount-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: 
    linear-gradient(135deg, #7d6bff, #5a45b2),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 30%);
  box-shadow: 0 10px 30px rgba(93, 69, 255, 0.3);
  padding: 40px 20px; /* Reduzi o padding vertical de 60px para 40px */
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(107, 79, 178, 0.3);
  margin-top: -10px; /* Adicionei para juntar com a section acima */
  margin-bottom: -10px; /* Adicionei para juntar com a section abaixo */
}

.discount-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== ELEMENTOS DECORATIVOS ===== */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}

.circle-1 {
  width: 200px;
  height: 200px;
  background: #5ebf95;
  top: -50px;
  left: -50px;
  animation: float 8s ease-in-out infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  background: #5ebf95;
  bottom: -30px;
  right: -30px;
  animation: float 10s ease-in-out infinite 2s;
}

.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
  background-size: 20px 20px;
  z-index: 1;
}

/* ===== CONTEÚDO ===== */
.badge-pulse {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  animation: glow 2s infinite;
}

.discount-title {
  font-size: 4rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
background: linear-gradient(45deg, #ffffff, #5ebf95);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.discount-subtitle {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 20px auto;
  max-width: 600px;
}

.highlight {
background: linear-gradient(45deg, #5ebf95, #59bd97);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
  margin: 25px auto;
}

.discount-description {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.code-glow {
  animation: glow 2s infinite;
  font-weight: 700;
  padding: 0 5px;
}

/* ===== BOTÕES ===== */
.discount-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.copy-btn, .go-menu-btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.copy-btn {
  color: #7d6bff;
  color: #6b4fb2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.copy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffffff, #f3f0ff);
  z-index: -1;
  transition: opacity 0.3s;
}

.copy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.go-menu-btn {
  background: linear-gradient(45deg, #5ebf95, #59bd97);
  color: #393939;
  box-shadow: 0 5px 15px rgba(94, 191, 149, 0.3);
}

.go-menu-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 221, 85, 0.4);
  animation: none;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.glow-on-hover:hover {
  animation: glow 1.5s infinite;
}

.btn-icon {
  font-size: 1.2em;
  color: #6b4fb2; /* Adicionei cor para o emoji do botão de copiar */
}

/* ===== POPUP ===== */
.copy-popup {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: white;
  color: #7d6bff;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(107, 79, 178, 0.3);
  font-weight: 700;
  z-index: 999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy-popup::before {
  content: '↑';
  font-size: 1.2em;
}

.copy-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .discount-title {
    font-size: 2.5rem;
  }
  
  .discount-subtitle {
    font-size: 1.4rem;
  }
  
  .discount-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .copy-btn, .go-menu-btn {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */