* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
  color: #4f4a4a;
}

a {
  text-decoration: none;
  color: #4f4a4a;
}

ul {
  list-style: none;
}

a:hover {
  color: #b05574;
}

i {
  font-size: 3rem;
  color: #b05574;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.header .navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.header .navbar .menu-itens {
  display: flex;
  text-transform: uppercase;
  gap: 1rem;
}

.menu-itens a {
  display: block;
  padding: 1rem;
  border-radius: 5px;
}

.navbar .contato-info i {
  background: #b05574;
  font-size: 2rem;
  color: #fff;
  border-radius: 50px;
  height: 50px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: color 0.1s background-color 0.1s;
  box-shadow: 2px 2px 5px 0px rgba(125, 60, 82, 0.5);
}

.contato-info a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.navbar .contato-info i:hover {
  background: #7d3c52;
}

/*MENU HAMBURGUER*/
.hamburger {
  display: none;
  border: none;
  background: none;
  border-top: 3px solid #7d3c52;
  cursor: pointer;
}

.hamburger::after,
.hamburger::before {
  content: " ";
  display: block;
  width: 30px;
  height: 3px;
  background: #7d3c52;
  margin-top: 5px;
  position: relative;
  transition: 0.3s;
}

@media (max-width: 880px) {
  .hamburger {
    display: block;
    z-index: 1;
    order: 1;
  }

  .menu-itens {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 30vh;
    background: #e7acc0;
    clip-path: circle(100px at 90% -55%);
    transition: 1s ease-out;

    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 0;

    pointer-events: none;
  }

  .menu-itens a {
    font-size: 1.4rem;
    opacity: 0;
  }

  .menu-itens li:nth-child(1) a {
    transition: 0.5s 0.2s;
  }

  .menu-itens li:nth-child(2) a {
    transition: 0.5s 0.4s;
  }

  .menu-itens li:nth-child(3) a {
    transition: 0.5s 0.6s;
  }

  /* Estilos ativos */

  .navbar.active .menu-itens {
    clip-path: circle(1500px at 90% -15%);
    pointer-events: all;
  }

  .navbar.active .menu-itens a {
    opacity: 1;
  }

  .navbar.active .hamburger {
    position: fixed;
    top: 26px;
    right: 16px;
    border-top-color: transparent;
  }

  .navbar.active .hamburger::before {
    transform: rotate(135deg);
  }

  .navbar.active .hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
}

/*SECTION 1*/

.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 140%;
  gap: 4rem;
  max-width: 1200px;
  margin: 4rem auto;
}

.container img {
  width: 40rem;
  height: 50rem;
}

.container-text {
  max-width: 660px;
}

.container-text strong {
  font-size: 2.4rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #b05574;
}

.container-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3rem 0;
  margin-left: 7rem;
}

.lista li {
  position: relative;
}

.lista li::before {
  content: "*";
  display: block;
  position: absolute;
  font-size: 2rem;
  font-weight: 700;
  left: -1.5rem;
  top: 0.3rem;
}

.lista li:nth-child(even) {
  color: #b05574;
}

.titulo-price {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 2.8rem;
  position: relative;
}

.titulo-price p {
  max-width: 400px;
  margin-left: 3rem;
  font-size: 2rem;
  font-weight: 500;
}

.titulo-price::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 0.5rem;
  background: #e7acc0;
  top: 1.2rem;
  left: 0.5rem;
}

.titulo-price::after {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 0.5rem;
  background: #e7acc0;
  bottom: 0.4rem;
  left: 23.5rem;
}

.titulo-price span {
  border: 2px solid #b05574;
  box-shadow: 1px 2px 5px 0px rgba(176, 85, 116, 0.5);
  color: #b05574;
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
  font-size: 2.4rem;
  font-weight: 500;
}

.titulo-price span small {
  font-size: 1.4rem;
  font-weight: 400;
  margin-right: 0.5rem;
}

/*SECTION 2 */
.bg-container {
  background: rgba(252, 197, 215, 0.3);
}

.content-container {
  max-width: 1200px;
  padding: 2rem;
  margin: 0 auto;
}

.content-container .title {
  display: flex;
  padding: 1rem 2rem;
}

.content-container .title h2 {
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

.content-container .title h2::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 0.5rem;
  background: #e7acc0;
  top: 1.4rem;
  left: -3rem;
}

.container-lista-2 {
  display: flex;
  justify-content: space-around;
}

.content-container img {
  max-width: 15rem;
  height: 15rem;
  box-shadow: 5px 10px 10px 0px #b05574;
}

.menu-lista {
  display: flex;
  flex-wrap: wrap;
}

.menu-lista .lista {
  font-size: 1.6rem;
  line-height: 140%;
  margin: 1rem 3rem;
}

.title .lista li {
  margin-top: 0.5rem;
}

/*footer*/
.footer-container {
  background: linear-gradient(
    180deg,
    #fcc5d7 0%,
    rgba(231, 172, 192, 0) 94.63%
  );
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.footer-container .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-container .footer-logo .img {
  max-width: 8rem;
  height: auto;
}

.footer-container h5 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #7d3c52;
  margin-bottom: 1rem;
}

.footer-container .information p {
  font-size: 1.2rem;
  line-height: 140%;
}

.footer-container .telefone .info-tel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-container .telefone .info-tel i {
  padding: 0 0.5rem;
}

.pagamento-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.social-media {
  display: flex;
  gap: 1rem;
}

.container-information {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 2rem;
  gap: 5rem;
}

@media (max-width: 880px) {
  /*SECTION 1*/
  .container-information {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .container img {
    width: 25rem;
    height: 30rem;
  }

  .menu-lista .lista{
    margin: 0 3rem;
  }
}

@media (max-width: 500px) {
  /*SECTION 1*/
  .container-text {
    padding: 0 2rem;
  }

  .container p strong {
    font-size: 1.6rem;
  }

  .container-lista {
    margin-left: 2rem;
  }

  .titulo-price p {
    font-size: 1.4rem;
    margin-left: 1.5rem;
  }

  /*SECTION 2*/
  .container-lista-2 {
    flex-wrap: wrap;
  }

  .content-container img {
    display: none;
  }

  .menu-lista .lista {
    margin: 1rem 1.2rem;
  }

  .titulo-price{
    margin: 2rem;
  }

  .titulo-price::before {
    width: 1.5rem;
    height: 0.5rem;
    top: 1.1rem;
    left: -.5rem;
  }

  .titulo-price::after {
    width: 1.5rem;
    height: 0.5rem;
    bottom: 0.6rem;
    left: 15rem;
  }

  .titulo-price span{
    font-size: 1.4rem;
    padding: .5rem;
  }

  /*SECTION 3*/
  .content-container .title h2 {
    font-size: 1.6rem;
  }
  .container-lista-2{
    margin-left: 2rem;
  }

  .menu-lista .lista{
    margin: 0;
  }

  /*FOOTER*/
  .contato-info {
    display: none;
  }

  .container-information {
    padding: 0;
  }

  .container-content {
    margin: 2rem 0;
  }

  .telefone {
    margin-left: -0.8rem;
  }
}
