body{
    font-family: "Orbitron", sans-serif;
    margin: 0;
    background-color: rgba(0,0,0,1);
    color:rgba(255,255,255,1);
}

a{
    text-decoration: none;
}

li{
    list-style: none;
    text-decoration: none;
}
.header{
    display: flex;
    position: fixed;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
    width: 100%;
    height: 75px;
    background-color: rgba(0,0,0,1.0);
}
.logo{
    height: 35px;
    margin-left: 1%;
}
.navbar{
    height: 100%;
}
.menu{
    display: flex; 
    margin: 0;
    padding: 0;
    list-style: none;
    height: 75px;
}
.header li{
    display: flex;
    text-align: center;
    justify-content: center;
    border-bottom: solid rgba(0,0,0,1.0) 2px;
    transition: all .3s ease-in-out;
}
.pagina{
    display: block;
    padding: 25px 22px 20px 22px;
    font-weight: 600;
    color: rgba(255,255,255,1);
}
.header li:hover{
    border-bottom: solid rgba(255, 0, 17,1) 2px;
    cursor: pointer;
}
.atual{
    color:rgba(255, 0, 17,1);
}
.titulo{
    display:flex;
    flex-wrap: wrap;
    padding: 5% 10% 0 10%;
    align-items: center;
    justify-content: center;
    background-size:auto;
    background-color: rgba(0,0,0,1);
}
.titulo_principal{
    width: 60%;
    padding: 0 20%;
    text-align: center;
    font-size: 55px;
    color: rgba(255, 0, 17,1);
}
.texto{
    display:flex;
    flex-wrap: wrap;
    padding: 2% 20%;
    align-items: center;
    justify-content: center;
    word-break: normal;
}
.conteudo{
    width: 100%;
    font-size: 25px;
    line-height: 35px;
    text-align: justify;
}
.loja{
    width: 100%;
}
.footer{
    display: flex;
    padding: 2% 5%;
    background-color: rgba(0,0,0,1);
    justify-content: center;
    align-items: center;
}
.footer a{
    color: rgba(255,255,255,1);
}
.logo_final{
    height: 50px;
    margin-right: 50px;
}
.grid_final{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    width: 50%;
    column-gap: 50px;
    row-gap: 50px
}
.bloco{
    display: flex;
    flex-direction: column;
    border-left: solid rgba(255,0,17,1) 1px;
    padding-left: 10%;
    justify-content:flex-start;
}
.grid_final h2{
    margin-top: 10px;
}
.grid_final p{
    margin-top: 0px;
}
.facebook,.instagram{
    height: 20px;
    width: 20px;
    margin-right: 20px;
}

.footer a:visited {
    color: inherit; /* ou a cor desejada */
    text-decoration: none; /* opcional: remove sublinhado */
}
address{
   font-style: normal; 
}

.menu-toggle{
    display:none;
}

.vermelho{
    color:rgba(255,0,17,1);
    margin: 75px 0;
}

@media (max-width:900px){
    .menu{
        display:none;
    }
    .header{
        height: auto;
        min-height: 55px;
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 3%;
    }

    .menu-toggle{
        display: flex;
        flex-direction: column;
    }
    .bar{
        background-color: rgba(255,0,17,1);
        height: 3px;
        width: 30px;
        margin: 4px;
    }
    .ativo{
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .pagina{
        width: 100%;
    }

}

@media screen and (max-width:768px) {
    .logo{
        height: 30px;
    }
    .titulo{
        height: 30vh;
    }
    .titulo_principal{
        font-size: 25px;
    }
    .texto{
        padding: 2% 10%;
    }
    .conteudo{
        font-size: 15px;
        line-height: 20px;
    }
    .footer{
        flex-direction: column;
        align-items: flex-start;
        padding-top: 10%;
    }
    .grid_final{
        margin-top: 10%;
        row-gap: 0px;
    }
    h2{
        font-size: 20px;
    }
    .grid_final p{
        font-size: 15px;
    }

    .bloco{
        padding-bottom: 15px;
    }
    .logo_final{
        height: 35px;
    }
}
