/* CSS DESKTOP */
.rodape {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    color: #333;
    font-size: 0.95rem;
    border-top: 1px solid #eee;
}

.rodape-logo {
    width: 140px;
    margin-bottom: 20px;
}

.rodape-texto {
    margin: 6px 0;
    color: #555;
}

.rodape-texto a {
    color: #555;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.rodape-texto a:hover {
    color: var(--color-accent);
}

.rodape-creditos {
    margin: 20px 0 10px;
    color: #444;
}

.rodape-icones {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.icone {
    width: 50px;
    height: 32px;
    background-color: #f0f0f0;
    border-radius: 6px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.icone:hover {
    transform: scale(1.05);
    background-color: #ddd;
}


/* CSS MOBILE */
@media (max-width: 52em) {
    .rodape-logo {
        width: 110px;
    }

    .rodape-icones {
        gap: 10px;
    }

    .icone {
        width: 44px;
        height: 28px;
        background-size: 16px;
    }

    .rodape-texto,
    .rodape-creditos {
        font-size: 0.85rem;
    }
}