@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Dancing+Script:wght@700&display=swap');

/* Para sistema Mobile */

@media (max-width: 640px) {
    nav * {
        width: 100%;
        margin: auto;
        font-family: Arial, Helvetica, sans-serif;   
    }

    a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

    a:hover {
        opacity: 0.7;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 4px;
        pointer-events: none;
    }

    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        background: #23232e;
        width: 100%;
        height: 8vh;
    }

    .nav-list {
        position: absolute;
        top: 8vh;
        right: 0;
        width: 50vw;
        height: 92vh;
        background: #23232e;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
    }

    .nav-list li {
        margin-left: 0;
        opacity: 0;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu div {
        width: 32px;
        height: 2px;
        background: #fff;
        margin: 8px;
        transition: 0.3s;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .mobile-menu.active .line2 {
        opacity: 0;
    }

    .mobile-menu.active .line3 {
        transform: rotate(45deg) translate(-5px, -7px);
    }

    html, body {
        height: 100%;
        overflow-x: hidden;
        background: rgb(131,0,201);
        background: linear-gradient(45deg, rgba(131,0,201,1) 0%, rgba(91,0,194,1) 45%, rgba(0,26,255,1) 100%);
    }

    body {
        width: 100%;
        height: auto;
        zoom: 1;
        transform: scale(1);
        overflow-x: hidden;
    }

    header {
        width: 100%;
        float: center;
        text-align: center;
    }

    div {
        width: 96%;
    }

    h1 {
        color: #D3D3D3;
        margin: 0 0 40px 0;
    }

    p {
        font-size: 25px;
        color: #e4e4e4;
        margin: 0 0 20px 0;
    }

    #form {
        width: 96%;
        height: auto;
        float: center;
        margin: 20px 10px 10px 10px;
    }

    #form label {
        color: white;
        line-height: 8vh;
        font-size: 25px;
    }

    .Pix, .Dinheiro {
        color: white;
        line-height: 8vh;
        font-size: 20px;
    }

    .rotulo {
        width: 95%;
        border-radius: 22px;
        border: 2px #6f7e8a solid;
        padding: 5px;
        margin: 0px 0px 12px -5px;
    }

    .rotulo i {
        font-size: 1.2em;
        padding: 5px;
        background: -webkit-linear-gradient(-45deg, rgba(165,255,248,1) 0%, rgba(137,163,255,1) 50%, rgba(0,44,254,1) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .rotulo input {
        width: 80%;
        border: none;
        outline: none;
        transform: translateY(-10%);
        color: rgb(185, 185, 185);
        font-size: 11pt;
        background-color: transparent;
    }

    #btn {
        margin-top: 2%;
        width: 50%;
        text-align: center;
    }

    #btn button {
        background: linear-gradient(45deg, rgba(131,0,201,1) 0%, rgba(91,0,194,1) 45%, rgba(0,26,255,1) 100%);
        width: 100%;
        height: 35px;
        border: none;
        font-size: 1.2em;
        color: #fff;
        border-radius: 20px;
        outline: none;
        cursor: pointer;
    }

    #btn button:hover {
        background: linear-gradient(45deg, rgba(131,0,201,0.5) 0%, rgba(91,0,194,0.5) 45%, rgba(0,26,255,0.5) 100%);
        transition: 1s;
    }
}

/* Para sistema PC / Computador */

@media (min-width: 640px) {
    nav * {
        width: 100%;
        margin: auto;
        font-family: Arial, Helvetica, sans-serif;
    }

    a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

    a:hover {
        opacity: 0.7;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 4px;
        pointer-events: none;
    }

    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        background: #23232e;
        margin-right: 25px;
        width: 98%;
        height: 8vh;
    }

    .nav-list {
        list-style: none;
        display: flex;
    }

    .nav-list li {
        letter-spacing: 3px;
        margin-left: 32px;
    }

    .mobile-menu {
        width: min-content;
    }

    html, body {
        height: 100%;
        overflow-x: hidden;
        background: rgb(131,0,201);
        background: linear-gradient(45deg, rgba(131,0,201,1) 0%, rgba(91,0,194,1) 45%, rgba(0,26,255,1) 100%);
    }

    body {
        width: 100%;
        height: auto;
        zoom: 1;
        transform: scale(1);
    }

    header {
        width: 100%;
        float: center;
        text-align: center;
    }

    div {
        width: 98%;
    }

    h1 {
        color: #D3D3D3;
        font-size: 6vh;
        margin: 0 0 40px 0;
    }

    #form {
        width: 70%;
        height: auto;
        float: center;
        margin: 20px 10px 10px 10px;
    }

    #form label {
        color: white;
        line-height: 8vh;
        font-size: 25px;
    }

    .Pix, .Dinheiro {
        color: white;
        line-height: 8vh;
        font-size: 20px;
    }

    .rotulo {
        width: 50%;
        border-radius: 22px;
        border: 2px #6f7e8a solid;
        padding: 5px;
        margin: 0px 0px 12px -5px;
    }

    .rotulo i{
        font-size: 1.2em;
        padding: 5px;
        background: -webkit-linear-gradient(-45deg, rgba(165,255,248,1) 0%, rgba(137,163,255,1) 50%, rgba(0,44,254,1) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .rotulo input {
        width: 80%;
        border: none;
        outline: none;
        transform: translateY(-10%);
        color: rgb(185, 185, 185);
        font-size: 11pt;
        background-color: transparent;
    }

    #btn {
        margin-top: 2%;
        width: 50%;
        text-align: center;
    }

    #btn button {
        background: linear-gradient(45deg, rgba(131,0,201,1) 0%, rgba(91,0,194,1) 45%, rgba(0,26,255,1) 100%);
        width: 100%;
        height: 35px;
        border: none;
        font-size: 1.2em;
        color: #fff;
        border-radius: 20px;
        outline: none;
        cursor: pointer;
    }

    #btn button:hover {
        background: linear-gradient(45deg, rgba(131,0,201,0.5) 0%, rgba(91,0,194,0.5) 45%, rgba(0,26,255,0.5) 100%);
        transition: 1s;
    }
}