/* ============================================
   BANNER DISCRETO AL FINAL DEL GLASS-CONTAINER
   ============================================ */

.banner-anuncio {
    width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 202, 40, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    gap: 8px;
    margin-top: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.anuncio-contenido {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

.anuncio-badge {
    background: #ffca28;
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: bold;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.anuncio-texto {
    line-height: 1.3;
    font-size: 10px;
}

.anuncio-texto a {
    color: #ffca28;
    text-decoration: none;
    font-weight: bold;
}

.anuncio-texto a:hover {
    text-decoration: underline;
}

.anuncio-cerrar {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
    flex-shrink: 0;
}

.anuncio-cerrar:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: scale(1.1);
}

/* Para móviles */
@media (max-width: 768px) {
    .banner-anuncio {
        font-size: 10px;
        padding: 6px 10px;
        margin-top: 10px;
    }
    .anuncio-badge {
        font-size: 8px;
        padding: 1px 6px;
    }
    .anuncio-texto {
        font-size: 9px;
    }
}