.promo-banner-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #334dd7, #07ffd0);
    color: white;
    padding: 10px 20px;
    z-index: 1001; /* Mayor que el header (1000) */
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1.4;
}

.promo-content {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-content img {
    height: 28px;
    border-radius: 4px;
}

.promo-close {
    background: rgba(0,0,0,0.2);
    border: none;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 90%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Para móviles */
@media (max-width: 768px) {
    .promo-banner-top {
        padding: 8px 15px;
        font-size: 13px;
    }
    .promo-content img {
        height: 24px;
    }
}