@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: clamp(16px, 5vw, 25px);
    background: linear-gradient(to right, #ff6300, #ff6300, #ffb347);
    color: #fdfcfb;
    transition: all 0.3s ease;
}

.btn:hover {
    box-shadow: 0 0 20px 6px rgba(255, 99, 0, 0.8);
    transform: scale(1.05);
    cursor: pointer;
}

/* HEADER */
.header {
    width: 100vw;
    position: absolute;
    top: 0;
    z-index: 1000;

    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05) inset,
                0 0 10px rgba(0, 0, 0, 0.2);

    .menu-items {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 6px 0;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        list-style: none;

        li {
            padding: 10px;
            img {
                height: 35px;
            }

            .title-header {
                color: #fdfcfb;
                font-weight: bold;
            }

            .cta-button {
                border: 2px solid #ff6300;
                padding: 8px 18px;
                border-radius: 10px;
                color: #fdfcfb;
                background: transparent;
                font-weight: bold;
                text-decoration: none;
                transition: 0.3s ease;
                font-size: 16px;
                white-space: nowrap;
                cursor: pointer;
                &:hover {
                    box-shadow: 0 0 15px #ffb347;
                    transform: scale(1.05);
                }
            }
        }
    }
}

.main {
    position: relative;
    .texto-bloco {
        position: absolute;
        user-select: none;
        top: 25%;
        left: 14%;
        text-align: center;
        font-weight: bold;
        font-size: 2rem;
        max-width: 40%;
        height: 50%;
        color: #fdfcfb;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 40px;
        border-radius: 0 20px 20px 0;
        .casa-regulamentada {
            color: #ff6300;
        }

        .linha-texto {
            font-size: 0.8rem;
            font-weight: normal;
            margin-top: 8px;
            color: rgb(190, 190, 190);
        }
    }
}

.middle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    .texto-bloco {
        position: absolute;
        user-select: none;
        text-align: center;
        top: 0;
        font-weight: bold;
        font-size: 2rem;
        max-width: 40%;
        height: 100%;
        color: #fdfcfb;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 40px;
        .container-aposte {
            position: absolute;
            bottom: 5%;
            max-width: 60%;
            .linha-texto {
                font-size: 1rem;
            }
        }
    }
}

.passo-passo {
    position: relative;
    display: flex;
    height: 100%;
    .texto-bloco {
        position: absolute;
        user-select: none;
        margin-left: 8%;
        text-align: start;
        top: 20%;
        font-size: 2rem;
        max-width: 100%;
        height: 100%;
        color: #fdfcfb;
        p {
            font-size: 1.5rem;
        }
    }
    .btn {
        margin-top: 5%;
    }
}

.aviso {
    width: 30%;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    .responsabilidade {
        margin-bottom: 20px;
        font-size: 1.8rem;
        font-weight: bold;
    }
}

.footer {
    height: 90px;
    border-top: 1px solid rgba(128, 128, 128, 0.295);
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 0.7rem;
    .copy {
        color: #f8f8f8c0;
    }
    .aviso2 {
        width: 30%;
        text-align: center;
        font-size: 0.7rem;
    }
    img {
        height: 30px;
    }
}

.faixa-footer {
    background: linear-gradient(to right, #ff6300, #ff6300, #fb7824);
    color: #fdfcfb;
    font-weight: bold;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
}

.faixa-footer span {
    display: inline-block;
    width: 100%;
    animation: scroll-left 35s linear infinite;
}

@keyframes scroll-left {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* RESPONSIVE BREAKPOINTS */

@media screen and (max-width: 768px) {
    .menu-items {
        .title-header {
            display: none !important;
        }

        li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            img {
                height: 20px !important;
            }
        }
    }

    .main {
        margin-top: 80px;
        .texto-bloco {
            position: relative;
            font-size: 1rem;
            max-width: 80%;
            padding: 10px;
            margin: 20px 0;
            .linha-texto {
                font-size: 0.8rem;
                font-weight: normal;
                margin-top: 8px;
                color: rgb(190, 190, 190);
            }
        }
    }

    .middle {
        flex-direction: column;
        .texto-bloco {
            position: relative;
            font-size: 1rem;
            max-width: 80%;
            padding: 10px;
            margin: 20px 0;
            .container-aposte {
                position: relative;
                bottom: 0;
                max-width: 80%;
                .linha-texto {
                    font-size: 1rem;
                }
            }
        }
    }

    .passo-passo {
        flex-direction: column;
        .texto-bloco {
            position: relative;
            user-select: none;
            margin-left: 0;
            text-align: center;
            top: 0;
            font-size: 1.2rem;
            max-width: 100%;
            height: 100%;
            color: #fdfcfb;
            padding: 10px;
            margin: 20px 0;
            p {
                font-size: 1.1rem;
            }
        }
        .btn {
            margin: 5%;
        }
    }

    .aviso {
        width: 80%;
        padding: 30px;
    }

    .footer {
        padding: 30px 0;
        flex-direction: column;
        gap: 2rem;

        .copy {
            color: #f8f8f8c0;
        }
        .aviso2 {
            width: 80%;
            padding-bottom: 30px;
        }
        img {
            height: 30px;
        }
    }
}