/* =========================================
                 STOPKA
========================================= */

footer {
    width: 100%;
    background: var(--header);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 50px 20px 30px 20px;
    flex-wrap: wrap;
    gap: 40px;
}

footer div {
    display: flex;
    flex-direction: column;
    color: var(--header-text);
    width: 300px;
}

footer div p {
    width: 100%;
    border-bottom: 1px solid var(--rufio-meble-color);
    padding-bottom: 8px;
    font-size: 20px;
    color: var(--header-text);
    margin-bottom: 15px;
    text-transform: uppercase;
}

footer div a {
    text-align: left;
    color: var(--header-text);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 35px;
    gap: 10px;
    font-size: 0.95rem;
}

footer div span:hover a {
    margin-left: 5px;
    color: var(--rufio-meble-color);
}

footer div a::before {
    font-family: "Font Awesome 6 Free";
    content: "\f0da";
    font-weight: 900;
    color: var(--rufio-meble-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

footer div span:hover a::before {
    opacity: 1;
}

footer .copyright {
    flex-basis: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
}
