*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #021b0e;
  color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.page {
  min-height: 100vh;
}

/* Layout base */

.section {
  padding: 3.5rem 1.4rem;
}

.section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section__title {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e3f6dd;
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.section__highlight {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffe9a6;
  background: rgba(255, 214, 102, 0.06);
  border: 1px solid rgba(255, 214, 102, 0.4);
  padding: 0.9rem 1rem;
  border-radius: 14px;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 214, 102, 0.1);
  border: 1px solid rgba(255, 214, 102, 0.45);
  color: #ffe09a;
  margin-bottom: 0.8rem;
}

/* HERO */

.hero {
  padding: 2.8rem 1.4rem 3.2rem;
  background: radial-gradient(circle at top, #0a4b2b 0, #03160c 52%, #020b06 100%);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}

.hero__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #24b067, #37c978);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero__logo-text {
  display: flex;
  flex-direction: column;
}

.hero__logo-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero__logo-sub {
  font-size: 0.7rem;
  color: #c5f5da;
}

.hero__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffe39c;
  margin-bottom: 0.7rem;
}

.hero__title {
  font-size: 1.7rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.hero__subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e2f6e7;
  margin-bottom: 1.4rem;
}

.hero__cta {
  margin-bottom: 0.8rem;
}

.hero__helper {
  font-size: 0.8rem;
  color: #cdeed9;
  margin-bottom: 1.6rem;
}

.hero__bullets {
  display: grid;
  gap: 0.75rem;
}

.hero__bullet {
  border-radius: 16px;
  padding: 0.75rem 0.9rem;
  background: rgba(5, 48, 25, 0.9);
  border: 1px solid rgba(56, 174, 109, 0.6);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.hero__bullet-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fef3c6;
}

.hero__bullet-text {
  font-size: 0.8rem;
  color: #cff5dc;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #ffd666, #ffb926);
  color: #28320a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.65);
}

.btn--full {
  width: 100%;
}

.btn--primary.btn--full {
  background: linear-gradient(135deg, #ffd666, #ffb926);
}

/* VSL */

.section--vsl {
  padding-top: 2.6rem;
}

.vsl {
  display: grid;
  gap: 1.8rem;
  margin-top: 1.6rem;
}

.vsl__video iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.5);
}

.vsl__side {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e5f7eb;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.badge--accent {
  background: rgba(255, 214, 102, 0.16);
  border-color: rgba(255, 214, 102, 0.7);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.checklist li::before {
  content: "✔";
  color: #6ef5ab;
  margin-right: 0.4rem;
}

/* TRUST */

.section--trust {
  background: radial-gradient(circle at top, #0a3f25 0, #02130a 58%);
}

.trust-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.8rem;
}

.trust-card {
  border-radius: 18px;
  padding: 1.1rem 1rem;
  background: linear-gradient(145deg, rgba(2, 35, 18, 0.98), rgba(3, 52, 26, 0.98));
  border: 1px solid rgba(80, 214, 132, 0.55);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);
}

.trust-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.trust-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.trust-card p {
  font-size: 0.86rem;
  color: #dcf5e5;
}

/* STORIES */

.section--stories {
  padding-top: 2.8rem;
}

.stories-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.7rem;
}

.story-card {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #032114, #041e12);
  border: 1px solid rgba(93, 222, 144, 0.6);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

.story-card__image {
  max-height: 260px;
  overflow: hidden;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__body {
  padding: 0.9rem 1rem 1.1rem;
}

.story-card__quote {
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffe39c;
  margin-bottom: 0.5rem;
}

.story-card p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: #e2f7e9;
}

/* OFFER / KITS */

.section--offer {
  padding-top: 3rem;
}

.kits-grid {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.kit-card {
  border-radius: 22px;
  padding: 1.4rem 1.2rem 1.3rem;
  background: radial-gradient(circle at top left, #124323, #03140b 60%);
  border: 1px solid rgba(90, 220, 139, 0.7);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.7);
}

.kit-card--highlight {
  position: relative;
  background: radial-gradient(circle at top, #166232, #041509 60%);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.85);
}

.kit-card__tag {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(255, 214, 102, 0.8);
}

.kit-card__tag--accent {
  background: #ffd666;
  color: #28320a;
}

.kit-card__tag--light {
  background: rgba(255, 214, 102, 0.1);
  color: #ffe39c;
}

.kit-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.kit-card__desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: #e4f8ea;
  margin-bottom: 0.8rem;
}

.kit-card__price-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffe39c;
  margin-bottom: 0.15rem;
}

.kit-card__price-pix {
  font-size: 0.82rem;
  color: #d4f7de;
  margin-bottom: 0.7rem;
}

.kit-card__price-pix span {
  opacity: 0.9;
}

.kit-card__list {
  list-style: none;
  font-size: 0.82rem;
  color: #e7f9ed;
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.kit-card__list li::before {
  content: "•";
  margin-right: 0.35rem;
  color: #ffe39c;
}

/* FAQ */

.section--faq {
  padding-bottom: 3.8rem;
}

.faq {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.9rem;
}

.faq__item {
  border-radius: 14px;
  background: #02160b;
  border: 1px solid rgba(112, 227, 157, 0.7);
  padding: 0.85rem 1rem;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item[open] summary {
  margin-bottom: 0.4rem;
}

.faq__item p {
  font-size: 0.83rem;
  color: #e2f7e9;
  line-height: 1.6;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(72, 199, 127, 0.5);
  padding: 1.6rem 1.4rem 2.2rem;
  background: #010a05;
}

.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.footer__brand {
  font-size: 0.78rem;
  color: #b6e3c7;
  margin-bottom: 0.4rem;
}

.footer__note {
  font-size: 0.7rem;
  color: #8fc39e;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.footer__top {
  font-size: 0.78rem;
  color: #ffe39c;
}

/* DESKTOP */

@media (min-width: 768px) {
  .hero {
    padding: 3.4rem 1.6rem 4rem;
  }

  .hero__content {
    max-width: 960px;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 2.1rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    max-width: 640px;
  }

  .hero__bullets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 4rem 1.8rem;
  }

  .section__title {
    font-size: 1.9rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  .vsl {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }

  .vsl__video iframe {
    aspect-ratio: 16 / 9;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
