/* ─── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #20233a;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(58% 52% at 50% 40%, rgba(255, 255, 255, 0.85) 0%, transparent 58%),
    conic-gradient(from 210deg at 50% 42%, rgba(255, 255, 255, 0) 0deg, rgba(178, 163, 220, 0.07) 70deg, rgba(255, 255, 255, 0) 150deg, rgba(160, 190, 226, 0.08) 230deg, rgba(255, 255, 255, 0) 320deg),
    radial-gradient(120% 110% at 50% 0%, #f3f4f7 0%, #e0e2e9 46%, #cbd0d9 100%);
  background-color: #dcdee6;
  background-attachment: fixed;
}

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

ul {
  list-style: none;
}

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

::selection {
  background: #8b7fd0;
  color: #fff;
}

/* ─── Custom Properties ─────────────────────────────────────── */
:root {
  --purple: #7a6cc4;
  --purple-strong: #8272c8;
  --blue: #6f9fd8;
  --teal: #5cc2b6;
  --teal-strong: #4fc2b2;
  --lilac: #c39ad9;
  --lilac-btn: #b48fd0;
  --pink: #dfa6c6;
  --ink: #1b1e33;
  --text-body: #565b70;
  --text-soft: #4a4f66;
  --text-mute: #454a60;
  --text-dim: #7c8196;
  --tint: #eae7f5;
  --card-tint: #f6f5fc;
  --card-border: rgba(130, 114, 200, 0.14);

  --gradient-accent: linear-gradient(115deg, var(--purple), var(--teal));
  --gradient-title-accent: linear-gradient(115deg, var(--purple) 0%, var(--blue) 50%, var(--teal) 100%);
  --gradient-hero-accent: linear-gradient(115deg, var(--purple-strong) 0%, var(--blue) 32%, var(--teal-strong) 58%, var(--lilac) 82%, var(--pink) 100%);
  --gradient-btn: linear-gradient(115deg, var(--purple-strong) 0%, var(--blue) 34%, var(--teal) 60%, var(--lilac-btn) 100%);
  --gradient-marquee: linear-gradient(90deg, var(--purple), var(--blue), var(--teal), var(--lilac));
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Keyframes ─────────────────────────────────────────────── */
@keyframes holoshift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Shared Components ─────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title em {
  font-style: normal;
  background: var(--gradient-title-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta-btn {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-btn);
  background-size: 200% auto;
  padding: 17px 34px;
  border-radius: 100px;
  box-shadow: 0 10px 28px rgba(120, 111, 200, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.5s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(120, 111, 200, 0.5);
  background-position: right center;
}

.cta-btn--small {
  font-size: 0.75rem;
  padding: 12px 24px;
  box-shadow: 0 6px 20px rgba(120, 111, 200, 0.32);
}

.cta-btn--small:hover {
  box-shadow: 0 10px 28px rgba(120, 111, 200, 0.45);
}

/* ─── TOPBAR ────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 6vw;
  background: rgba(232, 234, 240, 0.65);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(32, 35, 58, 0.08);
}

.topbar__logo {
  height: 24px;
  width: auto;
}

.topbar__date {
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #5a5f72;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8vh 6vw;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(236, 238, 244, 0.97) 0%, rgba(236, 238, 244, 0.9) 32%, rgba(236, 238, 244, 0.55) 52%, rgba(236, 238, 244, 0.12) 74%, rgba(236, 238, 244, 0) 100%);
}

.hero__scrim--soft {
  background: linear-gradient(180deg, rgba(236, 238, 244, 0.4) 0%, transparent 20%, transparent 72%, rgba(223, 226, 233, 0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero__content > * {
  opacity: 0;
  animation: heroUp 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero__content > *:nth-child(3) { animation-delay: 0.32s; }
.hero__content > *:nth-child(4) { animation-delay: 0.44s; }
.hero__content > *:nth-child(5) { animation-delay: 0.56s; }
.hero__content > *:nth-child(6) { animation-delay: 0.68s; }

.hero__date {
  display: none;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 26px;
}

.hero__title {
  font-size: clamp(46px, 6.6vw, 96px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero__title-accent {
  background: var(--gradient-hero-accent);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: holoshift 6s linear infinite alternate;
}

.hero__subtitle {
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--text-soft);
  margin: 26px 0 22px;
  max-width: 36ch;
  line-height: 1.35;
  font-weight: 600;
}

.hero__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ─── MARQUEE ───────────────────────────────────────────────── */
.marquee {
  border-top: 1px solid rgba(32, 35, 58, 0.1);
  border-bottom: 1px solid rgba(32, 35, 58, 0.1);
  overflow: hidden;
  padding: 16px 0;
}

.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee__text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: var(--gradient-marquee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── CONCEITO ──────────────────────────────────────────────── */
.conceito {
  padding: 14vh 6vw;
  background: #fff;
}

.conceito__intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conceito__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 60ch;
  margin: 32px auto 0;
}

.conceito__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 64px auto 0;
}

.conceito__card {
  background: var(--card-tint);
  border: 1px solid var(--card-border);
  box-shadow: 0 14px 40px rgba(40, 44, 70, 0.06);
  border-radius: 20px;
  padding: 34px 30px;
}

.conceito__card-index {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.conceito__card-title {
  font-weight: 700;
  margin: 12px 0 6px;
  color: #20233a;
}

.conceito__card-text {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ─── PRODUTOS ──────────────────────────────────────────────── */
.produtos {
  padding: 14vh 6vw;
  background: var(--tint);
}

.produtos__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 7vh;
}

.produtos__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 52ch;
  margin: 18px auto 0;
}

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

.product-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 16px 44px rgba(40, 44, 70, 0.08);
}

.product-card__title {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.04;
  margin: 8px 0 6px;
}

.product-card__tagline {
  font-size: 1.0625rem;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 22px;
}

.product-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.product-card__list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-mute);
  line-height: 1.5;
}

