/* Estilos para depoimentos com fotos de perfil */
.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff0f5, #ffecf1);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(255, 105, 180, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.testimonial-image {
    flex: 0 0 60px;
    margin-right: 15px;
}

.testimonial-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff69b4;
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.2);
}

.testimonial-content {
    flex: 1;
}

.testimonial blockquote {
    margin: 0;
    padding: 0;
    border-left: none;
}

.testimonial p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #ff69b4;
    margin-top: 10px;
}

/* Estilos para a seção de depoimentos */
.more-testimonials {
    background: #fff;
}

.more-testimonials .section-title {
    margin-bottom: 25px;
    text-align: center;
    color: #ff69b4;
}
