.testemunha {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    padding: 10% 10%;
    background: #fafafa;
}

.testemunha h3 {
    font-size: 33px;
    max-width: 600px;
    text-align: center;
    line-height: 40px;
}

.testemunha ul {
    position: relative;
    list-style: none;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testemunha ul li {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 10px;
    transition: .3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testemunha ul li:hover {
    transform: translateY(-5px);
    transition: .3s;
}

.testemunha ul li img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.CTA {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    margin-top: 10px;
}

.CTA .content-CTA {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.CTA .content-CTA h4 {
    font-size: 33px;
    max-width: 650px;
    text-align: center;
    line-height: 40px;
}

.CTA .content-CTA p span {
    font-weight: 700;
}

.CTA a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 15px;
    background: #da7516;
    transition: 0.3s;
    border-radius: 8px;
    text-align: center;
}

.CTA a:hover {
    transform: scale(1.1);
    background: #ff7b00;
    transition: 0.3s;
}


@media (max-width: 480px) {

    .testemunha h3 {
        font-size: 24px;
        max-width: 100%;
        text-align: center;
        line-height: 35px;
    }

    .CTA .content-CTA h4 {
        font-size: 26px;
        max-width: 650px;
        text-align: center;
        line-height: 35px;
    }

    .CTA a {
        font-size: 18px;
    }
}
