body {
    margin: 0;
    min-height: 100vh;
    font-family: "Trebuchet MS", Arial, sans-serif;

    background-image: url("../assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Logo responsiva */
.logo {
    width: min(400px, 85vw);
    height: auto;
}

/* Rodapé */
footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
}

/* Menu */
.menu-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;

    background: #275037b1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid #10281c8a;
    border-radius: 10px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

    padding: 10px 16px;
}

a {
    color: #d1d1d1;
    text-decoration: none;
    transition: all .2s;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    body {
        background-position: center;
    }

    header {
        display: flex;
        justify-content: center;
    }

    .logo {
        width: min(320px, 80vw);
        margin: 16px auto;
    }

    footer {
        justify-content: center;
        padding: 16px;
    }

    .menu-actions {
        width: 100%;
        max-width: 420px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .pc-download {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 75vw;
        margin-top: 20px;
    }

    footer {
        padding: 12px;
    }

    .menu-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
        padding: 14px;
    }

    .menu-actions a {
        padding: 10px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
    }

    .pc-download {
        display: none;
    }
}