/* ESTILO GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    height: 100vh;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.btn-contato button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #0139f3;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

h2.titulo {
    color: #fff;
    font-size: 38px;
    text-align: center;
}

h2.titulo span {
    color: #0139f3;
}

button:hover,
form .btn-enviar input:hover {
    box-shadow: 0px 0px 8px #0139f3;
    transform: scale(1.05);
}

/* ESTILO DO CABEÇALHO */
header {
    padding: 40px 4%;
}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: #5c5c5c;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header nav.menu-desktop a:hover {
    color: #fff;
    transform: scale(1.05);
}

header nav ul {
    list-style-type: none;
}

header nav.menu-desktop ul li {
    display: inline-block;
    padding: 0 40px;
}

/* ESTILO DO MENU MOBILE */

.btn-abrir-menu{
    display: none;
}

.btn-abrir-menu i{
    color: #0139f3;
    font-size: 40px;
}

.menu-mobile{
    background-color: #000;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: .5s;
}

.menu-mobile.abrir-menu{
    width: 70%;
}

.menu-mobile.abrir-menu ~ .overlay-menu{
    display: block;
}


.menu-mobile .btn-fechar{
    padding: 20px 5%;
}

.menu-mobile .btn-fechar i{
    color: #0139f3;
    font-size: 30px;
}

.menu-mobile nav ul{
    text-align: right;
}

.menu-mobile nav ul li a{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 8%;
    display: block;
}   

.menu-mobile nav ul li a:hover{
    background-color: #0139f3;
    color: #000;
}

.overlay-menu{
    background-color: #000000df;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88888;
    display: none;
}

/* ESTILO DO TOPO DO SITE */
section.topo-do-site {
    padding: 40px 4%;
}

section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1 {
    color: #fff;
    font-size: 42px;
    line-height: 40px;
}

.topo-do-site .txt-topo-site h1 span {
    color: #0139f3;
}

.topo-do-site .txt-topo-site p {
    color: #fff;
    margin: 40px 0;
}

.topo-do-site .img-topo-site img {
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
}

#logo11{
    width: 7em;
}


@keyframes flutuar {
    0% {
        top: 0;
    }

    100% {
        top: 30px;
    }
}

/* ESTILO DAS ESPECIALIDADES */
section.especiliadades {
    padding: 40px 4%;
}

section.especiliadades .flex {
    gap: 60px;
}

.especiliadades .especialidades-box {
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 45px;
    transition: .2s;
}

.especiliadades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffffff78;
}

.especiliadades .especialidades-box i {
    font-size: 70px;
    color: #0139f3;
}

.especiliadades .especialidades-box h3 {
    font-size: 28px;
    margin: 15px 0;
}
.imghab{
    width: 5em;
    margin-top: 1em;
}

/* ESTILO DO SOBRE */
section.sobre {
    padding: 80px 4%;
}

section.sobre .flex {
    align-items: center;
    gap: 60px;
}



.btn-social button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #0139f3;
    font-size: 22px;
    cursor: pointer;
    margin: 0 5px;
    transition: .2s;
}

/* ESTILO DO PORTFÓLIO */
section.portfolio {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #ffffff1d;
}

section.portfolio .flex {
    justify-content: space-around;
    margin-top: 60px;
}

.img-port {
    width: 360px;
    height: 460px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 8s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
}

.img-port:hover {
    background-position: 100% 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b8;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: .5s;
}

.overlay:hover {
    opacity: 1;
}

/* ESTILO DO FORMULÁRIO DE CONTATO */
section.formulario {
    padding: 80px 4%;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

form input,
form textarea {
    width: 100%;
    background-color: #242424;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 15px;
    color: #fff;
    font-size: 18px;
}

form textarea {
    resize: none;
    max-height: 200px;
}

form .btn-enviar {
    margin-top: 20px;
    text-align: center;
}

form .btn-enviar input {
    width: 120px;
    background-color: #0139f3;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

/* ESTILO DO RODAPÉ */

footer {
    padding: 40px 4%;
    box-shadow: 0 0 40px 10px #ffffff1d;
}

footer .flex {
    justify-content: space-between;
}

footer .line-footer {
    padding: 20px 0;
}

.borda {
    border-top: 2px solid #0139f3;
}

footer .line-footer p i {
    color: #0139f3;
    font-size: 22px;
}

footer .line-footer p a {
    color: #fff;
}

#logo{
    width: 6em;
}

#logobr{
    width: 15em;
    margin-right: 2em;
}

#capadojogo{
    width: 22em;
    border-radius: 3em;
}

.links{
    margin-right: 3em;
}

