*{
  padding: 0;
}
body {
  background: white;
  font-family: sans-serif;
}

header {
  background-color: white;
  position: fixed;
  top: 0;
  min-height: 75px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;

}

.logo {
  width: 60vw;
}

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


#hero {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;

}

#hero input {
  max-width: 275px;
  width: 100%;
  padding: 5px;
}

#nav-bar ul {
  display: flex;
  justify-content: center;
  column-gap: 50px;
}

li {
  list-style: none;
}

@media (max-width: 600px) {

  #nav-bar ul {
    display: flex;
    justify-content: center;
    column-gap: 50px;
    flex-direction: column;
  }
}

input#submit {
  background-color: greenyellow;
  max-width: 150px;
  width: 100%;
  padding: 5px 20px;
  font-size: 1em;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
}

.grid {
  display: flex;
  align-items: center;
}

.icone {
  width: 20vw;
  height: 125px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.desc {
  width: 80vw;
}

.titulo {
  font-weight: bolder;
  font-size: 1.5em;
}

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

.product{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100%/3);
  border: 1px solid #000;
  margin: 10px;
}

.product > .level{
  background-color: #ddd; 
  color: black;
  padding: 15px 0;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
}
.product > ol > li{
  padding: 5px 0;
}
.product > h2{
  margin-top: 15px;
}

.btn{
  padding: 0 20px;
  height: 40px;
  font-size: 1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.product > .btn{
  border: 0;
  margin: 15px 0;
  background-color: #f1c40f;
  font-weight: 400;
}