@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&amp;display=swap');

body {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed
}

@media (min-width: 951px) {
    body { 
        background-image: url(../images/backgroundDesktopBlue.png);
        background-size: 100% 100%
    }

    .popup {
        position: fixed;
        right: 20px;
        top: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    #popup {
        display: flex;
        align-items: center;
        gap: 15px;
    
        width: 240px;
        height: 90px;
    
        border-radius: 80px;
        border: 2px solid #FFF616;
        background: #1C1C1C;
    }
    
    #popup img {
        margin: 0;
        padding-left: 15px;
        width: 35px;
        height: 35px;
    }
    
    #popup p {
        margin: 0;
        text-align: center;
        width: 150px;
        font: normal 500 13px 'Inter', sans-serif;
        color: #FFF;
    }
    
    .popupLogo {
        margin: 0;
        width: 90px;
        height: 90px;
        border-radius: 100px;
        border: 2px solid #FFD700;
    }

    .promocao2 {
        margin: 20px auto 0 auto;
    
        width: 40vw;
        height: 10vh;
    
        font: normal 700 18px 'Inter', sans-serif;
        color: #0F0F05;
        text-align: center;
        align-content: center;
    
        border-radius: 20px;
        border: 2px solid #BB6617;
    
        background-image: url(../images/fundoOuroPromocao.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    img {
        margin: 1.5vw auto;
        width: 32vw;
        height: 9vw;
    }

    .btnCadastrar {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    
        font: italic 800 2em 'Inter', sans-serif;
        color: #790001;
        animation: btnJogar 1.1s infinite;
    
        padding: 18px 15px;
        border-radius: 14px;
        border: 2px solid #790001;
        background: url(../images/fundoOuro.png), lightgray 50% / cover no-repeat;
    
        cursor: pointer;
    }

    @keyframes btnJogar {
        0% {
            font-size: 2em;
        }
        50% {
            font-size: 2.2em;
        }
        100% {
            font-size: 2em;
        }
    }

    iframe {
        position: absolute;
        top: 80vh;
        margin-bottom: 8vw;
        width: 90vw;
        height: 45vw;
        border: 4px solid #FFF616;
    }
    
    ul {
        margin: 0;
        position: fixed;
        bottom: 0;
    
        width: 100vw;
        padding: 12px;
    
        display: flex;
        justify-content: space-around;
    
        background-image: url(../images/backgroundMenu.png);
        background-size: 100% 100%;
    
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed
    }
    
    ul div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        cursor: pointer;
    }
    
    ul img {
        margin: 0;
        width: 40px;
        height: 40px;
    }
    
    ul label {
        text-align: center;
        font: normal 400 2.5vh 'Inter', sans-serif;
        color: #FFF;
    }
}

@media (max-width: 950px) {
    body { 
        background-image: url(../images/backgroundMobileBlue.png);
        background-size: 100% 100%
    }

    .popup {
        position: fixed;
        right: 20px;
        top: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    #popup {
        display: flex;
        align-items: center;
        gap: 12px;
    
        width: 155px;
        height: 65px;
    
        border-radius: 80px;
        border: 2px solid #FFF616;
        background: #1C1C1C;
    }
    
    #popup img {
        margin: 0;
        padding-left: 10px;
        width: 22px;
        height: 22px;
    }
    
    #popup p {
        margin: 0;
        text-align: center;
        width: 90px;
        font: normal 500 9px 'Inter', sans-serif;
        color: #FFF;
    }
    
    .popupLogo {
        margin: 0;
        width: 65px;
        height: 65px;
        border-radius: 100px;
        border: 2px solid #FFD700;
    }

    .promocao2 {
        margin: 25px auto 10px auto;
    
        width: 90vw;
        height: 8vh;
        padding: auto 20px;
    
        font: normal 700 12px 'Inter', sans-serif;
        color: #0F0F05;
        text-align: center;
        align-content: center;
    
        border-radius: 20px;
        border: 2px solid #BB6617;
    
        background-image: url(../images/fundoOuroPromocao.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    img {
        margin: 2vh auto;
        width: 80vw;
        height: 25vw;
    }

    .btnCadastrar {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 65vw;
        max-width: 320px;
        height: 10vh;
        max-height: 80px;
    
        font: italic 800 24px 'Inter', sans-serif;
        color: #790001;
        animation: btnJogar 1.1s infinite;
    
        padding: 18px 15px;
        border-radius: 14px;
        border: 2px solid #790001;
        background: url(../images/fundoOuro.png), lightgray 50% / cover no-repeat
    }

    @keyframes btnJogar {
        0% {
            width: 65vw;
            max-width: 320px;
            height: 10vh;
            max-height: 80px;
        }
        50% {
            width: 66vw;
            max-width: 330px;
            height: 11vh;
            max-height: 90px;
        }
        100% {
            width: 65vw;
            max-width: 320px;
            height: 10vh;
            max-height: 80px;
        }
    }

    iframe {
        position: absolute;
        top: 80vh;
        margin-bottom: 15vh;
        width: 90vw;
        height: 60vh;
        border: 4px solid #FFF616;
    }
    
    ul {
        margin: 0;
        position: fixed;
        bottom: 0;
    
        width: 98vw;
        padding: 12px;
    
        display: flex;
        justify-content: space-around;
    
        background-image: url(../images/backgroundMenu.png);
        background-size: 100% 100%;
    
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed
    }
    
    ul div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    ul img {
        margin: 0;
        width: 8vw;
        height: 8vw;
    }
    
    ul label {
        text-align: center;
        font: normal 400 1.2vh 'Inter', sans-serif;
        color: #FFF;
    }
}