.depoimentos-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
}

.depoimentos-container {
    max-width: 1382px;
    margin: 0 auto;
    padding: 0 20px;
}

.depoimentos-content {
    position: relative;
    min-height: 150px;
    margin-bottom: 40px;
}

.depoimento-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.depoimento-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.depoimento-texto {
    margin-bottom: 12px;
}

.depoimento-texto p {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    line-height: 133%;
    letter-spacing: 0;
    color: #181818;
    margin: 0;
}

.depoimento-autor {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.depoimento-nome,
.depoimento-cargo {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 133%;
    letter-spacing: 0;
    color: rgba(24, 24, 24, 0.7);
}

.depoimentos-avatars {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
}

.depoimento-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.depoimento-avatar:hover {
    transform: scale(1.05);
}

.depoimento-avatar img,
.depoimento-avatar .avatar-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.depoimento-avatar.active img,
.depoimento-avatar.active .avatar-placeholder {
    filter: grayscale(0%);
}

.depoimento-avatar .avatar-placeholder {
    background: #181818;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: #D9D9D9;
    stroke-width: 3;
}

.progress-ring-circle {
    fill: none;
    stroke: #FFCE00;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 201.06;
    stroke-dashoffset: 201.06;
    transition: stroke-dashoffset 0.1s linear;
}

.depoimento-avatar.active .progress-ring-circle {
    stroke-dashoffset: 201.06;
}

/* Tablet */
@media (max-width: 1024px) {
    .depoimento-texto p {
        font-size: 20px;
    }
    
    .depoimento-nome,
    .depoimento-cargo {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .depoimentos-content {
        min-height: 120px;
        margin-bottom: 40px;
    }
    
    .depoimento-texto {
        margin-bottom: 12px;
    }
    
    .depoimento-texto p {
        font-size: 18px;
    }
    
    .depoimento-nome,
    .depoimento-cargo {
        font-size: 14px;
    }
    
    .depoimentos-avatars {
        gap: 32px;
    }
    
    .depoimento-avatar {
        width: 72px;
        height: 72px;
    }
    
    .depoimento-avatar img,
    .depoimento-avatar .avatar-placeholder {
        width: 64px;
        height: 64px;
    }
    
    .progress-ring {
        width: 72px;
        height: 72px;
    }
}