@media screen and (max-width: 1020px) {
    
.menu-desktop{
        margin-left: 1em;
    }

.links{
    margin-right: 1em;
    font-size: 0.95em;
}

    /* CLASSES GERAIS */
    .flex {
        flex-direction: column;
    }

    .topo-do-site .flex{
        flex-direction: column-reverse;
    }

    h2.titulo {
        font-size: 34px;
        line-height: 30px;
    }

    .menu-desktop{
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    /* CABEÇALHO */
    .btn-contato {
        display: none;
    }

    /* TOPO DO SITE */


    #logo{
        width: 3em;
    }

    section.topo-do-site .flex {
        gap: 40px;
    }

    section.topo-do-site {
        padding: 20px 8%;
    }

    .topo-do-site h1 {
        font-size: 30px;
    }

    .topo-do-site .img-topo-site img {
        width: 100%;
    }

    /* ESPECIALIDADES */
    section.especiliadades {
        padding: 40px 8%;
    }

    /* SOBRE */
    section.sobre {
        padding: 80px 8%;
    }

    .sobre .txt-sobre h2 {
        font-size: 34px;
        line-height: 35px;
        text-align: center;
    }
    
    .btn-social{
        text-align: center;
    }

    .img-sobre img{
        width: 100%;
    }

    /* PORTFÓLIO */
    section.portfolio {
        padding: 80px 8%;
    }

    .img-port {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    
    section.portfolio .flex {
       gap: 60px;
    }

    /* RODAPÉ */
    footer .flex {
        flex-direction: column;
        gap: 30px;
    }

    footer .line-footer {
        text-align: center;
    }

    #logobr{
        margin-right: 0em;
    }

#capadojogo{
    width: 20em;
}

}

#erro{
    color: white;
    font-size: 4em;
}

#bode{
    display: flex;
    align-items: center;
    justify-content: center;

}

#logopag2{
    width: 6em;
    margin-left: 1em;
}

@media screen and (max-width: 730px) {
    .nav-bar {
        padding: 1.5rem 4rem;
    }
    .nav-item {
        display: none;
    }
    .login-button {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .mobile-menu-icon button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
    }
    .mobile-menu .nav-item {
        display: block;
        padding-top: 1.2rem;
    }
    .mobile-menu .login-button {
        display: block;
        padding: 1rem 2rem;
    }
    .mobile-menu .login-button button {
        width: 100%;
    }
    .open {
        display: block;
    }

}

#h1pilotos{
    color: white;
    margin-left: 1em;
    font-size: 3em;
}

.ppilotos{
    color: white;
    margin-left: 1em;
    font-size: 1.2em;

}

.imgequipes{
    width: 7em;
    border-radius: 35%;
}
--
.navdasequipes{
    margin-left: 5em;
    margin-top: 3em;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.plataforma{
    width: 1.2em;
    margin: 0.4em;
}

.pilotoeplat{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#seceqquipes{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}

.navdasequipes{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 2em;
}

.txt-sobreocamp {
    color: #fff;
    margin-right: 2em;
}

.txt-sobreocamp h2 {
    font-size: 40px;
    line-height: 40px;

}

.txt-sobreocamp h2 span {
    color: #0139f3;
    display: block;
}

.txt-sobreocamp p {
    margin: 20px 0;
    text-align: justify;
}

#h2calendario{
    color: white;
    font-size: 35px;
    line-height: 40px;
}

.bandeirascale{
    width: 2.5em;
    margin-right: 1em;
}


.txt-sobre {
    color: #fff;
}

.txt-sobre h2 {
    font-size: 40px;
    line-height: 40px;
}

.txt-sobre h2 span {
    color: #0139f3;
    display: block;
}

.txt-sobre p {
    margin: 20px 0;
    text-align: justify;
}

#h2index{
    color: #fff;
}

.pindex{
    color: white;

}

.circuito{
    color: white;
    font-size: 1.2em;

}

.sobre111{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.gps{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 0.5em;
}

#temporada{
    color: #0139f3;
}

.interface2 {
    max-width: 1280px;
}

.artequipes{
    margin-bottom: 3em;
    margin: 5em;
}

#tabelapilotos{
    width: 25em;
}

#tabelaequipes{
    width: 25em;
}

#classificação{
    color: white;
    margin-left: 1em;
    font-size: 3em;
    margin-top: 2em;
}

.atualização{
    font-size: 0.7em;
    color: white;
}

.pilotosp{
    color: white;
    font-size: 2em;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin-bottom: 1em;
}

#tabelass{
    display: flex;
    align-items: center;
    flex-direction: row;
}

.divtabelass{
    margin: 3em;
}

#tabelass{
    display: flex;
    justify-content: center;
}

#calendario{
    margin-left: 5em;
}

.interface2{
    margin-right: 5em;
}

#h2sobre{
    display: block;
    font-size: 2.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;

}


