a{text-decoration: none}

#container_geral{
    /* background-color: lightblue; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

#topo{
    min-height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    /* background-color: rgb(255, 203, 183); */
}

.idiomas{
    display: flex;
    justify-content: center;
    gap: 20px;
}

#corpo{
    width: 100%;
    /* background-color: rgb(255, 248, 183); */
    height: calc(100% - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
}


#decoracao, #conteudo, #menu_opcoes{
    flex: 1;
    height: 100%;
}

#decoracao{
    display: flex;
    /* background-color: aquamarine; */
    align-items: center;
    flex: 1;
}

#conteudo{
    /* background-color: rgb(127, 219, 255); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    flex: 2;
}

.titulo_geral{
    font-size: 7.5rem;
    font-weight: bold;
    color: var(--azul-escuro);
    position: relative;
}
.titulo_geral::before{
    content: "PLATAFORMA";
    font-size: 2rem;
    position: absolute;
    top: -1rem;
}

.texto p{
    font-size: 1rem;
    line-height: 1.5;
}

.texto a{
    font-weight: bold;
    color: var(--azul-escuro);
}

.texto a:hover{
    color: var(--azul-intermediario);
}


#menu_opcoes{
    /* background-color: rgb(234, 127, 255); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding-left: 40px;
}

.menu_opcoes__botoes{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    color: white;
}

.menu_opcoes__titulo{
    font-size: 1.4rem;
    font-weight: bold;
}

.menu_opcoes__botao{
    cursor: pointer;
    min-width: 325px;
    padding: 0.8rem 0.1rem;
    background-color: var(--azul-escuro);
    display: flex;
    justify-content: flex-start;
    font-size: 1.4rem;
    gap: 20px;
}

a .menu_opcoes__botao__descricao{color: white;}


.menu_opcoes__botao__icone{
    min-width: 45px;
    text-align: center;
    padding-left: 10px;
}


.menu_opcoes__botao:hover{
    background-color: var(--azul-intermediario);
}