/* Seção de Testemunhos */
.testimonials-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #F5F8F7;
}

.testimonials-section h2 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-text);
    font-size: 2em;
    line-height: 1;
    font-weight: var(--weight-normal) !important;
    padding: 0px;

}

.testimonials-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-text);
    font-weight: var(--weight-normal);
}

/* Logos - Carrossel */
.company-logos {
    width: 50%; /* Ajusta para ocupar 50% da tela */
    overflow: hidden;
    margin: 0 auto 40px; /* Centraliza horizontalmente */
    display: flex;
    justify-content: center;
    align-items: center; /* Centraliza verticalmente */
}

.company-logos .logos-wrapper {
    display: flex;
    gap: 40px;
    animation: slide 15s linear infinite;
}


/* Ajuste para cor das imagens */
.company-logos img {
    max-height: 50px;
    filter: grayscale(100%) brightness(50%); /* Inicial: cinza escuro */
    transition: filter 0.3s ease; /* Transição suave */
}

.company-logos img:hover {
    filter: grayscale(0%) brightness(100%); /* Ao passar o mouse: branco */
}

/* Animação do Carrossel */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
