/* Estilos MUY SIMPLES para el plugin de Publicidad */
.publicidad-container {
    width: 100%;
    margin: 0 auto;
}

/* Banners - ESTILOS MUY BASICOS */
.publicidad-banner {
    text-align: center;
    margin: 10px 0;
}

.publicidad-banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Lo más importante: cursor pointer en los enlaces */
.publicidad-banner a {
    cursor: pointer;
    display: inline-block;
}

.publicidad-banner a:hover {
    opacity: 0.9;
}

/* Banner Desktop - oculto en mobile */
.banner-desktop {
    display: block;
}

.banner-mobile {
    display: none;
}

/* Video */
.publicidad-video {
    margin: 15px 0;
    text-align: center;
}

.video-embed-wrapper {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.video-embed-wrapper iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.video-html5 {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.video-html5 video {
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-desktop {
        display: none;
    }
    
    .banner-mobile {
        display: block;
    }
    
    .video-embed-wrapper iframe {
        height: 200px;
    }
}