/* CONTENEDOR */
.ads-container {
    position: relative;
    z-index: 999;
}

/* ANUNCIOS */
.ad {
    position: fixed;
    top: 120px;
    width: 160px;
    z-index: 999;
}

/* IZQUIERDA */
.ad-left {
    left: 10px;
}

/* DERECHA */
.ad-right {
    right: 10px;
}

/* IMAGEN */
.ad img {
    width: 100%;
    border-radius: 10px;
}

/* BOTÓN CERRAR */
.close-ad {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6a00;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

/* RESPONSIVE (OCULTAR EN MÓVIL) */
@media (max-width: 900px) {
    .ad {
        display: none;
    }
}