* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

body {
    background: #000;
}

/* =========================
   DESKTOP
   ========================= */

.home {
    position: relative;

    width: 100vw;
    height: 100vh;

    background-image: url("assets/images/Background_Desktop.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.menu {
    position: absolute;

    top: 30%;
    left: 50%;

    transform: translateX(-50%);

    width: 32.5%;
    max-width: 700px;

    display: flex;
    flex-direction: column;

    gap: 0;
}

.menu-button {
    display: block;
    width: 100%;
    overflow: visible;

    transition: transform 0.35s ease;
}

.menu-button:hover {
    transform: scale(1.06);
}

.menu-button + .menu-button {
    margin-top: -2.8vh;
}

.menu-button img {
    display: block;

    width: 100%;
    height: auto;

    transform: scaleX(1.30);
    transform-origin: center;
}


/* =========================
   MÓVIL
   ========================= */

@media (max-width: 768px) {

    .home {
        width: 100vw;
        height: 100vh;

        background-image: url("assets/images/Background_Mobil.png");
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .menu {
        top: 30%;
        left: 50%;

        width: 68%;
        max-width: none;

        transform: translateX(-50%);

        gap: 0;
    }

    .menu-button + .menu-button {
        margin-top: -1.2vh;
    }

    .menu-button img {
        width: 114%;
        height: auto;

        margin-left: -7%;

        /* Evita heredar el estiramiento horizontal de escritorio */
        transform: none;
    }
}