.footer {
    background: linear-gradient(30deg, #013D55 20%, #0387BB 80%);

    display: flex;
    justify-content: center;

    padding: 40px 20px;

    position: relative;

    overflow: hidden;
}

.footer__container {
    width: 100%;
    max-width: 900px;

    color: white;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    gap: 60px;
}

.footer__container::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";

    background-image: url("../img/docoracao.png");
    background-repeat: no-repeat;
    background-size: auto 100%;

    transform: rotate(180deg);

    width: 380px;
    height: 50px;
}

.footer__logo {
    width: 250px;
}

.footer__contato,
.footer__redesocial__lista {
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__contato__item,
.footer__redesocial__lista__item a {
    font-size: 18px;

    text-decoration: none;

    color: white;

    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__contato__item__icon,
.footer__redesocial__lista__item__icon {
    width: 30px;
}

.footer__redesocial__title {
    font-size: 18px;
}

.footer__redesocial {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 933px) {
    .footer__container {
        max-width: 588px;
    }

    .footer__container::after {
        background-image: none;
    }
}

@media screen and (max-width: 624px) {
    .footer__redesocial__title {
        display: none;
    }

    .footer__redesocial__lista {
        flex-direction: row;
        gap: 30px;

        
    }

    .footer__redesocial__lista__item {
        width: calc(50% - 15px);
    }

    .footer__redesocial__lista__item a {
        flex-direction: column;
    }

    .footer__redesocial {
        position: relative;
        padding: 10px 0;
        width: 100%;
    }

    .footer__redesocial::after {
        position: absolute;
        top: 0;
        left: -20px;
        content: "";

        width: 100vw;
        height: 2px;

        background-color: white;
    }

    .footer__redesocial::before {
        position: absolute;
        bottom: 0;
        left: -20px;
        z-index: 2;
        content: "";

        width: 100vw;
        height: 2px;

        background-color: white;
    }
}


@media screen and (max-width: 768px) {
    .footer__container {
        gap: 40px;
    }

    /* Texto */
    .depoimento__titulo {
        font-size: 24px;
    }

    .depoimento__subtitulo {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .footer__container {
        gap: 30px;
    }

    /* Texto */
    .depoimento__titulo {
        font-size: 24px;
    }

    .depoimento__subtitulo {
        font-size: 18px;
    }
}