@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

body {
    margin: 0;
    background-color: rgb(0, 0, 0);
    overflow-x: hidden;
}

.barra-topo {
    background-color: rgb(10, 10, 10);
    height: 100px;
    margin: 0px;
    justify-items: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.barra-topo img {
    margin-top: 5px;
    margin-left: 10px;
    cursor: pointer;
    transition: transform 0.2s
}

.barra-topo img:hover {
    transform: scale(1.1);
}

/* ESCONDE OS BOTÕES MOBILE E PC */
.menu-pc {
    display: none;
}

.menu-mobile {
    display: block;
}

/* DESIGN BOTÃO PC */
.menu-pc button {
    padding: 10px 20px;
    background-color: rgb(10, 10, 10);
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 20px;
    transition: transform 0.2s
}

.menu-pc button:hover {
    transform: scale(1.1);
    background-color: #1E90FF;
}

/* DESIGN BOTÃO MOBILE */
.menu-mobile button {
    padding: 10px 20px;
    background-color: rgb(10, 10, 10);
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 20px;
    transition: transform 0.2s
}

.menu-mobile button:hover {
    transform: scale(1.1);
}

/* MENU FLUTUANTE MOBILE */ 
 .floating-menu {
    position: fixed;
    top: 120px;
    right: 20px;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 10px;
    padding: 10px;
    width: 200px;
    display: none;
    flex-direction: column;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
 }

.floating-menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-family: Arial, sans-serif;
    display: block;
    text-align: center;
    border-radius: 5px;
    transition: background 0.3s;
 }

.floating-menu a:hover {
    background: #1E90FF;
}

/* Mostra o menu quando ativo */
.show {
    display: flex;
}

.boas-vindas {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color: white;
    top: 150px;
    right: 50%;
    transform: translate(50%);
    margin: 0px;
    padding: 0px;
}

.boas-vindas h1 {
    margin-top: -10px;
    margin-bottom: -10px;
    color: #1E90FF;
    font-weight: bold;
    font-size: 80px;
    font-family: 'Anton', sans-serif;
}

.boas-vindas h2 {
    margin-bottom: 0px;
    color: #ffffff;
    font-weight: bold;
    font-size: 25px;
}

.boas-vindas p {
    margin-bottom: 25px;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
}

.boas-vindas button {
    padding: 10px 20px;
    background-color: #1E90FF;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 20px;
    transition: transform 0.2s
}

.boas-vindas button:hover {
    transform: scale(1.19);
    background-color: #1E90FF;
    box-shadow:#1E90FF 0px 0px 10px;
}

@media (min-width: 769px) {
    .menu-pc {
        display: block; /* Mostra o menu do PC */
    }

    .menu-mobile, .floating-menu {
        display: none;
    }
    .boas-vindas h1 {
        font-size: 90px;
    }
    .boas-vindas {
         top: 240px;
    }
}