.product-card__check {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(115deg, var(--purple-strong), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__divider {
  height: 1px;
  background: rgba(32, 35, 58, 0.1);
  margin-bottom: 16px;
}

.product-card__actives-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.product-card__actives-text {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ─── RESULTADO ─────────────────────────────────────────────── */
.resultado {
  padding: 14vh 6vw;
  background: #fff;
}

.resultado__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5vw;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.resultado__media {
  position: relative;
}

.resultado__glow {
  position: absolute;
  inset: -5%;
  background: conic-gradient(from 210deg at 50% 45%, rgba(178, 163, 220, 0.24), rgba(160, 190, 226, 0.22), rgba(120, 205, 196, 0.2), rgba(200, 169, 224, 0.24), rgba(178, 163, 220, 0.24));
  filter: blur(22px);
  border-radius: 26px;
}

.resultado__image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(40, 44, 70, 0.2);
}

.resultado__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-top: 24px;
  max-width: 46ch;
}

/* ─── VIP ───────────────────────────────────────────────────── */
.vip {
  padding: 14vh 6vw;
  background: var(--tint);
}

.vip__panel {
  max-width: 1160px;
  margin: 0 auto;
  background: linear-gradient(135deg, #dfe1ea 0%, #e6e2f0 40%, #dbe8f0 72%, #e2ecec 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 32px;
  padding: 9vh 6vw;
  box-shadow: 0 30px 70px rgba(40, 44, 70, 0.16);
}

.vip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.vip__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 24px 0 34px;
  max-width: 44ch;
}

.vip__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vip__benefit {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 28px rgba(40, 44, 70, 0.06);
}

.vip__benefit-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(115deg, var(--purple-strong), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(120, 111, 200, 0.3);
}

.vip__benefit-text {
  font-size: 0.9375rem;
  color: #2c3048;
  font-weight: 500;
  line-height: 1.4;
}

/* ─── URGÊNCIA / CTA FINAL ──────────────────────────────────── */
.urgencia {
  padding: 14vh 6vw 16vh;
  text-align: center;
  background: #fff;
}

.urgencia__title {
  max-width: 16ch;
  margin: 0 auto;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.02;
}

.urgencia__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 48ch;
  margin: 28px auto 0;
}

.urgencia .cta-btn {
  margin-top: 38px;
  padding: 19px 46px;
  box-shadow: 0 14px 34px rgba(120, 111, 200, 0.4);
}

.urgencia .cta-btn:hover {
  box-shadow: 0 18px 42px rgba(120, 111, 200, 0.52);
}

.urgencia__disclaimer {
  font-size: 0.75rem;
  color: #7a5fc0;
  margin-top: 16px;
  letter-spacing: 0.06em;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(160deg, #d9dce4 0%, #dfe0ea 50%, #dae5ea 100%);
  border-top: 1px solid rgba(32, 35, 58, 0.08);
  padding: 8vh 6vw 6vh;
  color: var(--text-body);
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}

.site-footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 14px;
}

.site-footer__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__info {
  font-size: 0.8125rem;
  line-height: 1.9;
  text-align: right;
}

.site-footer__info-sub {
  margin-top: 8px;
  color: var(--text-dim);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 820px) {
  .topbar__date {
    display: none;
  }

  .hero__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    padding: 10px 18px 10px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(130, 114, 200, 0.28);
    box-shadow: 0 8px 22px rgba(120, 111, 200, 0.14);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5a5f72;
  }

  .hero__date-icon {
    flex-shrink: 0;
    color: var(--purple);
  }

  .hero__date-value {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  .conceito__grid,
  .produtos__grid,
  .vip__grid,
  .resultado__grid {
    grid-template-columns: 1fr;
  }

  .vip__grid {
    gap: 34px;
  }

  .resultado__grid {
    gap: 28px;
  }

  .product-card {
    padding: 30px 24px;
  }

  .hero__scrim {
    background: linear-gradient(180deg, rgba(236, 238, 244, 0.86) 0%, rgba(236, 238, 244, 0.8) 58%, rgba(236, 238, 244, 0.92) 100%);
  }

  .conceito,
  .produtos,
  .resultado,
  .vip {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .urgencia {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .vip__panel {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .site-footer {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .site-footer__inner {
    align-items: flex-start;
  }

  .site-footer__info {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6vh 5vw;
  }

  .conceito,
  .produtos,
  .resultado,
  .vip,
  .urgencia {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .conceito,
  .produtos,
  .resultado,
  .vip {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .urgencia {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .vip__panel {
    padding: 40px 6vw;
    border-radius: 24px;
  }

  .cta-btn {
    padding: 15px 28px;
  }
}
