.elementor-41368 .elementor-element.elementor-element-ce738f4{--display:flex;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-8fbf1dc */#monkey-coupon-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(270deg, #0d0d0d, #2c2c2c, #1a1a1a, #2c2c2c, #0d0d0d);
  background-size: 1000% 1000%;
  animation: gradientBG 15s ease infinite;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 20px;
  font-weight: 600;
  z-index: 99999;
  border-bottom: 1px solid rgba(255, 204, 0, 0.35);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  cursor: pointer;
  border-radius: 0 0 8px 8px;
}

/* ===== ANIMACIÓN DE FONDO ===== */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== ICONO LLAMA ===== */
#monkey-coupon-banner .icon {
  font-size: 28px;
  animation: shakeIcon 1.5s infinite;
}

@keyframes shakeIcon {
  0% { transform: translateX(0); }
  25% { transform: translateX(2px); }
  50% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
  100% { transform: translateX(0); }
}

/* ===== TEXTO ===== */
#monkey-coupon-banner .text {
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ===== CUPÓN RESALTADO ===== */
#monkey-coupon-banner .coupon-name {
  background: linear-gradient(90deg, #ffd700, #ffcc33);
  color: #000;
  padding: 6px 14px;
  margin: 0 8px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* ===== BOTÓN ===== */
#monkey-coupon-banner .cta {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;

  animation: blinkCTA 1.6s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes blinkCTA {
  0% {
    background: transparent;
    color: #ffd700;
    box-shadow: none;
  }
  50% {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 22px rgba(255,215,0,0.9);
  }
  100% {
    background: transparent;
    color: #ffd700;
    box-shadow: none;
  }
}

/* ===== EMPUJA HEADER SOLO EN ESCRITORIO ===== */
@media (min-width: 1025px) {
  .whb-header {
    margin-top: 40px;
  }
}/* End custom CSS */