* {
  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*/
.lotus-container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 3.4rem auto;
  gap: 4rem;
}

.lotus-container img{
  max-width: 40rem;
  height: auto;
}

.lotus-container .text{
  max-width: 640px;
}

.lotus-container .text strong{
  font-size: 2.4rem;
  font-weight: 700;
  color: #B05574;
}

.lotus-container .text p{
  font-size: 1.6rem;
  line-height: 140%;
  padding: .5rem 0;
}

/*SECTION 2*/
.bg-container{
  background: rgba(252, 197, 215, 0.3)
}

.section-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.section-container .text{
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-container .text h2{
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
}

.section-container .text h2::before{
  content: "";
  position: absolute;
  width: 3rem;
  height: 1rem;
  background: #E7ACC0;
  top: .6rem;
  left: -4rem;
}

.section-container .content{
  display: flex;
  align-items: center;
  justify-content: center;
}

.content img{
  width: 10rem;
  margin-right: 5rem;
}

.content ul li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  padding: .2rem;
  position: relative;
}

.content ul li:nth-child(even) {
  color: #b05574;
}

.content li::before {
  content: "*";
  display: block;
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  left: -1.8rem;
  top: 0.8rem;
}

/*SECTION 3*/
.container-content{
  max-width: 1200px;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2.5rem;
  gap: 3rem;
}

.container-content .content-text{
  max-width: 600px;
  font-size: 1.6rem;
  line-height: 140%;
}

.container-content .content-text p{
  margin-top: 1rem;
}

.recomendation-session{
  border-radius: 10px;
  background: #B05574;
  padding: 2rem;
  color: #fff;
  box-shadow: 2px 2px 5px 0px rgba(125, 60, 82, 0.50);
}

.title-price{
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.title{
  font-size: 1.8rem;
  padding: .5rem;
}

.price{
  margin-left: 1.5rem;
  font-size: 1.2rem;
}

.price strong{
  font-size: 1.8rem;
  font-weight: 500;
}

.content-agendar{
  display: inline-block;
  padding: 1rem;
  margin-left: 3rem;
}

.content-agendar i, .content-agendar a{
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}

/*RECOMENDADO*/

.recomendation-session .title{
  font-size: 2.4rem;
}

.recomendation-session .content-agendar{
  background: #7d3c52;
  border-radius: 10px;
  margin-top: 1rem;
}

.recomendation-session .content-agendar:hover{
  background-color: #E7ACC0;
}

.recomendation-session .inner p{
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  padding: .5rem;
}

.recomendation-session{
  position: relative;
}

.recomendation-session::before{
  content: "Recomendado";
  background: #fff;
  color: #B05574;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  position: absolute;
  border: 2px solid #7d3c52;
  border-radius: 5px;
  padding: .8rem;
  left: 50%;
  transform: translateX(-50%);
  top: -1.6rem
}
/*NORMAL*/

.normal-session{
  border: 1px solid #B05574;
  border-radius: 10px;
  padding: 2rem;
  color: #B05574;
  box-shadow: 2px 2px 5px 0px rgba(125, 60, 82, 0.50);
}

.normal-session .inner p{
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: .5rem;
}

.normal-session .content-agendar{
  border: 2px solid #B05574;
  border-radius: 10px;
  margin-top: 1rem;
}

.normal-session .content-agendar:hover{
  background: #E7ACC0;
}

.normal-session .content-agendar a , .normal-session .content-agendar i{
  color: #b05574;
}

/*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){
  .container-information{
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .lotus-container img{
    max-width: 30rem;
    height: auto;
  }

  .lotus-container .text p{
    font-size: 1.4rem;
  }

  .lotus-container .text{
    margin: 0 2rem;
  }

  /*SECTION 2*/
  .section-container{
    margin: 0 2rem;
  }

  .section-container .text h2{
    font-size: 1.4rem;
  }

  .section-container .text h2::before{
    width: 1.5rem;
    height: 1rem;
    top: .5rem;
    left: -2rem;
  }

  .content img{
    display: none;
  }

  .content ul li {
    font-size: 1.4rem;
  }

  /*SECTION 3*/
  .container-content{
    max-width: 75rem;
    padding: 0;
  }
  .container-content .content-text{
    font-size: 1.4rem;
    margin: 0 2rem;
    max-width: none;
  }
}

@media (max-width: 500px){

  .contato-info{
    display: none;
  }

  .container-information{
    padding: 0;
  }

  .lotus-container img{
    max-width: 20rem;
  }

  .lotus-container .text strong{
    font-size: 2rem;
  }

  .container-content{
    margin: 2rem 0;
  }

  .telefone{
    margin-left: -.8rem;
  }

}
