html {
    font-size: 1px;
    color: #111111;
    font-weight: 400;
}

@media (max-width: 399px) {
    html { font-size: 0.25vw; }
}

* {
    border: 0;
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
    box-sizing: border-box;
}

body {
    &{
        background-color: #ffffff;
        font-family: 'Poppins', sans-serif;
        width: 100vw;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
}

main {
    &{
        width: 100vw;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-top: 60rem;
    }
}

ol, ul { list-style: none; }

a {
    color: inherit;
    text-decoration: none;
}
a:hover { text-decoration: none; }

.desktop .just-mobile { display: none !important; }
.mobile .just-desktop  { display: none !important; }
.some { display: none !important; }

button {
    &{
        cursor: pointer;
        background: none;
        font-family: inherit;
        transition: transform .25s;
    }
    &:hover  { transform: scale(1.08); }
    &:active { transform: scale(0.94); }
}

#nao-encontrado {
    &{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16rem;
        min-height: 60vh;
        text-align: center;
        padding: 40rem 20rem;
    }

    & h2 {
        font-size: 80rem;
        font-weight: 800;
        color: #111;
    }

    & p {
        font-size: 18rem;
        color: #666;
    }

    & a {
        margin-top: 8rem;
        padding: 12rem 28rem;
        background: #111;
        color: #fff;
        border-radius: 6rem;
        font-size: 15rem;
        font-weight: 500;
        transition: opacity .2s;
    }

    & a:hover { opacity: .8; }
}

/* ── Cookie notice ── */
#cookie-notice {
    &{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #111;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20rem;
        padding: 14rem 24rem;
        font-size: 13rem;
        flex-wrap: wrap;
    }

    & p {
        flex: 1 1 auto;
        min-width: 200rem;
        line-height: 1.5;
        opacity: .88;
    }

    & a {
        color: #ccc;
        text-decoration: underline;
    }

    & button {
        flex: 0 0 auto;
        background: #fff;
        color: #111;
        font-size: 13rem;
        font-weight: 600;
        padding: 8rem 20rem;
        border-radius: 4rem;
        white-space: nowrap;
    }

    & button:hover { opacity: .85; }
}
