    #rodape {
        background: var(--fundoCinza);
        color: var(--cor-texto);
    }
    
    .conteudoRodape {
        width: 95%;
        max-width: 1400px;
        margin: auto;
        padding: 30px 0 4px 20px;
        display: grid;
        grid-template-columns: 1.7fr 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .colunaRodape {
        position: relative;
    }
    
    .colunaRodape:not(:first-child) {
        padding-left: 35px;
        border-left: 1px solid var(--azulEscuro);
        margin-bottom: 35px;
    }
    
    .logoRodape {
        width: 150px;
        margin-bottom: 25px;
    }
    
    .descricaoLogo {
        font-size: 12pt;
        line-height: 1.5;
        color: var(--cor-texto);
        margin: 10px 0 20px 0;
    }
    
    .redesSociais {
        display: flex;
        gap: 15px;
    }
    
    .redesSociais a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        margin: 0 0 30px 0;
        background: var(--azulEscuro);
        color: var(--corBranca);
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: 0;
    }
    
    .redesSociais img {
        background-color: transparent;
        width: 25px;
        height: 25px;
    }
    
    .redesSociais a:hover {
        background: var(--laranjaForte);
    }
    
    .colunaRodape h3 {
        margin-bottom: 25px;
        font-size: 24px;
        color: var(--azulEscuro);
        position: relative;
    }
    
    .colunaRodape h3::before {
        content: "";
        position: absolute;
        left: -36px;
        top: 6px;
        width: 4.5px;
        height: 25px;
        background: var(--azulClaro);
        border-radius: 5px;
    }
    
    .colunaRodape li i {
        margin-bottom: 5px;
        margin-left: 20px;
    }
    
    .colunaRodape a {
        color: var(--azulEscuro);
        text-decoration: none;
        transition: .3s;
        font-size: 12pt;
    }
    
    .colunaRodape ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .colunaRodape ul li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .colunaRodape ul li .ponto {
        width: 11px;
        height: 11px;
        background: var(--azulClaro);
        border-radius: 50%;
        flex-shrink: 0;
        transition: all .3s ease;
    }
    
    .colunaRodape ul li:hover .ponto {
        width: 0;
        height: 0;
        background: transparent;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 7px solid var(--azulEscuro);
        border-radius: 0;
        transform: translateX(2px);
    }
    
    .colunaRodape ul li a {
        color: var(--azulEscuro);
        text-decoration: none;
        font-size: 12pt;
        transition: .5s;
    }
    
    .colunaRodape ul li:hover a {
        color: var(--azulClaro);
    }
    
    .colunaRodape a:hover {
        color: var(--azulClaro);
    }
    
    .listaContactos li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        color: var(--azulEscuro);
        font-size: 18px;
    }
    
    .listaContactos img {
        margin-top: 4px;
        transition: filter .3s ease;
    }
    
    .listaContactos li img {
        filter: none;
    }
    
    .listaContactos li:hover img {
        filter: brightness(0) saturate(100%) invert(20%) sepia(22%) saturate(1150%) hue-rotate(180deg) brightness(80%) contrast(100%);
    }
    
    .barra-inferior {
        background: var(--azulEscuro);
        color: var(--corBranca);
        text-align: center;
        padding: 18px;
        font-size: 17px;
    }
    
    @media (max-width: 900px) {
        #rodape {
            width: 100%;
            overflow: hidden;
        }
        .logoRodape {
            width: 35% !important;
            margin-bottom: 25px;
        }
        .conteudoRodape {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 35px 28px 20px;
            display: flex;
            flex-direction: column;
            gap: 0;
            box-sizing: border-box;
        }
        .colunaRodape:first-child {
            display: contents;
        }
        .colunaRodape:first-child>img {
            width: 160px;
            height: auto;
            margin: 0 auto 28px;
            display: block;
            order: 1;
        }
        .colunaRodape {
            width: 100%;
            box-sizing: border-box;
        }
        .colunaRodape:not(:first-child) {
            width: 100%;
            padding-left: 0;
            border-left: none;
            margin-bottom: 25px;
        }
        .colunaRodape:nth-child(2) {
            order: 2;
        }
        .colunaRodape:nth-child(3) {
            order: 3;
        }
        .colunaRodape:nth-child(4) {
            order: 4;
        }
        .colunaRodape h3 {
            width: 100%;
            margin: 0 0 22px;
            padding-bottom: 12px;
            font-size: 25px;
            line-height: 1.2;
            color: var(--azulEscuro);
            position: relative;
        }
        .colunaRodape h3::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: rgba(38, 61, 103, .45);
        }
        .colunaRodape h3::before {
            content: "";
            position: absolute;
            left: 0;
            top: 38px;
            width: 26px;
            height: 5px;
            background: var(--azulClaro);
            border-radius: 5px;
            z-index: 2;
        }
        .colunaRodape ul {
            width: 100%;
            padding: 0;
            margin: 0;
        }
        .colunaRodape ul li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .colunaRodape ul li a {
            font-size: 20pt;
            line-height: 1.4;
            color: var(--azulEscuro);
        }
        .colunaRodape ul li .ponto {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
            background: var(--azulClaro);
            border-radius: 50%;
        }
        .listaContactos li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 13px;
            color: var(--azulEscuro);
            font-size: 20pt;
            line-height: 1.4;
        }
        .listaContactos img {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            margin-top: 0;
        }
        .descricaoLogo {
            order: 5;
            width: 100%;
            max-width: 700px;
            margin: 10px auto 20px;
            text-align: center;
            font-size: 18pt;
            line-height: 1.35;
            color: var(--cor-texto);
        }
        .redesSociais {
            order: 6;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 0;
            margin-bottom: 0;
        }
        .redesSociais a {
            width: 82px;
            height: 82px;
            margin: 0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--azulEscuro);
        }
        .redesSociais img {
            width: 42px;
            height: 42px;
        }
        .barra-inferior {
            width: 100%;
            padding: 10px 20px;
            box-sizing: border-box;
            font-size: 12px;
            line-height: 1.35;
            text-align: center;
        }
    }
    
    @media(max-width:700px) {
        .logoRodape {
            width: 350px;
            margin-bottom: 25px;
        }
        .colunaRodape ul li .ponto {
            width: 11px;
            height: 11px;
            flex-shrink: 0;
            background: var(--azulClaro);
            border-radius: 50%;
        }
        .listaContactos img {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 0;
        }
        .descricaoLogo {
            order: 5;
            width: 100%;
            max-width: 450px;
            margin: 10px auto 20px;
            text-align: center;
            font-size: 12pt;
            line-height: 1.35;
            color: var(--cor-texto);
        }
        .colunaRodape ul li a {
            font-size: 18px;
            line-height: 1.4;
            color: var(--azulEscuro);
        }
        .listaContactos li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 13px;
            color: var(--azulEscuro);
            font-size: 18px;
            line-height: 1.4;
        }
        .redesSociais a {
            width: 45px;
            height: 45px;
            margin: 0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--azulEscuro);
        }
        .redesSociais img {
            width: 25px;
            height: 25px;
        }
    }