/* modules/testimonios/testimonios.css */
/* Testimonios Profesional Minimalista - Yoga Gaya */

.testimonios-container {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #FAF7F0 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.testimonios-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonios-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #4A4A4A;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    position: relative;
}

.testimonios-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #8B4513;
}

.testimonios-subtitle {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.2rem;
    color: #6B6B6B;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.testimonios-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #E8E6E1;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
    background: white;
}

.testimonios-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 500px;
}

.testimonio-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 3rem;
    gap: 3rem;
    position: relative;
    box-sizing: border-box;
}

.testimonio-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.01) 0%, rgba(160, 82, 45, 0.01) 100%);
    pointer-events: none;
}

/* === IMAGEN DEL CLIENTE === */
.cliente-image-container {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cliente-image-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
    overflow: hidden;
    border: 1px solid #E8E6E1;
}

.cliente-image {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    filter: saturate(0.9) contrast(1.1);
    border-radius: 0;
}

.cliente-image-background:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.3);
}

.cliente-image-background:hover .cliente-image {
    transform: scale(1.02);
}

/* === CONTENIDO DEL TESTIMONIO === */
.testimonio-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    display: none;
}

.testimonio-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid #8B4513;
    font-weight: 400;
}

.cliente-info {
    margin-bottom: 1.5rem;
}

.cliente-nombre {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.cliente-ubicacion {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #6B6B6B;
    font-size: 0.95rem;
    font-weight: 400;
}

.testimonio-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #8B4513;
    font-size: 1.1rem;
}

.rating-text {
    color: #6B6B6B;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    font-family: 'Inter', -apple-system, sans-serif;
}

.servicio-utilizado {
    background: #8B4513;
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #8B4513;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* === NAVEGACIÓN PROFESIONAL === */
.testimonios-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #E8E6E1;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #8B4513;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.testimonios-nav:hover {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
    transform: translateY(-50%) scale(1.05);
}

.testimonios-nav.prev {
    left: 10px;
}

.testimonios-nav.next {
    right: 10px;
}

/* === INDICADORES PROFESIONALES === */
.testimonios-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonios-indicator {
    width: 40px;
    height: 3px;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonios-indicator.active {
    background: #8B4513;
    width: 60px;
}

.testimonios-indicator:hover {
    background: rgba(139, 69, 19, 0.6);
}

/* === RESPONSIVE MÓVIL === */
@media (max-width: 768px) {
    .testimonios-container {
        padding: 3rem 1rem;
    }
    
    .testimonios-title {
        font-size: 2.2rem;
    }
    
    .testimonios-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .testimonios-carousel {
        margin: 0 1rem;
    }
    
    .testimonios-slider {
        height: auto;
        min-height: 500px;
    }
    
    .testimonio-slide {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
        text-align: center;
        height: auto;
        min-height: 500px;
    }
    
    .cliente-image-container {
        flex: none;
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .cliente-image {
        width: calc(100% - 8px);
        height: calc(100% - 8px);
    }
    
    .testimonio-content {
        text-align: center;
        height: auto;
        justify-content: flex-start;
    }
    
    .testimonio-text {
        font-size: 1rem;
        text-align: center;
        border-left: none;
        border-top: 3px solid #8B4513;
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .testimonios-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .testimonios-nav.prev {
        left: 5px;
    }
    
    .testimonios-nav.next {
        right: 5px;
    }
    
    .quote-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonios-carousel {
        margin: 0 0.5rem;
    }
    
    .testimonio-slide {
        padding: 1.5rem 1rem;
        min-height: 450px;
    }
    
    .cliente-image-container {
        width: 150px;
        height: 150px;
    }
    
    .testimonios-nav {
        display: none;
    }
    
    .testimonios-indicators {
        margin-top: 1.5rem;
    }
    
    .testimonios-indicator {
        width: 30px;
        height: 2px;
    }
    
    .testimonios-indicator.active {
        width: 45px;
    }
}

/* === PATRÓN DE FONDO SUTIL === */
.testimonios-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(139, 69, 19, 0.02) 25%),
        linear-gradient(-45deg, transparent 25%, rgba(139, 69, 19, 0.02) 25%);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.3;
}