/* ── BANNER DESTAQUE (carrossel fullwidth, 1 por vez) ── */
.premium-banner-section {
    display: flex;
    justify-content: center;
    padding: 18px;
}
.premium-banner-container {
    position: relative;
    width: 100%;
    max-width: 1164px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,.14);
}
.premium-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    text-decoration: none;
}
.premium-banner-slide.active { opacity: 1; z-index: 2; }

.premium-banner-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3;
}
.banner-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .3s;
}
.banner-dot.active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

/* mini-banners substituídos por pub-banners */

@media(max-width: 768px) {
    .premium-banner-container { height: calc(100vw * .38); border-radius: 10px; }
    .mini-banner-item { width: 180px; height: 66px; }
}

/* Transição nos grupos do carrossel de mini-banners */




/* ── PUB BANNERS (publicidade/secundários) — maiores, slide individual ── */
.pub-banners-wrap {
    background: #fff;
    border-top: 1px solid #f1f5f9;
    padding: 16px 0;
}

.pub-banners-viewport {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    overflow: hidden;         /* Esconde o que sai pela esquerda */
    position: relative;
}

.pub-banners-track {
    display: flex;
    gap: 14px;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.pub-banner-item {
    flex: 0 0 calc(25% - 11px);  /* 4 visíveis, descontando gap */
    min-width: calc(25% - 11px);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/6;           /* Altura proporcional e maior */
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    transition: transform .2s;
}

.pub-banner-item:hover { transform: translateY(-2px); }
.pub-banner-item a    { display: block; height: 100%; }
.pub-banner-item img  { width: 100%; height: 100%; object-fit: cover; display: block; }

@media(max-width: 900px) {
    .pub-banner-item { flex: 0 0 calc(50% - 7px); min-width: calc(50% - 7px); }
}
@media(max-width: 580px) {
    .pub-banner-item { flex: 0 0 calc(100%); min-width: 100%; }
    .pub-banners-wrap { padding: 12px 0; }
}
