/* Estilos para seção de depoimentos */
#testimonials {
    background: #f8f9fa;
    padding: 80px 0;
}

#testimonials h2 {
    text-align: center;
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFA726;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    text-align: right;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.testimonial-author strong {
    color: #2c5530;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    #testimonials {
        padding: 60px 0;
    }
    
    #testimonials h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
}
