@charset "UFT-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}


.center {
    display: flex;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2%;
}

.logo {
    width: 50%;
}

html {
    height: 100px;
    overflow-y: hidden;
}

header {
    height: 200px;
    padding: 20px 0;
}

.menu {
    padding-top: 30px;
    width: 50%;
    text-align: right;
}

.menu a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}

.menu a:hover {
    color: #017143;
}

section.sobre {
    height: calc(100% - 200px);
    position: relative;
}

.extras {
    position: absolute;
    bottom: -300px;
    right: 0;
    height: 650px;
    width: 600px;
    border-top-left-radius: 100%;
    background-color: #017143;
}

.social-media {
    position: absolute;
    right: 0;
    top: 250px;
}

.social-media img {
    display: block;
    margin: 10px 5px;
    width: 20px;

}

.copos {
    position: absolute;
    bottom: 65px;
    margin-left: -400px;
}

.texto-sobre {
    margin-top: 50px;
}

.texto-sobre h1 {
    font-size: 50px;
}

.texto-sobre p {
    margin: 20px 0;
    color: black;
    font-size: 14px;
    max-width: 800px;
    font-weight: bold;
}

.texto-sobre button {
    border: 0;
    background-color: #017143;
    color: white;
    border-radius: 10px;
    height: 30px;
    width: 100px;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 2px 3px 5px rgb(0 0 0 / 27%)
}