/* Testimonios Rotativo - Estilos Frontend */
/* Versión: 1.2.0 */

.testimonios-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
}

.testimonios-circle {
    position: relative;
    width: 100%;
    height: 160px;
    margin: 0 auto 20px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonio-item {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
}

/* Testimonio central - más grande y al frente */
.testimonio-item.center {
    width: 180px;
    height: 180px;
    transform: translateX(0) translateZ(0) scale(1);
    opacity: 1;
    z-index: 10;
}

/* Testimonios laterales - más pequeños y hacia atrás */
.testimonio-item.left {
    width: 120px;
    height: 120px;
    transform: translateX(-160px) translateZ(-100px) scale(0.8);
    opacity: 0.7;
    z-index: 5;
}

.testimonio-item.right {
    width: 120px;
    height: 120px;
    transform: translateX(160px) translateZ(-100px) scale(0.8);
    opacity: 0.7;
    z-index: 5;
}

/* Testimonios ocultos - completamente detrás */
.testimonio-item.hidden {
    width: 100px;
    height: 100px;
    transform: translateX(0) translateZ(-200px) scale(0.6);
    opacity: 0;
    z-index: 1;
}

/* Avatar con borde dorado */
.testimonio-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #c2a459;
    transition: all 0.6s ease;
    position: relative;
    background: #1a1a1a;
}

.testimonio-item.active .testimonio-avatar,
.testimonio-item.center .testimonio-avatar {
    border: 4px solid #c2a459;
    box-shadow: 0 8px 25px rgba(194, 164, 89, 0.4);
}

.testimonio-avatar:hover {
    border-color: #d4b86a;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(194, 164, 89, 0.3);
}

.testimonio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.testimonio-content {
    display: none;
}

/* Display de testimonios - fondo transparente */
.testimonio-display {
    text-align: center;
    min-height: 150px;
    padding: 20px 30px;
    background: transparent;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.testimonio-content-display {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testimonio-content-display.show {
    opacity: 1;
    transform: translateY(0);
}

/* Estrellas de calificación */
.testimonio-stars {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonio-stars .star {
    font-size: 24px;
    color: #444;
    transition: color 0.3s ease;
}

.testimonio-stars .star.filled {
    color: #ffe201;
    text-shadow: 0 0 10px rgba(255, 226, 1, 0.5);
}

/* Texto del testimonio - color blanco */
.testimonio-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}

.testimonio-text p {
    margin: 0;
    color: #ffffff;
}

/* Autor del testimonio - color blanco */
.testimonio-author {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.testimonio-author strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.testimonio-author .cargo {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #c2a459;
    font-weight: 500;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .testimonios-container {
        padding: 20px 15px;
    }
    
    .testimonios-circle {
        height: 140px;
        margin-bottom: 15px;
    }
    
    .testimonio-item.center {
        width: 150px;
        height: 150px;
    }
    
    .testimonio-item.left {
        width: 100px;
        height: 100px;
        transform: translateX(-130px) translateZ(-100px) scale(0.75);
    }
    
    .testimonio-item.right {
        width: 100px;
        height: 100px;
        transform: translateX(130px) translateZ(-100px) scale(0.75);
    }
    
    .testimonio-display {
        padding: 15px 20px;
        min-height: 120px;
    }
    
    .testimonio-text {
        font-size: 14px;
    }
    
    .testimonio-stars .star {
        font-size: 20px;
    }
}

/* Responsive - Móvil */
@media (max-width: 480px) {
    .testimonios-container {
        padding: 15px 10px;
    }
    
    .testimonios-circle {
        height: 120px;
        margin-bottom: 10px;
    }
    
    .testimonio-item.center {
        width: 120px;
        height: 120px;
    }
    
    .testimonio-item.left {
        width: 80px;
        height: 80px;
        transform: translateX(-100px) translateZ(-100px) scale(0.7);
    }
    
    .testimonio-item.right {
        width: 80px;
        height: 80px;
        transform: translateX(100px) translateZ(-100px) scale(0.7);
    }
    
    .testimonio-display {
        padding: 10px 15px;
        min-height: 100px;
    }
    
    .testimonio-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .testimonio-author strong {
        font-size: 14px;
    }
    
    .testimonio-stars .star {
        font-size: 18px;
    }
    
    .testimonio-stars {
        margin-bottom: 10px;
    }
}