@import url('https://fonts.googleapis.com/css2?family=Alike&display=swap');

:root {
    --fundo: #fefdfc;
    --colorp: #b76fca;
    --colors: #e2b8e8;
    --colort: #9c67a1;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Alike';
    font-size: 1.125em;
    font-weight: 100;
}

body {
    background: var(--fundo);
}

.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: var(--colorp);
    border-radius: 0 10% 10%;
}

#menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--fundo);
    height: 4rem;
    padding: .5rem;
}

#menu img {
    width: 6rem;
    height: 5rem;
    background: transparent;
    margin-left: -.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;
}

.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;
}

.forms {
    margin: 1.2rem 2rem;
}

#descricao {
    display: none;
    padding: 1.2rem;
    align-items: center;
    border-radius: 1rem;
    background: #e0e0e0;
    box-shadow: inset 14px 14px 28px #a1a1a1, inset -14px -14px 28px #ffffff;
}

#descricao img {
    max-width: 4rem;
    height: 2rem;
}

.more {
    font-size: .8rem;
    color: var(--colorp);
}

#contato {
    color: var(--colorp);
    text-transform: uppercase;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
}

#contato h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#contato label {
    font-size: .8rem;
    padding-bottom: .5rem;
    padding-top: .5rem;
}

.termos label {
    font-size: .7rem;
    color: black;
    padding-top: .5rem;
}

.termos a {
    font-size: .6rem;
    color: var(--colorp);
    text-decoration: underline;
}

#contato input[type="checkbox"] {
    accent-color: var(--colort);
    border-radius: 50%;
}

#contato input,
select {
    border-radius: .5rem;
    padding: .25rem;
    border: 1px solid var(--colort);
    color: var(--colort) !important;
    font-size: .9rem;
}

#contato input::placeholder {
    color: var(--colort);
}

option {
    background: var(--fundo);
}

#tipoS,
#tipoR {
    display: none;
    border-color: var(--colorp);
    flex-direction: column;
    margin-top: .5rem;
    font-size: .8rem;
}

#anothertxt {
    width: 100%;
    padding: .25rem;
    border: 1px solid var(--colorp);
    border-radius: .25rem;
    font-size: .9rem;
    resize: none;
}

#anothertxt::focus {
    border: 1px solid var(--colorp);
    outline: none;
}

.persona,
.empType {
    display: flex;
    flex-direction: column;
}

#btnForm {
    background: var(--colorp);
    color: var(--fundo);
    width: 45%;
    border-radius: .25rem;
    border: none;
    margin: auto;
    margin-top: 1rem;
    font-size: .6rem;
    padding: .5rem;
    text-transform: uppercase;
    transition: width .5s ease-in-out;
    cursor: pointer;
}

#btnForm:hover {
    width: 65%;
}

.social {
    display: flex;
    justify-content: center;
    margin-top: 1.2rem;
}

.social img {
    height: 3rem;
}

@media screen and (min-width: 240px) and (orientation: landscape) {

    .items-menu {
        font-size: 1rem;
    }
}

@media screen and (min-width: 600px) and (orientation: portrait) {
    .termos {
        text-align: center;
    }
}

@media screen and (min-width: 968px) and (orientation: landscape) {
    #menu {
        justify-content: space-between;
        height: 12rem;
    }

    #menu img {
        width: 8rem;
        height: 6rem;
        margin-left: 2.5rem;
    }

    #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 a {
        color: var(--colorp);
    }

    .items-menu:last-child {
        margin-right: 2rem;
    }

    .items-menu:hover {
        border-bottom: 1px solid var(--colorp);
        transition: width 1s ease-in, background-color .5s ease-out;
    }

    .circle,
    #toggleButton,
    .close {
        display: none;
    }

    #contato {
        margin: 0 5%;
    }

    .perfil {
        display: flex;
        justify-content: space-between;
    }

    .persona,
    .empType {
        display: flex;
        flex-direction: column;
        width: 45%;
    }

    .termos {
        text-align: center;
    }
}

@media screen and (min-width: 1200px) {
    #menu {
        justify-content: space-between;
        height: 12rem;
    }

    #menu img {
        width: 8rem;
        height: 6rem;
    }

    #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 a {
        color: var(--colorp);
    }

    .items-menu:last-child {
        margin-right: 2rem;
    }

    .items-menu:hover {
        border-bottom: 1px solid var(--colorp);
        transition: width 1s ease-in, background-color .5s ease-out;
    }

    .circle,
    #toggleButton,
    .close {
        display: none;
    }

    #descricao {
        margin: 0 20%;
    }

    #contato {
        margin: 0 5%;
    }

    .perfil {
        display: flex;
        justify-content: space-between;
    }

    .persona,
    .empType {
        display: flex;
        flex-direction: column;
    }

    .termos {
        text-align: center;
    }
}