/* Seção de Depoimentos */
.testimonials {
    padding: 60px 0;
    background-color: #fff;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonial-text::before {
    content: '"';
    font-size: 50px;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: -15px;
    opacity: 0.3;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.testimonial-author::before {
    content: '—';
    margin-right: 10px;
    color: var(--primary-color);
}

/* Media Queries para Depoimentos */
@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

