/* --- ESTILO GERAL DE PROVA SOCIAL --- */
.provasocial {
    padding: 80px 0;
    color: white;
}

/* --- ESTILO DO HEADER --- */
.provasocial-header {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.provasocial-hat {
    color: var(--Grey-50);
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 1px;
    width: fit-content;

    border: 1px solid rgb(255, 255, 255, 0.2);
    padding: 8px 14px;
    border-radius: 64px;
}

.provasocial-title {
    color: var(--Grey-50);
    font-size: 56px;
    font-weight: 100px;
    text-align: center;
    line-height: 1.3;
    margin-top: 20px;
}  

.provasocial-description {
    color: var(--Grey-50);
    font-size: 16px;
    font-weight: 100;
    text-align: center;
    max-width: 543px;
    margin: 0 auto;
    margin-top: 12px;
}

/* --- ESTILO DO TESTEMUNHO GRID --- */
.testimonials-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    max-width: 360px;

    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 80px -20px rgba(4, 115, 255, 0.2);
    border-radius: 24px;
    padding: 48px 24px;

    display: flex;
    flex-direction: column;
}

.testimonial-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-bottom: 24px;

    border-radius: 50%;
    border: 1px solid rgb(255, 255, 255, 0.3);

    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-text {
    color: var(--Grey-50);
    line-height: 1.4;
    font-size: 16px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 52px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: var(--Grey-50);
    font-weight: 400;
}

.author-title {
    color: var(--Grey-200);
    font-size: 12px;
}

/* --- ESTILO DAS LOGOS DOS CLIENTES --- */
.client-logo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 32px;
    margin-top: 100px;
    flex-wrap: wrap;
}