.opcoes_conteudo {
    background-image: url(../../game_assets/opcoes/fundoescuro.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.opcoes_conteudo_cabecalho {
    padding: 0;
    margin-top: 5rem;
    font-size: 2.5rem;
    font-family: var(--font-primaria);
    color: var(--cor-texto);
    align-self: center;
}

.opcoes_conteudo_principal {
    display: flex;
    justify-content: center;
    padding: 0 18rem;
    width: 100%;
    margin-top: 10vh;
}

.opcoes_conteudo_principal_texto {
    list-style: none;
    font-family: var(--font-primaria);
    color: var(--cor-texto);
    font-size: 4rem;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.opcoes_conteudo_principal_texto li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.opcoes_conteudo_principal_texto button {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.opcoes_conteudo_principal_texto_imagem {
    width: 20%;
    transition: transform 0.3s ease;
}

.opcoes_conteudo_principal_texto_imagem:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .opcoes_conteudo_principal {
        padding: 0 2rem;
    }

    .opcoes_conteudo_principal_texto_imagem {
        width: 160px !important;
        min-width: 160px;
    }
}

.opcoes_conteudo_espacamento {
    padding: 2rem 3rem 0;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 999;
}

.opcoes_conteudo_espacamento_cabecalho {
    width: 190px;
    height: auto;
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 500;
    transition: transform 0.3s ease;
    transform-origin: center center;
    cursor: pointer;
}

.opcoes_conteudo_espacamento_cabecalho:hover {
    transform: scale(1.1);
}

.opcoes_conteudo_espacamento_cabecalho:hover .opcoes_conteudo_espacamento_cabecalho_imagem_texto {
    color: var(--cor-hover);
}

.opcoes_conteudo_espacamento_cabecalho button {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    display: block;
    cursor: pointer;
}

.opcoes_conteudo_espacamento_cabecalho_imagem img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.opcoes_conteudo_espacamento_cabecalho_imagem_texto {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-family: var(--font-primaria);
    color: var(--cor-texto);
    text-align: center;
    white-space: nowrap;
    width: 90%;
}

@media (orientation: landscape) and (max-height: 500px) {
    .opcoes_conteudo {
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .opcoes_conteudo_cabecalho {
        margin-top: 0 !important;
        margin-bottom: 0.5rem;
        font-size: 2rem;
        padding: 0;
        line-height: 1;
    }

    .opcoes_conteudo_principal {
        margin-top: 0 !important;
        padding: 0 !important;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .opcoes_conteudo_principal_texto {
        font-size: clamp(2.5rem, 10vh, 4rem);
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 4rem;
    }

    .opcoes_conteudo_principal_texto li {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 0 !important;
        width: auto;
    }

    .opcoes_conteudo_principal_texto_imagem {
        width: 110px;
        max-width: 20vw;
        height: auto;
        transition: transform 0.3s ease;
    }

    .opcoes_conteudo_principal_texto_imagem:hover {
        transform: scale(1.05);
    }

    .opcoes_conteudo_espacamento {
        padding: 0;
    }

    .opcoes_conteudo_espacamento_cabecalho {
        width: 130px;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 500;
        margin: 0;
    }

    .opcoes_conteudo_espacamento_cabecalho_imagem_texto {
        font-size: 1.2rem;
    }
}
