/* ================================================================
   EA Ads Manager — Public Styles
   ================================================================ */

/* Campanha / Slideshow */
.ea-campaign-display {
    position: relative;
    overflow: hidden;
    width: 100%;
    line-height: 0;
}

.ea-slides-wrapper {
    position: relative;
    width: 100%;
}

.ea-ad-slide {
    width: 100%;
    position: relative;
}

.ea-ad-slide.ea-ad-active {
    animation: eaFadeIn .4s ease;
}

@keyframes eaFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Mídia */
.ea-ad-media {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

video.ea-ad-media {
    width: 100%;
    display: block;
}

/* Link wrapper */
.ea-ad-link {
    display: block;
    line-height: 0;
    text-decoration: none;
}
.ea-ad-link:hover .ea-ad-media {
    opacity: .95;
    transition: opacity .2s;
}

/* Navegação */
.ea-campaign-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 4px;
    line-height: 1;
}

.ea-campaign-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.ea-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.25);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}

.ea-dot.ea-dot-active {
    background: rgba(0,0,0,.6);
    transform: scale(1.25);
}

.ea-nav-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    color: rgba(0,0,0,.4);
    padding: 0 4px;
    transition: color .2s;
}

.ea-nav-btn:hover { color: rgba(0,0,0,.7); }

/* Anúncio único */
.ea-single-ad {
    display: block;
    width: 100%;
    line-height: 0;
}
