/* RESET */
/* 1. ESTILOS GERAIS */

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #5192d398;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #343a40;
    margin-bottom: 40px;
}

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

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #e9ecef;
}

.testimonial-quote {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    font-style: normal;
    color: #495057;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #adb5bd;
    margin-top: 5px;
}
