.depoimentos_section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centraliza verticalmente */
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.title_depoimentos {
    position: absolute;
    top: 0;
}

h2 {
    font-size: 14px;
    margin-top: 30px;
    color: var(--black-1);
}

.arrows {
    z-index: 1000;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px; /* Espaço lateral */
    pointer-events: auto;
}


.carrossel_container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.depoimento_carrossel {
    display: flex;
    width: 400%;
    transition: transform 0.5s ease-in-out;
}

.move_carrossel {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centraliza verticalmente o conteúdo */
    height: 100%;
    position: relative;
    text-align: center;
    gap: 10px; /* Espaço entre os itens */
}

.depoimentos_photo {
    width: 150px;
    height: 150px;
    border: 3px solid var(--blue-2);
    border-radius: 50%;
    overflow: hidden;
}

.depoimentos_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento_carrossel p {
    text-align: center;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
    margin: 0;
    line-height: 1.4;
}

.depoimento_carrossel span {
    font-size: 12px;
}

.cotes {
    position: absolute;
    top: 0;
    width: 80%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 1;
    font-size: 40px;
    color: #ccc;
}

/* Responsivo */
@media (max-width: 601px) {
    .depoimentos_section {
        height: 277px;
    }

    .depoimentos_photo {
        width: 75px;
        height: 75px;
    }

    .depoimento_carrossel p {
        font-size: 10px;
        width: 250px;
    }

    .depoimento_carrossel span {
        font-size: 9px;
    }

    .cotes {
        width: 250px;
        font-size: 24px;
    }
}
