/* ==========================================================================
   SEÇÃO DE DEPOIMENTOS (TESTIMONIALS)
   ========================================================================== */

.testimonials {
    background: #f9f9f9; /* Um fundo levemente cinza para diferenciar */
    padding: 60px 20px;
    text-align: center;
}

/* O container 'container' ajuda a centralizar e limitar a largura */
.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.testimonials .testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    /* Cria 3 colunas em telas grandes, 2 em médias e 1 em pequenas */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
    flex-grow: 1; /* Empurra o autor para a base do card */
}

.testimonial-text::before {
    content: '“';
    font-size: 3rem;
    color: #ee4d2d;
    font-weight: bold;
    line-height: 0;
    position: relative;
    top: 15px;
    margin-right: 5px;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-author strong {
    display: block;
    color: #333;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #888;
}