/* =========================
   TITULOS COM TRAÇO VERMELHO
========================= */

.titulo-footer {

    position: relative;

    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 35px;

    letter-spacing: -0.5px;
}

/* TRAÇO */

.titulo-footer::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -14px;

    width: 55px;
    height: 4px;

    background-color: #d90429;

    border-radius: 50px;
}

/* VERSÃO MENOR */

.titulo-footer-pequeno {

    position: relative;

    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 28px;
}

/* TRAÇO MENOR */

.titulo-footer-pequeno::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 42px;
    height: 3px;

    background-color: #d90429;

    border-radius: 50px;
}

/* LINKS COM SETINHA */

.links-footer ul {

    margin: 0;
    padding: 0;

    list-style: none;
}

.links-footer ul li {

    margin-bottom: 16px;
}

/* LINK */

.links-footer ul li a {

    position: relative;

    padding-left: 14px;

    text-decoration: none !important;

    color: #ffffff;

    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;

    transition: all .2s ease;
}

/* SETINHA */

.links-footer ul li::before {

    content: "?";

    position: absolute;

    left: 0;
    top: 50%;

    transform: translateY(-50%);

    color: #d90429;

    font-size: 16px;
    font-weight: bold;

    transition: all .2s ease;
}

/* HOVER */

.links-footer ul li a:hover {

    color: #d90429;

    padding-left: 22px;
}

.links-footer ul li a:hover::before {

    left: 4px;
}

.footer-linhas {
    display: flex;
    align-items: flex-start;
    gap: 45px;
}

.footer-coluna {
    position: relative;
    flex: 1;
    padding-right: 45px;
}

.footer-coluna:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8%;
    right: 0;
    width: 1px;
    height: 84%;
    background: rgba(255,255,255,0.12);
}

.footer-coluna p {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-coluna a {
    color: #ffffff;
    text-decoration: none !important;
}

.footer-coluna a:hover {
    color: #d90429;
}

.redes-footer {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}

.redes-footer img {
    width: 17px;
    height: 17px;
}

.lista-comunidade {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lista-comunidade li {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 16px;
}

.seta-vermelha {
    color: #d90429;
    font-weight: bold;
    margin-right: 8px;
}