* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

i {
  color: #FFF;
}

.header-icons {
  display: flex;
  gap: 15px;
  padding: 30px;
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #f2b388;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid #FFF;
  padding: 8px 20px;
  border-radius: 5px;
  color: #FFF;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-button:hover {
  border: 1px solid #e6d9d1;
  background-color: #e6d9d1;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  width: 150px;
  height: 150px;
}

@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 35px;
  }
  .header-logo img {
    width: 160px;
    margin-top: 46px;
  }
  .header-button {
    display: none;
  }
  .header-icons {
    font-size: 5px;
  }
}
.banner-header ul li {
  list-style: none;
}

.banner-header {
  display: flex;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  gap: 26px;
  padding-top: 17px;
  margin-bottom: 24px;
  position: relative;
  z-index: 99;
  align-items: center;
  justify-content: center;
}

.banner-header p {
  font: 500 13px/20px "Montserrat";
  text-align: right;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFF;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 212px;
}

@media screen and (max-width: 768px) {
  .banner-header {
    flex-direction: column;
  }
}
.countdown {
  min-height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-width: 0 1px;
  padding: 0 26px;
  width: 100%;
  max-width: 408px;
}

.countdown ul {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.countdown li {
  font: 800 26px/34px "Montserrat";
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFF;
}

.countdown span {
  font: 800 28px/34px "Montserrat";
  text-align: center;
  letter-spacing: 0.03em;
  color: #FFF;
  display: block;
  width: 100%;
}

.countdown p {
  font: 700 13px/8px "Open Sans";
  text-align: center;
  text-transform: uppercase;
  color: #f2b388;
  margin-left: 4px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .countdown {
    border: none;
    padding: 0;
    max-width: 330px;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}

.bg-home {
  position: relative;
}

.bg-home:before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(255, 248, 244, 0.2), #97afb3), url("/assets/bg-home.jpg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  opacity: 0.9;
}

.hero {
  color: #FFF;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero iframe {
  border-radius: 20px;
  opacity: 1;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 40px;
  margin-bottom: 50px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.button-contact {
  padding: 14px 28px;
  color: #FFF;
  background-color: rgba(242, 179, 136, 0.75);
  border: 0;
  border-radius: 10px;
  box-shadow: 6px 6px 10px rgba(35, 34, 36, 0.5);
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
  .hero iframe {
    width: 350px;
    height: 200px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
.public-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
  color: #FFF;
}

.public-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 300px;
}

.women-target {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 15px;
}

.women {
  height: 220px;
  justify-content: center;
  flex: 1;
  color: #FFF;
  background-color: rgba(242, 179, 136, 0.75);
  border: 1px solid #517a80;
  margin-bottom: 25px;
  text-align: center;
  border-radius: 15px;
  font-size: 24px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.women p {
  padding: 50px;
}

@media screen and (max-width: 700px) {
  .women {
    font-size: 18px;
    align-items: center;
    justify-content: center;
  }
  .women-target {
    flex-direction: column;
    max-width: 500px;
    justify-content: center;
  }
}
@media screen and (max-width: 800px) {
  .women {
    font-size: 16px;
    align-items: center;
    justify-content: center;
  }
}
.women-text {
  font: 700 16px;
  color: #FFF;
}

.public-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
}

.public-button-content {
  width: 230px;
  padding: 20px;
  border-radius: 10px;
  justify-content: center;
  text-align: center;
  color: #FFF;
  background-color: rgba(242, 179, 136, 0.75);
  font-size: 18px;
  font-weight: 800;
  margin: 14px 0;
  box-shadow: 6px 6px 10px rgba(35, 34, 36, 0.5);
}

.public-button:hover {
  animation: scaleButton 0.8s alternate infinite;
}

.bg-cards {
  margin: 0 auto;
  padding: 24px;
}

.cards-title {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
  margin: 3rem 0 1rem 0;
  font-family: "Sora" sans-serif;
  font-size: 24px;
  color: #FFF;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 750px;
  margin: 0 auto;
  grid-gap: 40px;
}

.card {
  background-color: rgba(242, 179, 136, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 40px;
  box-shadow: 6px 6px 10px rgba(35, 34, 36, 0.5);
  color: #FFF;
  border-radius: 20px;
}

.card .user {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.card h3 {
  font-family: "Sora" sans-serif;
  margin-bottom: 5px;
}

.card .p {
  font-family: "Sora" sans-serif;
  font-size: 300 16px;
  margin-top: 20px;
  text-align: center;
}

.stars {
  width: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .cards-title {
    font-size: 20px;
  }
  .cards {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    justify-content: center;
  }
  .stars {
    width: 15px;
  }
}
.containerSubject {
  max-width: 800px;
  padding: 24px 24px;
  margin: 0 auto;
}

.titleSubject h1 {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
  margin: 3rem 0 1rem 0;
  font-family: "Sora" sans-serif;
  font-size: 24px;
  color: #FFF;
}

.contentSubject {
  font-family: "Sora" sans-serif;
  font-size: 500 18px;
  text-align: left;
  color: #FFF;
  border: 1px solid #fff8f4;
  background-color: rgba(242, 179, 136, 0.65);
  max-width: 750px;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 6px 6px 10px rgba(35, 34, 36, 0.5);
}

.contentSubject li {
  text-justify: auto;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .contentSubject li {
    text-justify: auto;
    padding: 5px;
  }
}
.containerQuests {
  padding: 10px;
  padding-bottom: 50px;
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.containerQuests h1 {
  text-transform: uppercase;
  font-family: "Sora" sans-serif;
  font-size: 28px;
  color: #FFF;
  margin-bottom: 20px;
  margin: 3rem 0 0 0;
}

.containerQuests .startQuest {
  position: relative;
  background-color: rgba(255, 248, 244, 0.75);
  padding: 0 20px 20px;
  box-shadow: 0 15px 15px rgba(237, 234, 239, 0.5);
  border-radius: 20px;
}

.containerQuests input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.containerQuests .startQuest label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.containerQuests .startQuest label::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: #232224;
  transition: transform 0.1s;
}

.containerQuests .startQuest input:checked ~ label::after {
  transform: rotate(135deg);
  color: #edeaef;
}

.containerQuests .startQuest label h2 {
  width: 40px;
  height: 40px;
  background-color: #39555a;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 16px;
  margin-right: 18px;
  padding: 10px;
}

.containerQuests .startQuest label h3 {
  position: relative;
  font-weight: 500;
  color: #333333;
  z-index: 10;
}

.containerQuests .startQuest .contentQuest {
  max-height: 0;
  transition: 0.1s;
  overflow: hidden;
}

.containerQuests .startQuest input:checked ~ .contentQuest {
  max-height: 100vh;
}

.containerQuests .startQuest .contentQuest p {
  position: relative;
  padding: 10px 0;
  color: #333333;
  z-index: 10;
}

.containerQuests .startQuest input:checked label h2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: #edeaef;
  font-size: 18px;
}

.containerQuests .startQuest:nth-child(n+2) label h2 {
  background: linear-gradient(145deg, #97afb3, #517a80);
  color: #edeaef;
}

.containerQuests .startQuest input:checked ~ label h2 {
  position: absolute;
  top: 0;
  border: 0;
  right: -20px;
  border-radius: 21px;
  width: 100%;
  height: 100%;
  color: rgba(255, 248, 244, 0.25);
  font-size: 75px;
  justify-content: flex-end;
  padding: 20px;
}

.containerQuests .startQuest input:checked ~ .contentQuest p {
  color: #FFF;
}

.containerQuests .startQuest input:checked ~ label h3 {
  background-color: #edeaef;
  padding: 2px 10px;
  color: #232224;
  border-radius: 21px;
}

@media screen and (max-width: 768px) {
  .containerQuests h1 {
    font-size: 20px;
  }
  .containerQuests .startQuest label h2 {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .containerQuests .startQuest label h3 {
    font-weight: 600;
    font-size: 16px;
  }
  .containerQuests .startQuest input:checked ~ label h3 {
    font-size: 14px;
  }
}
.about {
  background-color: #FFF;
  overflow: hidden;
  color: black;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.about-content img {
  max-width: 570px;
}

.about-content div {
  flex: 1;
}

.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
.about-button {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-content: center;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
}

.about-button-text {
  padding: 14px 28px;
  color: #FFF;
  background-color: rgba(242, 179, 136, 0.75);
  border: 0;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
  box-shadow: 6px 6px 10px rgba(35, 34, 36, 0.5);
}

.about-button:hover {
  animation: scaleButton 0.8s alternate infinite;
}

.promotion {
  background-color: #edeaef;
  padding: 20px;
  margin: 20px auto;
  max-width: 750px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 6px 6px 10px rgba(51, 51, 51, 0.5);
}

.promotion h2 {
  color: #daa17a;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.original-price {
  color: #333333;
  font-size: 18px;
  text-decoration: line-through;
  margin-bottom: 5px;
}

.original-price span {
  font-weight: bold;
}

.discounted-price {
  color: #daa17a;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.discounted-price span {
  font-size: 28px;
}

.note-promotion {
  color: #333333;
  font-size: 10px;
  margin-top: 20px;
  font-style: italic;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 14px;
}

footer p {
  font-size: 14px;
  color: #FFF;
}

.footer-icons {
  display: flex;
  gap: 8px;
  color: #f2b388;
}

.footer-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #f2b388;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.btn-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 74px;
  transition: transform 0.4s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -140px;
  border-radius: 8px;
  text-align: center;
  background-color: #517a80;
  color: #FFF;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .footer p {
    font-size: 11px;
  }
  .btn-whatsapp img {
    max-width: 64x;
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #97afb3;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */