* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  line-height: 1.6;
  background-color: #fcebf9;
  color: #333;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.container h2 {
  text-align: center;
}

header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-links {
  display: flex;
}

/* TEXTS */
.title-lp, .align-center {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.no-decoration {
  text-decoration: none;
  color: rgb(255, 40, 122) !important;
  padding: 5px;
  font-weight: 600;
}

.testimonial-person {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
}

.align-testimonial {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.stars-testimonial {
  display: flex;
  align-items: center;
}

/* FONTS - SIZES AND WEIGHTS */
.fs-1-2 {
  font-size: 1.2rem !important;
}

.fs-1 {
  font-size: 1.5rem !important;
}

.fs-2 {
  font-size: 2rem !important;
}

.fs-3 {
  font-size: 3rem !important;
}

.small-text {
  font-size: 0.9rem !important;
}

.fw-1 {
  font-weight: 100 !important;
}

.fw-2 {
  font-weight: 200 !important;
}

.fw-3 {
  font-weight: 300 !important;
}

.fw-4 {
  font-weight: 400 !important;
}

.fw-5 {
  font-weight: 500 !important;
}

.fw-6 {
  font-weight: 600 !important;
}

.fw-7 {
  font-weight: 700 !important;
}
.fw-8 {
  font-weight: 800 !important;
}
.fw-9 {
  font-weight: 900 !important;
}


/* ALIGNS */
.mr-1 {
  margin-right: 10px;
}

.mr-2 {
  margin-right: 20px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.p-1 {
  padding: 10px !important;
}

.p-1-5 {
  padding: 15px !important;
}

.p-2 {
  padding: 20px !important;
}

.border-bottom {
  border-bottom: 1px solid #243d5d;
}

/*  */
.cta {
  font-size: 50px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.btn {
  background: linear-gradient(90deg, rgb(255, 83, 111), rgb(137, 24, 243));
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: linear-gradient(90deg, rgb(137, 24, 243), rgb(255, 83, 111));
}

.btn-offer {
  background: rgb(10 173 84);
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-offer:hover {
  background: rgb(38 217 78);
}

.section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.destaque {
  background-color: #ffeeba;
  text-align: center;
}

.garantia {
  background: linear-gradient(90deg, rgb(236, 255, 238), rgb(252, 224, 252));
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cards-30-contents{
  display: flex;
  justify-content: space-around;
}

.cards-collumns {
  flex-direction: column;
}

.card {
  flex: 1 1 30%;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
}

.card-checks {
  display: flex;
}

.card-resumo {
  background: #ffe9e940;
}

.card-offer {
  background: #f8ecfa;
  box-shadow: 0px 0px 10px #f983a9;
}

.card-title {
  display: flex;
}

.card-numbers {
  margin-right: 10px;
  background: rgb(255, 83, 178);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
}

.card-bonus {
  background: linear-gradient(135deg, #fff4fc, #fff3fe);
  box-shadow: 0px 0px 2px #c96576;
}

.card-text {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* BOX */
.bs-pink {
  box-shadow: 0px 0px 10px rgb(255, 201, 218);
}

/* DISPLAY */
.display-flex {
  display: flex;
}

.display-flex-evenly {
  display: flex;
  justify-content: space-evenly;
}

.display-flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-direction-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.text-alert {
  color: #af167c;
  font-weight: bold;
  background: rgb(255, 233, 248);
  font-size: 12px;
  padding: 7px;
  border-radius: 15px;
}

.no-list {
  list-style: none;
  padding: 0
}

/* Tamanhos (aplicados aos cards) */
.w-30 {
  max-width: 30%;
}
.w-35 {
  max-width: 35%;
}
.w-40 {
  max-width: 40%;
}
.w-45 {
  max-width: 45%;
}
.w-50 {
  max-width: 50%;
}
.w-65 {
  max-width: 65%;
}

.w-auto {
  width: auto;
}

.testimonials blockquote {
  background: #e2f0d9;
  border-left: 5px solid #28a745;
  padding: 10px;
  margin-bottom: 10px;
}

.resumo {
  background: linear-gradient(90deg, rgb(255, 83, 111), rgb(137, 24, 243));
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
}

.faq-answer {
  display: none;
  margin-top: 5px;
}

footer {
  background: #00112b;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.copy-footer {
  display: flex;
  flex-direction: column;
  flex-basis: 33%;
  align-items: center;
}

.links-footer {
  display: flex;
  flex-direction: column;
  flex-basis: 33%;
  align-items: center;
}

.contato-footer {
  display: flex;
  flex-direction: column;
  flex-basis: 33%;
  align-items: center;
}

/* COLORS */
.pink-color {
  color: rgb(255, 40, 122) !important;
}

.purple-color {
  color: rgb(137, 24, 243) !important;
}

.yellow-color {
  color: rgb(255, 255, 0) !important;
}

.green-color {
  color: rgb(81, 240, 81) !important;
}

.dark-green-color {
  color: rgb(8, 148, 8) !important;
}

.orange-color {
  color: rgb(255, 165, 0) !important;
}

.white-color {
  color: #fff !important;
}

.dark-gray-color {
  color: rgb(108, 113, 121) !important;
}

/* BACKGROUNDS */
.bg-purple {
  background-color: rgba(251, 219, 255, 0.486) !important;
}

.light-gray-bg {
  background-color: #f8f9fa !important;
}

/* MOBILE */
@media (max-width: 768px) {
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
  }

  .header-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .cards-contents {
    flex-direction: column;
  }

  .cards-30-contents {
    flex-direction: column;
  }
  
  .w-30, .w-35, .w-40, .w-45, .w-50, .w-65 {
    max-width: 100%;
  }

  .btn {
    display: block;
  }

  .display-flex {
    flex-direction: column;
  }

  .display-logo {
    flex-direction: row;
  }

  .section {
    padding: 0;
  }
}