* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 700;
}
body {
  background: #eacbbb;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 150px;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  transition: background 0.4s ease-in-out;
  z-index: 999;
}
.minify {
  background: #fff;
}
.logo img {
  display: block;
  height: 120px;
  transition: height 0.4s ease-in-out;
}
.minify .logo img {
  height: 100px;
}
.menu {
  display: flex;
  gap: 10px;
}
.menu a {
  display: block;
  padding: 10px 15px;
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  transition: font-size 0.4s ease-in-out;
}
.minify .menu a {
  font-size: 1rem;
}
.page {
  min-height: 100vh;
  padding: 120px 150px;
}
.home {
  margin-top: -120px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  justify-content: space-around;
  align-items: start;
  padding: 120px 150px;
  min-height: calc(100vh - 120px);
  background: url('../img/bg.svg');
  background-position: right;
  background-repeat: no-repeat;
  background-size: 100%;
}
.chamada {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
}
.chamada span {
  display: block;
  padding: 10px;
  font-size: 4.5rem;
  font-weight: bold;
}
.chamada strong {
  font-weight: 700;
}
.chamada span:nth-child(1) strong {
  color: #6bbbae;
}
.chamada span:nth-child(2) strong {
  color: #eacbbb;
}
.chamada span:nth-child(3) strong {
  color: #7d55c7;
}
.destaque {
  padding: 30px 0;
}
.destaque img {
  object-fit: contain;
  object-position: top center;
  width: 400px;
}
.title,
.subtitle {
  text-align: center;
  padding-top: 20px;
  font-size: 3rem;
  width: 100%;
}
.subtitle {
  font-size: 1.2rem;
  padding: 0;
  margin-bottom: 50px;
}
.produtos_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}
.produto {
  width: 250px;
}
.produto img {
  object-fit: cover;
  object-position: center center;
  height: 250px;
  width: 100%;
  border: 12px solid #eacbbb;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.produto h2 {
  padding: 15px 0;
  text-align: center;
  color: #4e3629;
}
.sobre .title {
  margin-bottom: 30px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  grid-gap: 50px;
}
.profile {
  background: #7d55c7;
  padding: 0 30px;
  position: relative;
  height: 300px;
}
.profile span {
  display: block;
  position: absolute;
  bottom: -40px;
  font-weight: 700;
  font-size: 1.2rem;
}
.profile img {
  width: 100%;
  height: 300px;
  position: absolute;
  top: -20px;
  right: -20px;
}
.bio p {
  padding: 5px;
  font-size: 1.1rem;
  line-height: 2rem;
}
.bio strong {
  color: #7d55c7;
}
