#Menu{
    position: fixed;
    top: 0;
    left: 0;
    float: left;
    text-align: start;
    line-height: normal;
    background-color: rgba(226, 226, 226, 0.945);
    border-color: black;
    border-width: thin;
    border-style: solid;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    width: 29%;
    height: 700px;
    overflow-y: auto;
}


#Menu li {
    padding: 10px;
}

#Menu a{
    display:block;
    text-decoration:none;
}

#Menu a:hover{
    background-color: #ccc;
}

#Menu a.active{
    background-color:green;
    color:white;
}

.foto {
    max-width: 100%;
    height: auto;
}


#Conteudo {
    position: static;
    right: 0;
    float: right;
    line-height: normal;
    background-color: rgb(250, 247, 247);
    font-size: larger;
    border-width: thin;
    border-style: solid;
    border-color: black;
    font-family: Arial, Helvetica, sans-serif;
    width: 70%;
}


.fonte-menor {
    font-size: small;
}

#subir{
    display: flex;
    justify-content: center;
    align-items: center;
	position:fixed;
    width: 50px;
    height: 50px;
	bottom: 10px;
	left: 10px;
    background-color: #d3d3d3;
    text-decoration: none;
}

.Contato{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.Contato-input{
    width: 400px;
    height: 50px;
}

.Contato textarea{
    height: 140px;
    padding-top: 15px;
}

.Contato-input:focus {
    border: 2px solid green;
}

.Contato-input::placeholder{
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

.Contato button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 15px;
    gap: 10px;
}


.ajuste-palavra {
    word-break: break-word;
    overflow-wrap: break-word;
}

table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse; 
}

td, th {
    word-wrap: break-word;
}