body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    background-image: url(morumbi-1-1000x570.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.tela {
    width: 800px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#menu-principal .titulo-principal {
    font-size: 48px;
    text-shadow: 4px 4px 4px black;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid white;
    padding: 10px 20px;
    background-color: rgba(255, 0, 0, 0.7);
    border-radius: 10px;
}

.botoes-menu {
    display: flex;
    flex-direction: column;
    width: 70%; 
    z-index: 10; 
    position: relative;
}

.botao {
    font-size: 32px;
    text-shadow: 2px 2px 2px black;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    padding: 15px 30px;
    cursor: pointer;
    border: 2px solid white;
    background-color: rgba(255, 0, 0, 0.7);
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 10; 
}

.botao:hover {
    background-color: rgba(255, 0, 0, 0.9);
}

.logos {
    display: flex;
    justify-content: space-between;
    width: 150%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 1; 
}

.logo-esquerda, .logo-direita {
    width: 250px;
    height: 250px;
}

#como-jogar {
    display: none;
    width: 700px;
    min-height: 400px;
    padding: 30px;
    text-align: center;
}

#como-jogar .titulo-secundario {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff0000;
    text-shadow: 2px 2px 2px black;
}

#como-jogar .subtitulo {
    font-size: 24px;
    color: #ff7878;
    text-shadow: 2px 2px 2px black;
}

.texto-instrucoes {
    font-size: 24px;
    line-height: 1.5;
    text-shadow: 2px 2px 2px black;
    margin-bottom: 20px;
}

.botao-voltar {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 2px black;
    background-color: #FF0000;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

#tela-hino {
    display: none;
    width: 700px;
    height: auto;
    min-height: 500px;
    padding: 30px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

}

#tela-hino .conteudo-hino {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 70%;
    padding-right: 20px;
}

.coluna-hino {
    width: 48%;
    font-size: 18px;
    line-height: 1.6;
}

.coluna-hino p {
    margin: 0;
    margin-bottom: 5px;
    text-shadow: 2px 2px 2px rgb(0, 0, 0);
}

.lateral-hino {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    width: 30%;
    height: 100%;
    padding-left: 20px;
    box-sizing: border-box;
}

.logo-spfc-hino {
    width: 250px;
    margin-bottom: 20px;
    margin-top: 0;
}

#tela-hino .botao-voltar,
#hino-audio {
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

#hino-audio {
    margin-top: 20px;
}

#tela-quiz {
    display: none;
    width: 700px;
    height: auto;
    min-height: 500px;
    padding: 30px;
    text-align: center;
}

#tela-quiz #pergunta {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
    color: #FF0000;
    margin-bottom: 30px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 2px solid white;
}

#tela-quiz #opcoes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

#tela-quiz .botao-opcao {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    border-radius: 30px;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
    position: relative;
}

#tela-quiz .botao-opcao:hover {
    background-color: rgb(0, 0, 0);
}

#tela-final {
    display: none;
    text-align: center;
}

#tela-final .titulo-final {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

#tela-erro {
    display: none;
    width: 700px;
    min-height: 400px;
    padding: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#tela-erro .titulo-erro {
    font-size: 72px;
    font-weight: bold;
    color: red;
    text-shadow: 4px 4px 4px black;
    margin-bottom: 20px;
}

#tela-erro .subtitulo-erro {
    font-size: 28px;
    color: red;
    text-shadow: 2px 2px 2px black;
    margin-top: 20px;
}

#tela-erro .logos-erro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 20px;
}

#tela-erro .logo-erro {
    width: 250px;
    height: 250px;
}

.botao-recomecar {
    font-size: 70px;
    color: white;
    text-shadow: 2px 2px 2px black;
    font-weight: bold;
    text-align: center;
    padding: 15px 30px;
    cursor: pointer;
    border: 2px solid white;
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.botao-recomecar:hover {
     background-color: rgba(255, 0, 0, 0.9);
}

#tela-vitoria {
    display: none;
    text-align: center;
    color: white;
}

#tela-vitoria .titulo-vitoria {
    font-size: 72px;
    font-weight: bold;
    color: #00FF00;
    text-shadow: 4px 4px 4px black;
    margin-bottom: 20px;
}

#tela-vitoria .subtitulo-vitoria {
    font-size: 50px;
    color: #ff0000;
    text-shadow: 2px 2px 2px black;
    margin-bottom: 20px;
}

#tela-vitoria .logos-vitoria {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 20px;
}

#tela-vitoria .logo-vitoria {
    width: 250px;
    height: 250px;
}