@charset "UTF-8";

/* reset.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header h1 {
    text-shadow: 1px 1px #e2f0ae;
    font-size: 45px;
}

section h2 {
    text-transform: uppercase;
    font-size: 25px;
}

header,
section h2,
section h3,
form button {
    font-family: 'Gotu', cursive;
    font-weight: 400;
}

header {
    text-transform: uppercase;
    background-image: linear-gradient(to bottom left, #f2f2f2, #9bb14a, #c9d892);
    color: #617320;
}

header nav li {
    display: inline;
    margin-left: 16px;
    font-size: 18px;
}

header nav li a {
    color: #f2f2f2;
    text-decoration: none;
}

.cabecalho {
    text-align: center;
    padding: 16px 0;
}

.cabecalho .lista {
    padding: 16px;
}

body,
input,
textarea {
    font-family: 'Roboto', sans-serif;
    text-align: justify;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

header .container,
section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .container {
    align-items: flex-start;
}

section {
    padding: 24px 0;
    color: #617320;
    background-color: #F2F2F2;
}

section h2 {
    margin-bottom: 16px;
}

section {
    padding: 30px 0;
    
}

section p {
    margin-bottom: 8px; 
    margin-top: 24px;
}

.foto-sobre,
.foto-servicos {
    margin-right: 32px;
}

.foto-sobre,
img {
    border-radius: 20%;
}

.redes-sociais img {
    height: 24px;
}

.redes-sociais li {
    display: inline;
    margin-right: 8px;
}

.redes-sociais li a {
    text-decoration: none;
}

#contato .container {
    display: block; 
}

.metodo-contato {
    display: flex;
    justify-content: space-between;
}

form input,
form textarea,
form button {
    display: block;
    width: 300px;
    margin-bottom: 8px;
    padding: 8px;
}

form textarea {
    resize: none;
    height: 100px;
}

section h3 {
    margin-bottom: 16px;
}

form button {
    background-color: #617320;
    color: #F2F2F2;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #9bb14a;
}

input:focus, textarea:focus {
    outline-color: #617320;
}

footer {
    background-color: #617320;
    color: #F2F2F2;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    text-align: center;
}

footer img {
    height: 50px;
    padding: 8px;
    margin-top: 8px;
}