* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    height: 100%;
}


body {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    background: #d8e3dc;
}


/* =========================================================
   PÁGINA
   ========================================================= */

.home {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;

    align-items: center;

    padding:
        40px
        5vw;

    overflow: hidden;

    background-image:
        var(--page-background);

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


/* =========================================================
   MATIZAÇÃO DA IMAGEM
   ========================================================= */

.background-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(38, 76, 68, 0.30) 0%,
            rgba(58, 100, 88, 0.18) 30%,
            rgba(112, 145, 126, 0.07) 60%,
            rgba(255, 255, 255, 0.00) 85%
        );

    pointer-events: none;
}


/* =========================================================
   MENU LATERAL
   ========================================================= */

.side-menu {
    position: relative;

    z-index: 2;

    width: min(
        390px,
        90vw
    );

    padding:
        40px
        30px;

    border-radius: 22px;

    border:
        1px solid
        rgba(219, 201, 143, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(55, 100, 88, 0.78),
            rgba(76, 122, 106, 0.68),
            rgba(197, 178, 121, 0.30)
        );

    box-shadow:
        0 20px 45px
        rgba(35, 65, 56, 0.28),

        inset 0 1px 0
        rgba(255, 255, 255, 0.16);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);
}


/* brilho suave */

.side-menu::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.10),
            transparent 45%
        );

    pointer-events: none;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.menu-header {
    position: relative;

    z-index: 2;

    margin-bottom: 30px;
}


.menu-header h1 {
    color: #f2e7c4;

    font-size: 32px;

    font-weight: 600;

    letter-spacing: 3px;

    line-height: 1.1;

    text-shadow:
        0 2px 5px
        rgba(29, 55, 48, 0.30);
}


.menu-header p {
    margin-top: 9px;

    color:
        rgba(242, 231, 196, 0.76);

    font-size: 14px;

    letter-spacing: 0.5px;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.menu-links {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 14px;
}


.menu-button {
    width: 100%;

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        12px
        20px;

    border-radius: 12px;

    border:
        1px solid
        rgba(232, 213, 154, 0.45);

    background:
        linear-gradient(
            135deg,
            rgba(242, 230, 190, 0.30),
            rgba(113, 156, 136, 0.42)
        );

    color: #fff3cf;

    text-decoration: none;

    text-align: center;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 1.5px;

    box-shadow:
        0 7px 16px
        rgba(34, 70, 60, 0.18),

        inset 0 1px 0
        rgba(255, 255, 255, 0.12);

    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}


.menu-button:hover {
    transform:
        translateX(5px);

    background:
        linear-gradient(
            135deg,
            rgba(239, 214, 137, 0.48),
            rgba(100, 164, 137, 0.58)
        );

    border-color:
        rgba(247, 219, 132, 0.68);

    box-shadow:
        0 10px 22px
        rgba(34, 70, 60, 0.24);
}


.menu-button:active {
    transform:
        translateX(3px)
        scale(0.99);
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (
    max-width: 700px
) {

    .home {
        justify-content: center;

        padding:
            20px;
    }


    .side-menu {
        width: min(
            100%,
            390px
        );

        padding:
            32px
            24px;
    }


    .menu-header h1 {
        font-size: 27px;
    }

}