/* Estilos para el Testimonio Carousel */
.testimonio-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px;
    overflow: hidden;
    background-color: #000000;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.testimonio-carousel-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.testimonio-carousel-wrapper {
    position: relative;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
}

.testimonio-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.testimonio-content {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 15px;
}

.testimonio-author {
    display: flex;
    align-items: center;
}

.testimonio-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.testimonio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-username {
    color: #cccccc;
    font-size: 14px;
    font-weight: 400;
}

/* Ticker mode */
.swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Swiper navigation & pagination customization */
.swiper-button-next, 
.swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #555;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ffffff;
}

/* Modo Vertical */
.swiper-vertical .swiper-slide {
    height: auto !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .testimonio-carousel-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .testimonio-carousel-wrapper {
        height: 300px;
    }
    
    .testimonio-carousel-container {
        padding: 20px;
    }
}