/* GERAL */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}

body {
height: 100vh;  
background-color: rgb(255, 253, 253);
}
      
.interface {
max-width: 1280px;
margin: auto;

}

.logo img {
width: 100px;
height: 100px;
margin-right: 260px;
}

.flex {
    display: flex;
}

button {
    display: block;
    padding: 10px 40px;
    font-size: 20px;
    font-weight: 100;
    color: #ffffff;
    background-color: #83522a;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    margin-left: 380px;
   }

.banner {    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(img/container.jpg); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 7.5rem;
    margin-bottom: 5rem;
    width: 100%;
    height: 15rem;    
    max-width: 120rem;
    padding: 0 2rem;
    margin: 0 auto;
    }

.banner h1 {
    color: #fff;

}

/* ESTILO CABEÇALHO */

header {
background-color: #83522a;
width: 100%;
height: auto;
position: fixed;
overflow: hidden;
}


header > .interface {
display: flex;
align-items: center;
justify-content: flex-start;
}

/* NAVEGAÇÃO */

nav a {
color: black;
text-decoration: none;
}

nav ul {
    display: flex;
    list-style-type: none;
    gap: 40px;
}

nav ul li {
    margin: 0 0 0 10px;
}

nav a:hover {
    color: #ffffff;
    transition: 0.3s;
}

/* HOME */

main {
    padding: 10%;
    background-color: rgba(255, 255, 255, 0);
}



section.topo-site .flex {
    gap: 50px;
}

.txt-site h1 { 
    text-align: center;
    margin-top: 100px;
    color: #83522a;
    font-size: 50px;
}

.txt-site h2 { 
    text-align: center;
    color: #83522a;
    font-size: 40px;
    padding: 2%;
    padding-bottom: 3%;
}

.txt-site span {
    color: #B29146;
}

.txt-site a {
    list-style-type: none;
    text-decoration: none;
}

.txt-site button:hover {
    color: #B29146;
    transition: 0.3s;
}

/* QUEM SOMOS */

section.quem-somos{    
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B29146;
}

.quem-somos img{
    margin-top: 10rem;
    margin-left: 10rem;
    align-items: center;
    border: 4px solid #83522a;
}

.contentsobre{
    align-items: center;
    justify-content: center;
}

.contentsobre h2{
    font-size: 30pt;
    margin-bottom: 1rem;
    margin-top: 10%;
}

.contentsobre p{
    text-align: left;
    font-size: 15pt;
    width: 600px;
    color: #000;
}

/* FORMULARIO SITE */

.formulario h3 {
    color: #B29146;
    font-size: 45px;
    text-align: center;
    padding: 0 0 5px;
    margin-top: 3%;
    }
    
.formulario h3 span {
    
color: #83522a;
    
}

.formulario p {
    color: #000;
    font-size: 20pt;
    text-align: center;
    padding: 0 0 15px;

}
    
form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}
    
form input, form textarea {
    width: 100%;
    background-color: #242424;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
}
    
form textarea {
    resize: none;
    max-height: 200px;
}
    
form .mdrf-envia {
    margin-top: 20px;
    text-align: center;
}
    
form .mdrf-envia input {
    width: 100px;
    background-color: #83522a;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

/* RODAPE */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    Border-top: 0.4px solid #B29146;
}


.txt-footer {
    color: #B29146;
    padding: 20px;
    font-weight: 400;
}

.logo-footer img {
    width: 150px;
    height: 150px;
    margin-right: 10px;
}

footer nav a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 600;
}
    
footer nav ul {
    display: flex;
    list-style-type: none;
    padding: 20px;
    margin-right: 30px;
} 
    
footer nav a:hover {
    color: #B29146;
    transition: 0.3s;
}

.icones {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    gap: 20px;
}

.itens {
    font-size: 40px;
     
}

/* TABELA */

.content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    width: 100%;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
    background-color: #83522a;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #83522a;
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #83522a;
}
