body {
    max-width: 860px;
    margin: auto;
    font-family: Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #332e25;
}

.container {
    display: grid;
    grid-template-columns: 220px 680px 0px;
    grid-template-rows: 50px 560px 50px;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "logo-lateral menu ."
        "logo-lateral main ."
        "footer footer .";
}

.logo-lateral {
    grid-area: logo-lateral;
    background-color: #ffebcd;
}

.footer {
    grid-area: footer;
    background-color: #362606;
}

.menu {
    grid-area: menu;
    background-color: gray;
}

.main {
    grid-area: main;
    background-color: #ffebcd;
}


.alinhamento {
    background-color: #362606;
    height: 50px;
    margin: 0;
}

.alinhamento li {
    display: inline-block;
    list-style: none;
}

.alinhamento li a {
    color: #dec7a2;
    font-family: Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: bolder;
    text-decoration: none;
    padding-right: 30px;
}

.alinhamento li a:hover {
    color: #ffffff;
}

.alinhamento li a:active {
    color: #ffffff;
}

.titulo-pagina {
    font-weight: bold;
    text-align: right;
    border-bottom: 3px solid;
    padding-bottom: 10px;
    margin: 10px;
}

.conteudo-pagina {
    margin: 20px;
}

.conteudo-footer {
    font-weight: bold;
    color: #dec7a2;
    margin-left: 20px;
}

.texto-direita {
    float: right;
    margin-right: 20px;
}

.font-bold {
    font-weight: bold;
}

.color-icon {
    color: #ff5b00;
}

.padding-left10 {
    padding-left: 10px;
}

.padding-top10 {
    padding-top: 10px;
}

.input-contact {
    border: 1px solid #452D04;
    margin-left: 10px;
    padding: 2px;
    width: 300px;
    background-color: #E4E1CE;
    font-family: verdana;
    font-size: 11px;
}

.message-contact {
    border: 1px solid #452D04;
    margin-left: 10px;
    padding: 2px;
    width: 300px;
    height: 100px;
    background-color: #E4E1CE;
    font-family: verdana;
    font-size: 11px;
}


.button-submit {
    border: 1px solid #452D04;
    background-color: #E4E1CE;
    font-family: verdana;
}


/* Inicio Home */

.position-logo {
    float: left;
}

.position-relative {
    position: relative;
}

/* Fim Home */


.borda-marcacao {
    border: 1px solid red;
}


.link-email {
    text-decoration: none;
}

.text-color {
    color: #362606
}

.alinhamento-form {
    display: contents;
}

.alinhamento-form li {
    display: inline-block;
    list-style: none;
}


.xpto {
    width: 80px;
    float: left;
    margin-bottom: 15px;
    text-align: left;
}

.aling-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aling-button2 {
    display: flex;
    justify-content: left;
    align-items: initial;
}