@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&display=swap');

* {
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

li {
    list-style: none;
    margin-right: 20px;
    display: inline;
    float: right;
}

a {
    text-decoration: none;
    color: gray;
    border-radius: 10px;
    padding: 5px 20px;
}

p {
    color: slateblue;
    width: 450px;
}

input, textarea {
    border: 1px solid #87ccd0;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 5px;
}

input::placeholder {
    padding: 10px;
}

label {
    font-weight: bold;
}

.identity {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-left: 180px;
}

.logo {
    margin-right: 10px;
}

.company-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
    color: navy;
}

.links {
    margin-top: 20px;
    margin-right: 100px;
    display: flex;
    flex-direction: reverse;
}

.links a:hover {
    background-color: #28C5CC;
    color: white;
}

.nav-inicio {
    margin-right: 10px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 55px;
}

.midle {
    margin-left: 100px;
    margin-bottom: 50px;
}

.conteudo {
    font-size: 60px;
    margin-bottom: 5px;
    margin-top: 10px;
    color: navy;
}

.landing-page {
    text-transform: uppercase;
    color: cadetblue;
    font-size: larger;
}

.paragraph {
    margin-top: 50px;
    margin-bottom: 50px;
}

.saiba-mais {
    background-color: #28C5CC;
    color: white;
}

.image {
    margin-right: 100px;
}

.image img {
    border-radius: 50px;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    margin-left: 180px;
    width: 400px;
}

.social {
    background: none;
}

.social img {
    width: 30px;
}

.fields {
    border: 2px solid #87ccd0cc;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 600px;
    height: 500px;
}

.btn {
    background-color: #28C5CC;
    color: white;
    border: none;
    border-radius: 5px;
    width: 100px;
    padding: 5px;
    cursor: pointer;
}

.content-contact {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 5px;
}

.socials-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-left: 180px;
    width: 400px;
}

.current-page {
    background-color: #28C5CC;
    color: white;
}