/* =========================
   MENU – PADRÃO FUNCIONAL (BASE ARTISTAS)
========================= */

header {
    position: relative;
    z-index: 10;
}

/* BOTÃO HAMBÚRGUER */
.menu-toggle {
    display: none;
    margin: 10px auto;
    background: orangered;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* MENU DESKTOP */
.menu {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
}

/* LINKS */
.menu a {
    background: orangered;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    background: #00bcd4;
    color: #000;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    /* MENU FECHADO */
    .menu {
        display: none;
        position: absolute;
        top: 100%;              /* abaixo do header */
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(to bottom, #ff9800, #ff5722);
        padding: 20px 0;
        z-index: 1000;
    }

    /* MENU ABERTO */
    .menu.active {
        display: flex;
    }

    .menu a {
        width: 90%;
        max-width: 320px;
        text-align: center;
        font-size: 1.1rem;
    }
}

footer {
    background: linear-gradient(
        to right,
        #00bcd4,
        #4dd0e1
    );
    color: #004d40;
    text-align: center;
    font-weight: bold;
    padding: 12px 8px;
    font-size: 14px;
    line-height: 1.3;

    width: 100%;
}

footer span {
    display: inline;
    margin: 0;
    padding: 0;
}

@media (max-width: 480px) {
    footer {
        padding: 8px 6px;
        font-size: 8px;
        line-height: 1.2;
    }
}