/* Banner moderno y llamativo */
.discount-banner {
    background: linear-gradient(135deg,
            #06904c 0%,
            #00E676 25%,
            #06904c 50%,
            #06904c 75%,
            #00C853 100%);
    background-size: 200% 200%;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #00B248;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
    animation: gradientShift 3s ease infinite;
}

.discount-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.discount-icon {
    font-size: 38px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.discount-icon:nth-child(1) {
    animation-delay: 0s;
}

.discount-icon:nth-child(3) {
    animation-delay: 1.5s;
}

.discount-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.discount-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: textGlow 2s ease-in-out infinite;
}

.discount-amount {
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Efectos de animación */
@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    50% {
        text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4),
            0 0 20px rgba(255, 255, 255, 0.3);
    }
}

/* Efecto de pulso */
.pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .discount-container {
        gap: 15px;
    }

    .discount-icon {
        font-size: 24px;
    }

    .discount-text {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .discount-amount {
        font-size: 14px;
        padding: 3px 12px;
    }
}

@media (max-width: 480px) {
    .discount-banner {
        padding: 14px 0;
    }

    .discount-container {
        gap: 12px;
    }

    .discount-icon {
        font-size: 22px;
    }

    .discount-text {
        font-size: 14px;
    }

    .discount-amount {
        font-size: 13px;
    }
}