.depoimentos {
    background-color: var(--bg-light);
    padding: var(--padding);
    padding-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.depoimentos-rodape {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    font-family: var(--font-clash);
    font-size: 12.5vw;
    font-weight: 600;
    text-align: center;
    color: #BDBDBD;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.depoimentos-texto {
    width: 50%;
    padding-right: 5vw;
    z-index: 3;
}

.depoimentos-titulo {
    color: var(--text-dark-800);
    font-family: var(--font-clash);
    font-size: clamp(32px, 5vw, 80px);
    font-weight: 400;
    margin-bottom: 24px;
}

.depoimentos-descricao {
    color: var(--text-dark-800);
    font-size: clamp(14px, 1.2vw, 20px);
    font-weight: 400;
    line-height: 1.6;
}

.depoimentos-descricao strong {
    font-weight: 600;
}

.depoimentos-card {
    width: 100%;
    position: relative;
    padding: clamp(24px, 2.5vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 32px;
    box-shadow: 24px 28px 44px 0 rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.depoimentos-card p {
    font-size: clamp(12px, 1.1vw, 18px);
    line-height: 1.6;
}

.depoimentos-informacoes {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoimentos-informacoes img {
    width: clamp(40px, 4vw, 56px);
    height: clamp(40px, 4vw, 56px);
    border-radius: 50%;
    object-fit: cover;
}

.depoimentos-nome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.depoimentos-informacoes h3 {
    font-size: clamp(14px, 1.4vw, 24px);
    font-family: var(--font-clash);
    font-weight: 500;
}

.depoimentos-informacoes a {
    font-size: clamp(12px, 1vw, 16px);
    font-weight: 400;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.depoimentos-informacoes a:hover {
    opacity: 0.9;
}

.bg-azulado {
    background-color: #dbd7f7;
    color: var(--text-dark-900);
}

.bg-preto {
    background-color: #1a1a1a;
    color: var(--text-light-900);
}

.bg-cinza {
    background-color: #d8d8d8;
    color: var(--text-dark-900);
}

.bg-branco {
    background-color: #f9f9f9;
    color: var(--text-dark-900);
}

.depoimentos-superior {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
}

.depoimentos-inferior {
    position: relative;
    width: 100%;
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 2;
}

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

.depoimentos-container:first-child {
    justify-content: space-around;
    margin-top: -2%;
}

.dep-joao {
    max-width: 600px;
    z-index: 1;
}

.dep-guilherme {
    max-width: 550px;
    margin-left: 6%;
    z-index: 2;
}

.dep-clayton {
    max-width: 650px;
    margin-top: -10;
    margin-left: 12%;
    z-index: 4;
}

.dep-vinicius {
    max-width: 740px;
    position: absolute;
    margin-top: -10%;
    left: 40%;
    z-index: 3;
}

.dep-fabio {
    max-width: 540px;
}

.dep-gabriel {
    max-width: 580px;
    margin-left: 10%;
}

.dep-richard {
    max-width: 680px;
    margin-top: -10%;
    margin-left: 10%;
}

.footer-container {
    position: relative;
}

.depoimentos-encerramento {
    background-color: var(--bg-light);
    width: 100%;
    padding: var(--padding);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: -2px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.encerramento-texto {
    font-family: var(--font-clash);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 500;
    color: var(--text-dark-800);
    max-width: 1000px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .depoimentos {
        flex-direction: column;
    }

    .depoimentos-texto,
    .depoimentos-superior,
    .depoimentos-inferior {
        width: 100%;
        padding-right: 0;
    }

    .depoimentos-texto {
        margin-bottom: 40px;
    }

    .depoimentos-inferior {
        margin-top: 32px;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .depoimentos-container {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin: 0;
        gap: 24px;
    }

    .depoimentos-card {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        margin: 0 !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .depoimentos-encerramento {
        padding: 15vh var(--padding);
    }
}