@media screen and (max-width: 1020px) {
        
#calendario{
            margin-top: 3em;
            margin-left: 0em;
        }

        .sobre111{
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .interface2{
            margin-right: 0em;
        }

        #seceqquipes{
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        #tabelass{
            display: flex;
            flex-direction: column;
        }

        #h2sobre{
            display: block;
            font-size: 1.8em;
            margin-block-start: 0.83em;
            margin-block-end: 0.83em;
            margin-inline-start: 0px;
            margin-inline-end: 0px;
            font-weight: bold;
            unicode-bidi: isolate;
        }
    
        .txt-sobreocamp{
            margin: 2em;
        }
    
        #calendario{
            margin: 2em;
        }

        #h2calendario{
            font-size: 1.8em;
        }

        #h1pilotos{
            font-size: 1.8em;
            margin-top: 2em;
            margin-bottom: 1em;
        }

        .imgequipes{
            width: 5em;
        }

        .ppilotos{
            font-size: 1em;
        }
        
        .plataforma{
            width: 1em;
        }

        .artequipes {
            margin-bottom: 3em;
            margin: 0em;
            margin-top: -2em;
        }
        
        #classificação{
            font-size: 1.8em;
            color: #0139f3;
        }

        #tabelapilotos{
            width: 20em;
        }

        #tabelaequipes{
            width: 20em;
        }
    }


    #h1regras{
        color: white;
        font-size: 2em;
    }

    #logoregras{
        width: 20em;
        margin-top: 2em;
    }

    #inicioregras{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #inicioregras2{
        display: flex;
        justify-content: center;
    }

    .pdasregras{
        color: white;
        margin: 0.4em;
    }

    #sectionregras{
        margin: 6em;
        margin-top: -3em;
    }

    #sectioninfo{
        margin: 6em;
        
    }

    #h3regras{
        color: #44ec5a;
        font-size: 2em;
        margin-bottom: 0.6em;
    }

    #navdaspontuações{
        display: flex;
        flex-direction: row;
    }

    #h4pontua{
        color: white;
        font-size: 2em;
        margin-bottom: 0.6em;
    }

    #h5pontua{
        color: white;
        font-size: 2em;
        margin-bottom: 0.6em;
    }

    .divpontua{
        margin: 4em;
        margin-left: -0.4em;
    }

    #h2info{
        color: white;
        font-size: 2em;
        margin-bottom: 0.6em;
    }

    .negritoazul{
        color: #44ec5a;
    }

    #h6lobby{
        color: #44ec5a;
        font-size: 1.5em;
        margin-bottom: 0.6em;
    }


    #sectionlobby{
        margin: 6em;
        margin-top: -3em;
    }

    .lobby{
        color: white;
    }

    #h7lobby{
        color: #44ec5a;
        font-size: 1.5em;
        margin-bottom: 0.6em;
    }

    .regraslobby{
        margin-bottom: 3em;
    }

    #h8lobby{
        color: #44ec5a;
        font-size: 1.5em;
        margin-bottom: 0.6em;
    }


    #h9lobby{
        color: #44ec5a;
        font-size: 1.5em;
        margin-bottom: 0.6em;
    }

    #h10lobby{
        color: #44ec5a;
        font-size: 1.5em;
        margin-bottom: 0.6em;
    }

    #h11lobby{
        color: #44ec5a;
        font-size: 1.5em;
        margin-bottom: 0.6em;
    }

    #h12lobby{
        color: #44ec5a;
        font-size: 1.5em;
        margin-bottom: 0.6em;
    }

    #sectionbugs{
        margin: 6em;
        margin-top: -3em;
    }

    #sectiondeveres{
        margin: 6em;
        margin-top: -3em;
    }


    .pdasregras1{
        color: white;
        margin: 0.4em;
        margin-bottom: 2em;
    }

    #sectioninvestigação{
        margin: 6em;
        margin-top: -3em;
    }

    #sectionconflito{
        margin: 6em;
        margin-top: -3em;
    }

    #sectiondiscord{
        margin: 6em;
        margin-top: -3em;
    }


    @media screen and (max-width: 1020px) {
        
        #h1regras{
                    font-size: 1.3em;
                }
        
        #logoregras{
            width: 15em;
                }

        #sectioninfo{
            margin: 1em;
        }

        #sectionregras{
            margin: 1em;
            margin-top: 4em;
        }

        #sectionlobby{
            margin: 1em;
            margin-top: 4em;
        }

        #sectionbugs{
            margin: 1em;
            margin-top: 4em;
        }

        #sectiondeveres{
            margin: 1em;
            margin-top: 4em;
        }

        #sectioninvestigação{
            margin: 1em;
            margin-top: 4em;
        }

        #sectionconflito{
            margin: 1em;
            margin-top: 4em;
        }

        #sectiondiscord{
            margin: 1em;
            margin-top: 4em;
        }

        #h2info{
            font-size: 1.6em;
        }

        #navdaspontuações{
            display: flex;
            flex-direction: column;
            margin: 1em;
        }

    }


    @media screen and (max-width: 1020px) {
        
        #erro{
                    font-size: 1.3em;
                }


                }