/* ========================================= */
/* BRAND SLIDER - FAQ SECTION */
/* ========================================= */

.brand-slider-container {
    position: relative;
    width: 100%;
    margin: 30px 0 20px 0;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
}

.brand-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brand-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.brand-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.brand-slide img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.brand-slide:hover img {
    transform: scale(1.02);
}

/* Flechas de navegación - DENTRO del contenedor */
.brand-slider-container .brand-slider-prev,
.brand-slider-container .brand-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 28px;
    font-weight: 300;
    color: #BABABB;
    user-select: none;
}

.brand-slider-container .brand-slider-prev {
    left: 12px;
}

.brand-slider-container .brand-slider-next {
    right: 12px;
}

.brand-slider-container .brand-slider-prev:hover,
.brand-slider-container .brand-slider-next:hover {
    background: rgba(255, 255, 255, 1);
    color: #1BB6C1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Dots / Indicadores */
.brand-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.brand-dot {
    width: 10px;
    height: 10px;
    background-color: #D0D0D0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.brand-dot.active {
    background-color: #1BB6C1;
    width: 24px;
    border-radius: 10px;
}

.brand-dot:hover {
    background-color: #1BB6C1;
    transform: scale(1.1);
}

/* ========================================= */
/* RESPONSIVE - MÓVIL (sin flechas, altura menor) */
/* ========================================= */

@media (max-width: 768px) {
    .brand-slider-container .brand-slider-prev,
    .brand-slider-container .brand-slider-next {
        display: none !important;
    }
    
    .brand-slide img {
        max-height: 300px;
    }
    
    .brand-slider-dots {
        gap: 8px;
        margin-top: 15px;
    }
    
    .brand-dot {
        width: 8px;
        height: 8px;
    }
    
    .brand-dot.active {
        width: 18px;
    }
}

@media (max-width: 480px) {
    .brand-slide img {
        max-height: 300px;
    }
}