/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #171717;
  background: #ffffff;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* =========================
   VARIÁVEIS
========================= */

:root {
  --rosa: #f7c9d9;
  --rosa-forte: #eaa5bf;
  --roxo: #ded2f1;

  --preto: #171717;
  --cinza: #686868;
  --cinza-claro: #999999;

  --branco: #ffffff;
  --borda: #eee8f1;

  --radius: 20px;
}


/* =========================
   CONTAINER
========================= */

.container {
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
}


/* =========================
   BOTÕES
========================= */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 58px;

  border-radius: 14px;

  font-size: 16px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  max-width: 420px;
  margin: 28px auto 0;

  color: var(--preto);
  background: var(--rosa-forte);

  box-shadow: 0 12px 28px rgba(234, 165, 191, 0.3);
}

.btn-offer {
  color: #ffffff;
  background: var(--rosa-forte);

  box-shadow: 0 12px 28px rgba(234, 165, 191, 0.28);
}

.btn-final {
  max-width: 500px;
  margin: 36px auto 0;

  color: var(--preto);
  background: var(--rosa-forte);

  box-shadow: 0 12px 28px rgba(234, 165, 191, 0.3);
}


/* =========================
   URGÊNCIA
========================= */

.urgency {
  width: 100%;

  padding: 12px 16px;

  text-align: center;

  background: var(--rosa);
  color: var(--preto);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}


/* =========================
   HERO
========================= */

.hero {
  padding: 58px 0 70px;
  text-align: center;
}

.eyebrow {
  display: inline-block;

  margin-bottom: 16px;

  color: #a75c7b;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.hero h1 {
  max-width: 850px;
  margin: 0 auto;

  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.hero h1 strong {
  color: #c66f92;
}

.hero-subtitle {
  max-width: 720px;
  margin: 22px auto 0;

  color: var(--cinza);

  font-size: 16px;
  line-height: 1.7;
}

.hero-image {
  width: min(100%, 720px);
  margin: 34px auto 0;

  overflow: hidden;
  border-radius: 22px;

  background: #f8f8f8;
}

.hero-image img {
  width: 100%;
  height: auto;
}


/* =========================
   TÍTULOS DE SEÇÃO
========================= */

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading > span {
  display: block;

  margin-bottom: 10px;

  color: #a75c7b;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
}

.section-heading p {
  max-width: 650px;
  margin: 14px auto 0;

  color: var(--cinza);

  line-height: 1.6;
}


/* =========================
   CONTEÚDO
========================= */

.content-section {
  padding: 80px 0;

  background: #ffffff;
}

.content-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.content-card {
  min-height: 220px;

  padding: 25px;

  border: 1px solid var(--borda);
  border-radius: var(--radius);

  background: #ffffff;

  box-shadow: 0 8px 30px rgba(30, 20, 40, 0.04);
}

.card-number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  margin-bottom: 22px;

  border-radius: 12px;

  background: var(--rosa);

  color: #8e526c;

  font-size: 13px;
  font-weight: 800;
}

.content-card h3 {
  margin-bottom: 10px;

  font-size: 18px;
  line-height: 1.25;
}

.content-card p {
  color: var(--cinza);

  font-size: 14px;
  line-height: 1.65;
}


/* =========================
   BENEFÍCIOS
========================= */

.benefits-bar {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 35px;

  margin-top: 38px;
  padding: 18px 20px;

  border-radius: 15px;

  background: #faf7fb;

  color: #555;

  font-size: 13px;
  font-weight: 600;
}

.benefits-bar span {
  white-space: nowrap;
}


/* =========================
   AVALIAÇÕES
========================= */

.reviews-section {
  position: relative;

  padding: 80px 0;

  background: var(--roxo);

  overflow: hidden;
}

.reviews-heading {
  position: relative;
  z-index: 5;
}

.reviews-heading > span {
  color: #695a80;
}


/* CARROSSEL */

.reviews-carousel {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding: 5px 0 15px;
}

.review-track {
  display: flex;

  width: max-content;

  animation: reviewMarquee 22s linear infinite;

  will-change: transform;
}

.review-group {
  display: flex;

  flex-shrink: 0;

  gap: 18px;

  padding-right: 18px;
}

.review-card {
  width: 310px;

  flex-shrink: 0;

  overflow: hidden;

  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 12px 30px rgba(50, 30, 70, 0.08);
}

.review-card img {
  width: 100%;
  height: auto;
}


/* VINHETAS LATERAIS */

.fade {
  position: absolute;

  top: 0;
  bottom: 0;

  z-index: 3;

  width: 100px;

  pointer-events: none;
}

.fade-left {
  left: 0;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );
}

.fade-right {
  right: 0;

  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );
}


/* ANIMAÇÃO CONTÍNUA */

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(
      calc(-1 * (310px * 3 + 18px * 3))
    );
  }
}


/* =========================
   OFERTA
========================= */

.offer-section {
  padding: 90px 0;
  background: #ffffff;
}

.offer-top {
  margin-bottom: 18px;

  text-align: center;

  color: #777;

  font-size: 12px;
  font-weight: 600;
}

.offer-card {
  width: min(100%, 570px);

  margin: 0 auto;

  overflow: hidden;

  border-radius: 24px;

  background: var(--roxo);

  box-shadow: 0 18px 60px rgba(30, 20, 40, 0.1);
}

.offer-strip {
  padding: 15px 20px;

  text-align: center;

  background: var(--rosa);

  color: #694355;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.offer-content {
  padding: 34px 30px 32px;

  text-align: center;
}

.offer-content h2 {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 800;
}

