/**
 * ConectaTerapia - Testimonials Styles
 * Estilos para la sección de testimonios (grid y cards)
 *
 * @package ConectaTerapia
 * @version 1.0.0
 */

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFB 0%, #E8F0F2 100%);
}

.testimonials-section--dynamic {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFB 0%, #E8F0F2 100%);
}

.testimonials-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.testimonials-grid--grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Default grid fallback if style attr is missing */
.testimonials-grid:not([class*="--"]) {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(125, 211, 192, 0.1);
    transition: transform 300ms ease, box-shadow 300ms ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.testimonial-card--featured {
    border-color: #7DD3C0;
    box-shadow: 0 12px 40px rgba(125, 211, 192, 0.15);
}

.testimonial-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #7DD3C0 0%, #5FC4B0 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.star {
    font-size: 18px;
    color: #E8F0F2;
}

.star--filled {
    color: #F59E0B;
}

.testimonial-content blockquote {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #2C3E50;
    font-style: italic;
}

.testimonial-content blockquote p {
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E8F0F2;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F8FAFB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
}

.author-info span {
    font-size: 14px;
    color: #5A6C7D;
}

@media (max-width: 768px) {
    .testimonials-section,
    .testimonials-section--dynamic {
        padding: 50px 0;
    }

    .testimonials-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .testimonials-grid--grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-content blockquote {
        font-size: 15px;
    }
}
