.container-testemunho-content {
    width: 100%;
    max-width: 1380px;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    align-items: center;
}

.testemunhos-anteriores {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 1rem;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.card-testemunho {
    width: 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #020081e5;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    transition: box-shadow 0.5s ease;
    padding: 1rem 0;
}

.card-testemunho:hover {
    background-color: #e0e0e0;
    border-radius: 50px;
    box-shadow:  20px 20px 30px #bebebe,
                -20px -20px 60px #ffffff;
}

.card-testemunho img {
    width: 90%;
}

.card-testemunho p {
    display: none;
}

.title-send-testemunho {
    color: #020081e5;
    font-weight: 600;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
}

.enviar-testemunho {
    width: 100%;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 2.4rem;
    margin-bottom: 1rem;
    color: #020081e5;
}

.enviar-testemunho p {
    margin: 0.5rem;
}

.input-text-testemunho {
    border: 1px solid #020081e5;
    border-radius: 5px;
    width: 100%;
    padding: 0.3rem;
}

.input-main-testemunho {
    border: 1px solid #020081e5;
    border-radius: 5px;
    width: 100%;
    padding: 0.3rem;
    margin: 0;
}

.container-button-enviar-testemunho {
    display:flex;
    width: 100%;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.container-button-enviar-testemunho button {
    background-color: #020081e5;
    color: #FFFFFF;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
}

.input-texto {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.input-texto label{
    width: 10rem;
    position: absolute;
    left: -11rem;
    text-align: right;
}