/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
    background-color: var(--color-white);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.testimonials-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-tagline {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #616161;
    margin: 0;
}

.testimonials-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 49.8px);
    line-height: 1;
    letter-spacing: -2.08px;
    color: var(--color-text);
    margin-top: 10px;
}

.testimonials-title span {
    font-style: italic;
    font-weight: 300;
}

/* Marquee Setup */
.testimonials-marquee-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    /* Fade Gradient nas extremidades */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-marquee {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    width: max-content;
    animation: marquee-testimonials 40s linear infinite;
}

.testimonials-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial Card */
.testimonial-card {
    width: 340px;
    height: 350px;
    background-color: #FAFAFA;
    border-radius: 20px;
    padding: 30px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.star-svg {
    width: 25px;
    height: 24px;
}

.testimonial-text {
    font-weight: 500;
    font-size: 17.3px;
    line-height: 27px;
    letter-spacing: -0.36px;
    color: #616161;
    margin: 15px 0 auto 0;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 5px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 500;
    font-size: 18.9px;
    font-style: normal;
    color: var(--color-text);
    margin: 0;
}

.testimonial-role {
    font-weight: 500;
    font-size: 14.8px;
    color: #989897;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        height: auto;
        min-height: 350px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
}
