body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
#hero-temakeria {
  overflow: hidden;
  min-height: 100vh;
  background: #fff;
}

.hero-left {
  background: #f4f4f4;
  padding: 60px 70px;
  position: relative;
  z-index: 2;
}

.logo-temakeria {
  width: 260px;
  margin-bottom: 50px;
}

.hero-left h1 {
  font-size: 72px;
  line-height: 1;
  color: #8d2a84;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-subtitle {
  display: inline-block;
  background: #8d2a84;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.hero-left p {
  color: #666;
  font-size: 26px;
  line-height: 1.4;
  max-width: 500px;
  margin-bottom: 35px;
}

.btn-cardapio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00b51d;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 22px;
  transition: 0.3s;
}

.btn-cardapio:hover {
  color: #fff;
  transform: translateY(-2px);
}

.hero-horario {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.hero-horario .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f8b400;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.hero-horario .texto {
  color: #666;
  font-size: 20px;
  line-height: 1.3;
}

.hero-mapa {
  margin-top: 40px;
  /* max-width: 360px; */
}

.hero-mapa img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.endereco {
  background: #f8b400;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 0 0 15px 15px;
}

.endereco i {
  margin-right: 10px;
}

.hero-right {
  position: relative;
  /* overflow: hidden; */
}

.hero-right > img:last-child {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.selo-qualidade {
  position: absolute;
  top: 25px;
  left: -70px;
  width: 220px;
  z-index: 5;
}

/* .hero-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -55px;
  width: 110px;
  height: 100%;
  background: radial-gradient(
    circle at left center,
    transparent 58px,
    #f4f4f4 59px
  );
  background-size: 110px 120px;
  z-index: 3;
} */
.logo-temakeria-mobile {
  display: none;
}

@media (max-width: 991px) {
  .logo-temakeria-mobile {
    display: block;
    width: 100%;
  }
  .hero-left {
    padding: 40px 25px;
  }

  .logo-temakeria {
    width: 200px;
  }

  .hero-left h1 {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-left p {
    font-size: 18px;
  }

  .btn-cardapio {
    width: 100%;
    font-size: 18px;
  }

  .hero-right {
    height: fit-content;
    display: none;
  }

  .selo-qualidade {
    width: 150px;
    left: 20px;
    top: 20px;
  }

  .hero-left::after {
    display: none;
  }
}
