/* testimonios.css - Versión Minimalista */
.product-testimonials-minimal {
    margin: 40px 0;
    position: relative;
    clear: both;
    width: 100%;
}

.testimonials-carousel-minimal {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    min-height: 200px;
}

.testimonial-card-minimal {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-card-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-slide-minimal {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slide-minimal.active {
    display: block;
    opacity: 1;
}

.stars-rating-minimal {
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.star-icon-minimal {
    fill: #ddd;
    transition: fill 0.2s ease;
}

.star-icon-minimal.filled {
    fill: #ffc107;
}

.testimonial-text-minimal {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
}

.client-name-minimal {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    font-style: normal;
}

/* Flechas de navegación laterales */
.testimonial-prev-minimal,
.testimonial-next-minimal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0;
}

.testimonial-prev-minimal:hover,
.testimonial-next-minimal:hover {
    background: #f8f8f8;
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testimonial-prev-minimal:active,
.testimonial-next-minimal:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-prev-minimal {
    left: -50px;
}

.testimonial-next-minimal {
    right: -50px;
}

.testimonial-prev-minimal svg,
.testimonial-next-minimal svg {
    width: 20px;
    height: 20px;
    fill: #666;
    transition: fill 0.2s ease;
}

.testimonial-prev-minimal:hover svg,
.testimonial-next-minimal:hover svg {
    fill: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-prev-minimal {
        left: 10px;
    }
    
    .testimonial-next-minimal {
        right: 10px;
    }
    
    .testimonial-card-minimal {
        padding: 20px;
        margin: 0 15px;
    }
    
    .testimonials-carousel-minimal {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .testimonial-text-minimal {
        font-size: 15px;
    }
    
    .client-name-minimal {
        font-size: 13px;
    }
    
    .testimonial-prev-minimal,
    .testimonial-next-minimal {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-prev-minimal svg,
    .testimonial-next-minimal svg {
        width: 18px;
        height: 18px;
    }
}

/* Animación suave para cambios de slide */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-slide-minimal.active {
    animation: fadeIn 0.5s ease forwards;
}

/* Separador visual */
.product-testimonials-minimal h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.product-testimonials-minimal h3:after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #e0e0e0;
    margin: 15px auto 0;
}
/* Contenedor principal - Oculta slides no activos */
.testimonials-carousel-minimal {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

/* Slides - Todos ocultos por defecto */
.testimonial-slide-minimal {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    transform: translateX(100%);
}

/* Slide activo */
.testimonial-slide-minimal.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease;
}

/* Slide anterior (para transición) */
.testimonial-slide-minimal.previous {
    transform: translateX(-100%);
}

/* Controles de navegación */
.testimonial-prev-minimal,
.testimonial-next-minimal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial-prev-minimal:hover,
.testimonial-next-minimal:hover {
    background: #f8f8f8;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.testimonial-prev-minimal {
    left: 10px;
}

.testimonial-next-minimal {
    right: 10px;
}

/* Íconos de flechas */
.testimonial-prev-minimal svg,
.testimonial-next-minimal svg {
    width: 20px;
    height: 20px;
    fill: #333;
}