/* ============================================
   ad-slider.css - Estilos del slider de anuncios
   ============================================ */

/* Badge de publicidad */
.ad-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 102, 0, 0.92);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 15;
    backdrop-filter: blur(4px);
    font-family: 'Montserrat', sans-serif;
}

/* Botones de navegación */
.ad-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 15;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-nav-btn:hover {
    background: #ff6600;
    transform: translateY(-50%) scale(1.1);
}

.ad-nav-btn.prev {
    left: 8px;
}

.ad-nav-btn.next {
    right: 8px;
}

/* Puntos indicadores */
.ad-dots-container {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 15;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.ad-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ad-dot.active {
    background: #ff6600;
    transform: scale(1.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .ad-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .ad-nav-btn.prev {
        left: 4px;
    }
    .ad-nav-btn.next {
        right: 4px;
    }
    .ad-dots-container {
        bottom: 8px;
        padding: 3px 8px;
        gap: 4px;
    }
    .ad-dot {
        width: 6px;
        height: 6px;
    }
    .ad-badge {
        font-size: 0.5rem;
        padding: 3px 10px;
        top: 8px;
        right: 8px;
    }
}