.offer-description {
  margin: 14px auto 0;

  color: #65606a;

  font-size: 14px;
  line-height: 1.6;
}

.price {
  margin: 28px 0;
}

.old-price {
  display: block;

  margin-bottom: 5px;

  color: #858089;

  font-size: 14px;
  text-decoration: line-through;
}

.current-price {
  color: var(--preto);

  font-size: 52px;
  line-height: 1;

  font-weight: 800;
  letter-spacing: -2px;
}

.current-price small {
  display: block;

  margin-bottom: 7px;

  color: #777;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0;
}


/* =========================
   TUDO INCLUSO
========================= */

.everything {
  margin-top: 34px;
  margin-bottom: 17px;

  text-align: left;

  font-size: 18px;
  font-weight: 800;
}

.offer-products {
  display: flex;
  flex-direction: column;

  gap: 11px;

  margin: 0;

  padding: 0;

  list-style: none;

  text-align: left;
}

.offer-products li {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  padding: 13px;

  border-radius: 13px;

  background: rgba(255, 255, 255, 0.62);
}

.offer-products li > span {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  width: 25px;
  height: 25px;

  border-radius: 50%;

  background: var(--rosa-forte);

  color: #ffffff;

  font-size: 13px;
  font-weight: 800;
}

.offer-products strong {
  display: block;

  font-size: 14px;
}

.offer-products small {
  display: block;

  margin-top: 2px;

  color: #777;

  font-size: 11px;
}


/* =========================
   INCLUSO
========================= */

.included {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  margin-top: 24px;
  padding-top: 24px;

  border-top: 1px solid rgba(0, 0, 0, 0.08);

  list-style: none;

  text-align: left;
}

.included li {
  display: flex;
  align-items: center;

  gap: 9px;

  color: #555;

  font-size: 12px;
  font-weight: 600;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 23px;
  height: 23px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--rosa);

  color: #704b5a;

  font-size: 12px;
  font-weight: 800;
}


/* =========================
   GARANTIA
========================= */

.guarantee-section {
  padding: 50px 0 85px;

  background: #ffffff;
}

.guarantee-box {
  width: min(100%, 680px);

  margin: 0 auto;

  text-align: center;
}

.guarantee-seal {
  width: 145px;

  margin: 0 auto 22px;
}

.guarantee-box p {
  max-width: 600px;

  margin: 0 auto;

  color: var(--cinza);

  font-size: 14px;
  line-height: 1.7;
}


/* =========================
   FAQ
========================= */

.faq-section {
  padding: 85px 0;

  background: #faf8fb;
}

.faq {
  width: min(100%, 760px);

  margin: 0 auto;
}

.faq details {
  margin-bottom: 10px;

  overflow: hidden;

  border: 1px solid var(--borda);
  border-radius: 14px;

  background: #ffffff;
}

.faq summary {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 19px 21px;

  cursor: pointer;

  list-style: none;

  font-size: 14px;
  font-weight: 600;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";

  color: #a75c7b;

  font-size: 22px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 21px 20px;

  color: var(--cinza);

  font-size: 13px;
  line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

footer {
  padding: 32px 0;

  text-align: center;

  background: #ffffff;

  border-top: 1px solid var(--borda);
}

footer p {
  color: #555;

  font-size: 12px;
  font-weight: 600;
}

footer small {
  display: block;

  margin-top: 6px;

  color: #999;

  font-size: 10px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 850px) {

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .container {
    width: min(100% - 24px, 1100px);
  }

  .urgency {
    font-size: 10px;
    padding: 11px 10px;
  }

  .hero {
    padding: 45px 0 55px;
  }

  .hero h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-image {
    margin-top: 26px;
    border-radius: 16px;
  }

  .btn {
    min-height: 55px;
    font-size: 15px;
  }


  /* CONTEÚDO */

  .content-section {
    padding: 65px 0;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .section-heading p {
    font-size: 13px;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;

    gap: 10px;
  }

  .content-card {
    min-height: 195px;

    padding: 18px;
  }

  .card-number {
    width: 36px;
    height: 36px;

    margin-bottom: 15px;

    font-size: 11px;
  }

  .content-card h3 {
    font-size: 15px;
  }

  .content-card p {
    font-size: 12px;
  }


  /* BENEFÍCIOS */

  .benefits-bar {
    flex-direction: column;

    gap: 9px;

    margin-top: 25px;

    font-size: 11px;
  }

  .benefits-bar span {
    white-space: normal;
  }


  /* AVALIAÇÕES */

  .reviews-section {
    padding: 65px 0;
  }

  .review-card {
    width: 260px;
  }

  .review-group {
    gap: 12px;
    padding-right: 12px;
  }

  .fade {
    width: 55px;
  }

  @keyframes reviewMarquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(
        calc(-1 * (260px * 3 + 12px * 3))
      );
    }
  }


  /* OFERTA */

  .offer-section {
    padding: 70px 0;
  }

  .offer-content {
    padding: 28px 20px;
  }

  .offer-content h2 {
    font-size: 25px;
  }

  .offer-description {
    font-size: 13px;
  }

  .current-price {
    font-size: 47px;
  }

  .everything {
    font-size: 17px;
  }

  .included {
    grid-template-columns: 1fr;
  }


  /* GARANTIA */

  .guarantee-section {
    padding: 35px 0 65px;
  }

  .guarantee-seal {
    width: 125px;
  }

  .guarantee-box p {
    font-size: 13px;
  }


  /* FAQ */

  .faq-section {
    padding: 65px 0;
  }

  .faq summary {
    padding: 17px;

    font-size: 13px;
  }

  .faq details p {
    padding: 0 17px 18px;

    font-size: 12px;
  }

}