/* Rodapé */
footer {
    background-color: #444;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
}

.titleRodape{
    font-size: clamp(12px, 4vw, 30px);
    color: #f7150d;
}

.txtRodape {
    font-size: clamp(12px, 4vw, 20px);
    color: #E6E6E6;
    padding-bottom: 1%;
}

.boxRodapeImg {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.boxRodapeImg a {
    text-decoration: none;
}

.redeImg {
    width: clamp(30px, 10vw, 60px);
    transition: opacity 200ms;
}

.redeImg:hover {
    opacity: 0.5;
}