body {
    font-family: 'Open Sans',Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

header {
    background-color:#2980b9;
    color: #fff;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img{
    width: 20%;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 20px;
    min-height: 100vh;
    margin-bottom: 150px;
}

section {
    margin-bottom: 40px;
    text-align: center;
}

section h2 {
    color: #333;
}

section p {
    line-height: 1.6;
}


footer {
    background-color: #2980b9;
    color: #fff;
    text-align: center;
    padding: 30px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

footer #socialmedia{
    display: flex;
    flex-direction: column;
}

#contato {
    background-color: #f4f8fb;
    padding: 30px;
    border-radius: 10px;
}

#contato h2 {
    color: #2980b9;
    margin-bottom: 15px;
}

.contato-info p {
    margin: 10px 0;
    font-size: 16px;
}

.contato-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contato-form input,
.contato-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contato-form button {
    background-color: #2980b9;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.contato-form button:hover {
    background-color: #1f6690;
}

#socialmedia a {
    color: #fff;
    text-decoration: none;
    margin: 5px 0;
    font-weight: bold;
}

#socialmedia a:hover {
    text-decoration: underline;
}