/* Estilos para testimonios — flex responsive */
.testimonios {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonios h1 {
    margin-bottom: .5rem;
}
.testimonios .muted {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Layout con flex para mejor control de wrapping */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.stars {
    display: inline-block;
    direction: ltr;
}

.star { 
    font-size: 50px;
    color: rgb(154, 149, 149);
    cursor: pointer;
    transition: color 0.2s;
}

.star.filled {
    color: gold;
}

/* Tarjeta de testimonio */
.testimonial {
    background: #fff;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(16,24,40,0.06);
    flex: 1 1 100%;
    min-width: 0;
}

blockquote {
    margin: 0 0 .75rem 0;
    font-style: normal;
    color: #111827;
}

footer.test-author {
    color: #6b7280;
    font-size: .95rem;
}

/* En pantallas grandes mostrar dos columnas */
@media (min-width: 700px) {
    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .testimonial {
        flex: 1 1 calc(50% - 0.5rem);
    }
}
.testimonios {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonios h1 {
    margin-bottom: .5rem;
}
.testimonios .muted {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Layout con flex para mejor control de wrapping */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

/* Tarjeta de testimonio */
.testimonial {
    background: #fff;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(16,24,40,0.06);
    flex: 1 1 100%;
    min-width: 0;
}

blockquote {
    margin: 0 0 .75rem 0;
    font-style: normal;
    color: #111827;
}

footer.test-author {
    color: #6b7280;
    font-size: .95rem;
}

/* En pantallas grandes mostrar dos columnas */
@media (min-width: 700px) {
    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .testimonial {
        flex: 1 1 calc(50% - 0.5rem);
    }
}