@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}
.container,
.boxs {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  width: 1200px;
  margin: auto;
}
.col-6 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bg-black {
  background-color: #000;
  color: #fff;
}
.bg-light {
  background-color: rgba(255, 249, 242, 0.685);
}
.bg-write {
  background-color: #fff;
  color: #000;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}
.title h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}
.title span {
  color: #ffb300;
}
.title h1,
p {
  margin: 20px 0;
}
.btn-action {
  display: inline-block;
  background-color: #25d366;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 20px;
  border-bottom: 5px solid #11642f;
  margin: 20px 0;
}

.btn-action a {
  text-decoration: none;
  color: #fff;
}

.btn-action:hover {
  transform: scale(1.2);
  transition: all 0.3s ease;
}

section {
  padding: 30px 0;
}

.boxs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  margin: 50px 0;
}
.box {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.icon {
  width: 80px;
  height: 80px;
  background-color: #ffb300;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  border-radius: 50px;
}
.icon:hover {
  transform: scale(1.2);
  transition: all 0.3s ease;
}
.subtitle h3 {
  color: #ffb300;
  font-size: 1.5rem;
  margin: 10px 0;
}
.bg-barbeiro {
  color: #fff;
  background-image: url(../img/bg-Barbeiro.jpg);
  background-position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.lista {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 30px 0;
}
.descricao h3 {
  font-size: 1.5rem;
  color: #ffb300;
  margin-bottom: 10px;
}

.descricao ul li {
  margin: 10px 0 0 50px;
}
.bonus-especial {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.bonus {
  text-align: center;
  border: 1px dotted #ffb300;
  margin: 10px;
  padding: 5px;
  width: 30%;
  height: 620px;
  border-radius: 20px;
  background-color: #fffcf6;
}
.bonus .descricao {
  height: 300px;
}
.faq {
  width: 80%;
}
details summary {
  background-color: #ffb300;
  padding: 2%;
}
details p {
  background-color: #c29428;
  padding: 2%;
}

@media (max-width: 1100px) {
  .container {
    width: 100%;
  }
  .boxs .box img {
    width: 150px;
  }
  .container .col-6 iframe {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
  }
  .boxs {
    flex-direction: column;
  }
  .box {
    width: 100%;
  }
  .container .col-6 iframe {
    width: 100%;
  }
  .col-6 {
    width: 100%;
  }
  .lista {
    display: flex;
    flex-direction: column;
  }
  .bonus-especial {
    display: flex;
    flex-direction: column;
  }
  .bonus {
    width: 100%;
  }
  .container iframe {
    width: 100%;
  }
  .col-6 img {
    width: 100%;
  }
  .title {
    text-align: center;
  }
  .title h1 {
    font-size: 2rem;
  }
}
