@import url('https://fonts.googleapis.com/css2?family=Alike&display=swap');

:root {
    --fundo: #fefdfc;
    --colorp: #b76fca;
    --colors: #e2b8e8;
    --colort: #9c67a1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alike';
    font-size: 1.125em;
    font-weight: 100;
}

body {
    background: var(--fundo);
    color: var(--colorp);
}

.alike-regular {
    font-family: "Alike", serif;
    font-weight: 400;
    font-style: normal;
}

::-webkit-scrollbar {
    width: .5em;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 1em;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 1em;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#topo {
    background: linear-gradient(to top right, rgba(183, 111, 202, 0.8), rgba(226, 184, 232, 0.8));
    /* background: var(--colorp); */
    border-radius: 0 0 5% 5%;
    padding-bottom: 1rem;
}

#topo h2 {
    margin-top: 1rem;
    padding: 0 .5rem;
    color: var(--fundo);
}

#menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: linear-gradient(to top right, rgba(183, 111, 202, 0.8), rgba(226, 184, 232, 0.8)); */
    /* background: var(--fundo); */
    height: 4rem;
    padding: .5rem;
}

#menu img {
    width: 6rem;
    height: 6rem;
    background: transparent;
    margin-left: -.5rem;
    margin-top: .5rem;
}

#menu-items {
    display: none;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    color: white;
    text-align: center;
    text-transform: uppercase;
    z-index: 10;
    text-decoration: none;
    list-style: none;
}

#menu-items a {
    text-decoration: none;
    list-style: none;
}

.items-menu {
    padding: .5rem;
    border-bottom: 1px solid white;
}

.items-menu:last-child {
    padding: .5rem;
    border-bottom: none;
}

.items-menu a {
    color: white;
}

.circle {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: .5rem;
    height: .5rem;
    background: transparent;
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: width 1s ease, height 1s ease, background 1s ease;
    z-index: 8;
    cursor: pointer;
}

.expanded {
    display: block;
    width: 500vw;
    height: 300vh;
    background: var(--colorp);
    opacity: 1;
}

.close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    background: transparent;
    cursor: pointer;
    z-index: 9;
}

#toggleButton {
    background: transparent;
}

#lgpd {
    padding: 1.5rem;
}

#lgpd ul {
    list-style-type: circle;
    padding: 1rem;
    margin: 0;
}

#lgpd ul li {
    padding: 0.5rem;
    background-color: var(--colors);
    color: var(--fundo);
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

#lgpd ul li::before {
    content: '✔';
    color: var(--colort);
    position: absolute;
    left: -1.5rem;
}

#lgpd ol {
    list-style-type: decimal;
    padding: 1rem;
    margin: 0;
}

#lgpd ol li {
    padding: 0.5rem;
    background-color: var(--colors);
    color: var(--fundo);
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

#lgpd ol li::marker {
    color: var(--colort);
    font-weight: 400;
}

#lgpd h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#lgpd p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#lgpd strong,
em {
    font-weight: 600;
}

#lgpd a {
    font-size: 1.2rem;
    color: var(--colort);
}

@media screen and (min-width: 1200px) {

    #menu {
        justify-content: space-between;
        height: 12rem;
    }

    #menu img {
        width: 10rem;
        height: 10rem;
    }

    #menu-items {
        display: flex;
        position: static;
        transform: none;
        color: white;
        text-align: left;
        z-index: 10;
    }

    .items-menu {
        border: none;
        font-size: 1rem;
        margin-left: 5rem;
        height: 2rem;
    }

    .items-menu:last-child {
        margin-right: 2rem;
    }

    .items-menu:hover {
        border-bottom: 1px solid white;
        transition: width 1s ease-in, background-color .5s ease-out;
    }

    .circle,
    #toggleButton,
    .close {
        display: none;
    }
}