@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f2f2f2;
    font-family: "Open Sans", sans-serif;
}

#page-wrapper {
    position: relative;
}

li {
    list-style: none;
}

a {
    color: #000000;
    text-decoration: none;
}

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

.btn {
    padding: 0 20px;
    height: 40px;
    font-size: 1em;
    font-weight: 900;
    text-transform:uppercase;
    background-color: #c0bcb4;
    color: black;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #c0bcb4 ;
}

.btn:hover {
    background-color: #93918e;
    transition: 1s;
}

.grid {
    display: flex;
}

header {
    position: fixed;
    top: 0;
    min-height: 75px;
    padding: 0px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f2f2f2;
}

@media (max-width: 600px) {
    header {
        flex-wrap:wrap;
    }
}

.logo {
    width: 60vw;
}

@media (max-width: 650px) {
    .logo {
        margin-top: 15px;
        width: 100%;
        position: relative;
    }
}

.logo > img {
    width:100%;
    height: 100%;
    max-width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 20px;
}

@media (max-width:650px) {
    .logo > img {
        margin: 0 auto;
    }
}

nav {
    font-weight: 400;  
}

@media (max-width:650px) {
    nav {
        margin-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 50px;
    }
}

nav li {
    padding-bottom: 5px;
}

nav ul {
    width: 35vw;
    display: flex;
    flex-direction: row;
    justify-content:space-around ;
}

@media (max-width:650px) {
    nav > ul {
        flex-direction:column ;
    }
}

#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 200px;
    margin-top: 50px;
}

#hero > h1 {
    padding-top: 50px;
    margin-bottom: 20px;
    margin-top: 70px;
    word-wrap: break-word;
}


#hero > form > input[type='email'] {
    max-width: 275px;
    width: 100%;
    padding: 5px;
}

#hero > form > input[type='submit'] {
    max-width: 150px;
    width: 100%;
    height: 30px;
    margin: 15px 0;
}

@media (max-width:650px) {
    #hero {
        margin-top: 120px;
    }
}

#sobre {
    margin-top: 30px;
}

#sobre .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 125px;
    width: 20vw;
}

.icon > img {
    width:100%;
    height: 100%;
    max-width: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 20px;
    padding-bottom: 10px;
}

#sobre  h2 {
    font-weight: 600;
}

@media (max-width: 550px) {
    #sobre .icon {
        display: none;
    }
}

#sobre .desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 125px;
    width: 80vw;
    padding: 5px;
}

@media (max-width: 550px) {
    #sobre .desc {
        width: 100%;
        text-align: center;
        padding: 0;
        height: 150px;
    }
}

@media (max-width: 650px) {
    #sobre {
        margin-top: 0;
    }
}

.quem-somos {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:#f2f2f2;
}

.quem-somos > h2 {
    text-align: center;
    padding-bottom: 20px;
}


#produtos {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.produto {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% / 3);
    margin: 10px;
    border: 1px solid ;
    border-radius: 5px;
}

.produto > .nome-produto {
    text-align: center;
    background-color: #b5b1a8;
    padding: 15px 0;
    width: 100%;
}

.produto  h3 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1em;
}

.produto h4 {
    padding: 10px;
    font-weight: 700;
    font-size: 1.2em;
} 

.produto > img {
    width: 100%;
}

.produto > p {
    padding-bottom: 5px;
    font-size: 1em;
}

.produto > button {
    margin-bottom: 10px;
    font-weight: 400;
}

@media (max-width: 600px) {
    #produtos {
        flex-direction: column;
    }

    .produto {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 10px;
    }
}

footer {
    margin-top: 30px;
    background-color: #b5b1a8;
    padding: 20px;
    width: 100%;
}

footer li {
    padding: 0 10px;
    margin-top: 3px;
    font-weight: 500;
}

footer > p {
    padding: 0 10px;
    margin-top: 3PX;
    font-size: 0.8em;
}
