* {
    padding: 0;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-image: url("../images/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px 10px;
    background-attachment: fixed;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2e3842;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.main-header h1 {
    font-size: 22px;
}

.main-header ul {
    list-style-type: none;
    align-self: center;
    font-weight: bold;
    display: flex;
    gap: 10px;
    text-transform: uppercase;
}

.main-header .btn {
    cursor: pointer;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-header .btn:hover {
    background-color: white;
    color: #2e3842;
}

.main-face {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.main-face .text {
    margin-top: 25vh;
    color: #f0f0f0;
}

.main-face h2 {
    font-size: 28px;  
}

.main-face h2, h3 { 
    text-align: center;
    margin: 5px 10px 10px 10px;
}

.h2-titulo {
    font-weight: bolder;
    text-transform: uppercase;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.1) 3px 3px 2px;
    font-size: 28px;
}

.main-face .text2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.main-face .text2 h2 {
    font-size: 20px;  
}

.main-face .ip {
    background-color: #303a44;
    border-radius: 15px;
    padding: 15px 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-face .ip:hover {
    background-color: rgb(29, 35, 41);
}

.jogar {
    background-color: #242b33;
    padding: 20px 30px;
    border-radius: 20px;
    margin-top: 15vh;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}

.content {
    background-color: #29a0c7;
    color: white;
    text-align: center;
    padding: 40px 100px;
}

.content p {
    margin-top: 20px;
}

.informacoes .info {
    display: flex;
    width: 100%;
    background-color: #242b33;
    color: white;
}

.info img {
    width: 40%;
    height: 300px;
}

.info .text {
    margin-top: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.text h3 {
    margin: 0;
    text-align: left;
    text-transform: uppercase;
    font-size: 28px;
}

.text p {
    font-size: 20px;
} 

.rev {
    flex-direction: row-reverse;
}

.extra {
    background-color: #29a0c7;
    color: white;
    padding: 20px;
}

.info-p {
    text-align: center; 
    font-size: 22px;
    padding: 10px 100px;
}

.extra ul {
    background-color: #207f9e;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    /* padding: 60px 100px; */
    margin: 60px 20vh;
}

.extra li {
    display: flex;
    flex: 1 1 50%; 
    padding: 60px;
    box-sizing: border-box;
    flex-direction: row;
    gap: 20px;
}

.extra .texto {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 70%;
}

.texto h3 {
    text-align: left;
    margin: 10px 0;
    margin-top: 0;
    text-transform: uppercase;
    font-size: 22px;
}

.jogue-agora {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10vh;
    height: 260px;
}

.jogue-agora h3, h4 {
    text-shadow: rgba(0, 0, 0, 0.1) 3px 3px 2px;
}

.jogue-agora h3 {
    font-size: 26px;
}

.jogue-agora h4 {
    font-size: 20px;
}

.jogue-agora .ip {
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

footer {
    height: 100px;
    font-size: 22px;
    align-content: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    color: darkgray;
}

.alert-box {
    display: flex;
    gap: 10px;
    font-weight: 400;
    align-items: center;
    justify-content: left;
    padding: 10px;
    background-color: #28A745; /*#FF6F61;*/
    border: 1px solid #1E7E34; /*#C0392B;*/
    color: white;
    border-radius: 10px;
    box-sizing: border-box;
    position: fixed;
    right: 20px;
    top: 80px;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

.loja {
    background-color: #e0b010;
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ltxt h2 {
    font-size: 32px;
}

.ltxt {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 50%;
    gap: 10px;
    text-shadow: rgba(0, 0, 0, 0.1) 3px 3px 2px;
}

#lojabtn {
    background-color: #242b33;
    color: white;
    border: none;
    width: 50%;
    margin-top: 10px;
    padding: 20px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
    transition: color 0.2s ease, background-color 0.2s ease;
}

#lojabtn:hover {
    background-color: #1a1e24;
    color: white;
}

@media (max-width: 1000px) {
    .content, .info-p{
        padding: 40px 50px;
    }

    .info, .rev {
        flex-direction: column;
    }

    .info img {
        width: 100%;
    }

    .info .text {
        margin-bottom: 20px;
    }

    .extra ul {
        flex-wrap: none;
        margin: 60px 5vh;
    }

    .extra li {
        padding: 60px 20px;
    }

    .jogue-agora {
        gap: 30px;
        flex-direction: column;
    }

    .ltxt {
        width: 100%;
    }
}