/* Owl Carousel 2.x - Estilos personalizados para navegación */

/* Blog Carousel - Navegación */
.blogcarousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -25px;
    pointer-events: none;
}

.blogcarousel .owl-nav button.owl-prev,
.blogcarousel .owl-nav button.owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    font-size: 30px !important;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    pointer-events: all;
    transition: all 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
}

.blogcarousel .owl-nav button.owl-prev {
    left: -25px;
}

.blogcarousel .owl-nav button.owl-next {
    right: -25px;
}

.blogcarousel .owl-nav button.owl-prev:hover,
.blogcarousel .owl-nav button.owl-next:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.blogcarousel .owl-nav button.owl-prev span,
.blogcarousel .owl-nav button.owl-next span {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 50px;
}

/* Testimonial Carousel - Navegación */
#testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -25px;
    pointer-events: none;
}

#testimonial-carousel .owl-nav button.owl-prev,
#testimonial-carousel .owl-nav button.owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    font-size: 30px !important;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    pointer-events: all;
    transition: all 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
}

#testimonial-carousel .owl-nav button.owl-prev {
    left: -25px;
}

#testimonial-carousel .owl-nav button.owl-next {
    right: -25px;
}

#testimonial-carousel .owl-nav button.owl-prev:hover,
#testimonial-carousel .owl-nav button.owl-next:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Ocultar navegación personalizada antigua (ya no se usa) */
.customNavigation {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .blogcarousel .owl-nav button.owl-prev {
        left: 0;
    }
    
    .blogcarousel .owl-nav button.owl-next {
        right: 0;
    }
    
    #testimonial-carousel .owl-nav button.owl-prev {
        left: 0;
    }
    
    #testimonial-carousel .owl-nav button.owl-next {
        right: 0;
    }
}
