/* ===============================
   FOOTER - MU SEASON 19 PART 1
================================ */

.footer-razor {
    position: relative;
    height: 300px;

    background-color: rgba(0, 0, 0, 0.845);
    color: #fff;

    border-top: 1px solid rgba(184, 3, 3, 0.8);

    font-size: 15px;
    letter-spacing: 1.5px;

    text-shadow:
        0 0 5px rgba(129, 2, 2, 0.9),
        0 0 10px rgba(129, 2, 2, 2.7),
        0 0 15px rgba(129, 2, 2, 0.5);

    box-shadow:
        inset 0 1px 0 rgba(129, 2, 2, 0.5),
        0 -15px 30px rgba(0, 0, 0, 0.9);

    transition: 0.3s ease-in-out;
    z-index: 1;
}

/* LINHA DE FOGO NO TOPO */
.footer-razor::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(90deg,
            transparent,
            rgba(106, 14, 14, 0.9),
            transparent);

    box-shadow: 0 0 10px rgba(255, 59, 59, 0.8);
}

/* TÍTULO */
.footer-title {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #ac0202;
   
}

/* LINKS */
.footer-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links span {
    color: rgba(255, 59, 59, 0.5);
}

.footer-links a:hover {
    color: #bb0b0b;
    text-shadow:
        0 0 6px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(0, 0, 0, 0.6);
}

/* CADASTRO */
.footer-register {
    color: #ff3b3b;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 13px;
    color: #aaa;
}

.footer-copy a {
    color: #ff3b3b;
    text-decoration: none;
}

@media (max-width: 576px) {

    .footer-links {
        justify-content: center;
        row-gap: 6px;
    }

    /* some com os | no mobile */
    .footer-links span {
        display: none;
    }

    .footer-links a {
        padding: 2px 6px;
        font-size: 13px;
        white-space: nowrap;
    }
}
