:root {
  --ink: #231a16;
  --ink-soft: #695a52;
  --dark: #17110e;
  --dark-2: #241914;
  --cream: #f7f0e7;
  --paper: #fffaf4;
  --sand: #ead5bd;
  --gold: #c69b6a;
  --line: rgba(44, 30, 24, .12);
  --radius: 30px;
  --shadow: 0 24px 70px rgba(45, 28, 20, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 116px 0; }

h1, h2, h3 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.03;
}
h1 { font-size: clamp(54px, 6.2vw, 92px); }
h2 { font-size: clamp(42px, 4.6vw, 68px); }
h3 { font-size: 25px; }
em { color: var(--sand); font-weight: 500; }
p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}
.eyebrow--dark { color: #9d6b49; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--light {
  color: #241813;
  background: linear-gradient(135deg, #f5dfc6, #e6bd91);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}
.button--dark {
  color: #fff8ef;
  background: var(--dark);
  box-shadow: 0 16px 36px rgba(37, 24, 19, .16);
}
.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(10, 7, 6, .16);
  backdrop-filter: blur(8px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: #6e4532;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: #fff;
}
.header.is-scrolled {
  position: fixed;
  color: var(--ink);
  background: rgba(255, 250, 244, .90);
  border-bottom: 1px solid rgba(52, 36, 28, .08);
  backdrop-filter: blur(16px);
  animation: headerIn .3s ease;
}
@keyframes headerIn { from { transform: translateY(-100%); } }
.header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span { display: grid; gap: 2px; }
.brand strong {
  font-family: "Lora", Georgia, serif;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -.04em;
}
.brand small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  opacity: .72;
}
.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: var(--dark);
  overflow: hidden;
}
.hero__media, .hero__shade { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__shade {
  background:
    linear-gradient(90deg, rgba(15, 9, 7, .96) 0%, rgba(20, 12, 9, .78) 37%, rgba(20, 12, 9, .16) 70%, rgba(20, 12, 9, .08) 100%),
    linear-gradient(0deg, rgba(16, 10, 8, .58), transparent 45%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 80px;
}
.hero__copy { width: min(690px, 60%); }
.hero h1 { margin: 18px 0 24px; }
.hero__lead {
  max-width: 590px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.hero__proof li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, .80);
  font-size: 12px;
}
.hero__proof li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
}
.hero__note {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
}

.privacy-bar {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 30px 0;
  color: #fff;
  background: #201612;
}
.privacy-bar__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.privacy-bar article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 8px 32px;
  border-right: 1px solid rgba(255, 255, 255, .10);
}
.privacy-bar article:first-child { padding-left: 0; }
.privacy-bar article:last-child { border: 0; }
.privacy-bar article > span { color: var(--gold); font-size: 10px; font-weight: 700; }
.privacy-bar strong { font-family: "Lora", Georgia, serif; font-size: 20px; }
.privacy-bar p { margin-top: 4px; color: rgba(255, 255, 255, .60); font-size: 12px; line-height: 1.45; }

.intro { background: var(--paper); }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  gap: 100px;
}
.section-heading h2 { max-width: 700px; margin-top: 18px; }
.section-heading em, .explanation em, .method em, .about em, .faq em, .final-cta em { color: #a97755; }
.intro__content > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.explanation { background: #eee1d2; }
.explanation__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 76px;
}
.diagram {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .65);
  box-shadow: var(--shadow);
}
.diagram img { width: 100%; display: block; border-radius: 20px; }
.diagram figcaption {
  padding: 12px 10px 2px;
  color: #78665c;
  font-size: 10px;
  text-align: center;
}
.explanation__copy h2 { margin: 18px 0 24px; }
.explanation__copy > p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; }
.notice {
  margin: 25px 0;
  padding: 17px 19px;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  color: #59483f;
  background: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.possibilities { background: var(--paper); }
.section-heading--center { max-width: 790px; margin: 0 auto 55px; text-align: center; }
.section-heading--center .eyebrow::before { display: none; }
.section-heading--center h2 { margin: 18px auto; }
.section-heading--center p { color: var(--ink-soft); }
.possibilities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.possibility {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f9f1e8;
  transition: transform .3s ease, box-shadow .3s ease;
}
.possibility:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.possibility > span { color: #a97755; font-size: 11px; font-weight: 700; }
.possibility h3 { margin: 50px 0 13px; }
.possibility p { color: var(--ink-soft); font-size: 13px; }

.video-section { color: #fff; background: var(--dark); }
.video-section__grid {
  display: grid;
  grid-template-columns: .72fr 1.1fr;
  align-items: center;
  gap: 70px;
}
.video-section__copy h2 { margin: 20px 0; color: #fff; }
.video-section__copy p { color: rgba(255, 255, 255, .63); }
.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: #080605;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}
.video-card video { width: 100%; max-height: 620px; display: block; object-fit: contain; background: #000; }

.method { background: var(--cream); }
.method__grid { display: grid; grid-template-columns: .82fr 1fr; gap: 90px; align-items: start; }
.method__heading { position: sticky; top: 125px; }
.method__heading h2 { margin: 18px 0 22px; }
.method__heading > p { max-width: 500px; margin-bottom: 28px; color: var(--ink-soft); }
.method__steps { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.method__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255, 255, 255, .68);
}
.method__steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #81563f;
  background: #f0ddca;
  font-size: 10px;
  font-weight: 700;
}
.method__steps h3 { font-size: 24px; }
.method__steps p { margin-top: 8px; color: var(--ink-soft); font-size: 14px; }

.confidentiality {
  position: relative;
  padding: 130px 0;
  color: #fff;
  background:
    radial-gradient(circle at 75% 30%, rgba(178, 125, 82, .20), transparent 32%),
    linear-gradient(135deg, #17100e, #2b1d17);
}
.confidentiality__inner { max-width: 770px; text-align: center; }
.confidentiality .eyebrow::before { display: none; }
.confidentiality h2 { margin: 20px 0; font-size: clamp(45px, 5vw, 72px); }
.confidentiality p { max-width: 630px; margin: 0 auto 30px; color: rgba(255, 255, 255, .65); }

.about { background: var(--paper); }
.about__grid { display: grid; grid-template-columns: .82fr 1fr; gap: 82px; align-items: center; }
.about__photo {
  position: relative;
  width: min(100%, 480px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__photo > img { width: 100%; aspect-ratio: 4 / 5; display: block; object-fit: cover; object-position: center top; }
.about__badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: rgba(25, 16, 13, .74);
  backdrop-filter: blur(14px);
}
.about__badge strong { color: var(--sand); font-family: "Lora", Georgia, serif; font-size: 25px; }
.about__badge span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.about__copy h2 { margin: 18px 0 24px; }
.about__lead { color: #4e3c34; font-size: 18px; line-height: 1.75; }
.about__copy > p:not(.about__lead) { margin: 20px 0 28px; color: var(--ink-soft); }
.credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.credentials span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #78513d;
  background: #f7ede2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.faq { background: #ecdfd0; }
.faq__grid { display: grid; grid-template-columns: .72fr 1fr; gap: 90px; align-items: start; }
.faq__heading { position: sticky; top: 125px; }
.faq__heading h2 { margin: 18px 0 22px; }
.faq__heading > p { color: var(--ink-soft); }
.faq__list { display: grid; gap: 11px; }
.faq details {
  border: 1px solid rgba(60, 41, 33, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .58);
}
.faq summary {
  position: relative;
  padding: 22px 54px 22px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  color: #8c6048;
  font-size: 25px;
  font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 22px 23px; color: var(--ink-soft); font-size: 14px; }

.final-cta {
  padding: 125px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(188, 136, 89, .18), transparent 35%),
    #17100e;
}
.final-cta__inner { max-width: 850px; text-align: center; }
.final-cta__inner > img { margin-bottom: 20px; }
.final-cta .eyebrow::before { display: none; }
.final-cta h2 { margin: 20px 0; font-size: clamp(48px, 5.3vw, 78px); }
.final-cta p { max-width: 650px; margin: 0 auto 30px; color: rgba(255, 255, 255, .64); }

.footer { padding: 50px 0; color: rgba(255, 255, 255, .74); background: #0f0a08; }
.footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 55px;
}
.brand--footer { color: #f3dfc8; }
.footer p { max-width: 620px; font-size: 10px; line-height: 1.6; }
.footer__links { display: flex; gap: 18px; font-size: 11px; font-weight: 700; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 38px rgba(20, 130, 66, .28);
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 27px; fill: currentColor; }
.mobile-cta { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hero__copy { width: min(690px, 75%); }
  .privacy-bar article { padding: 8px 18px; }
  .intro__grid, .explanation__grid, .video-section__grid, .method__grid, .about__grid, .faq__grid {
    gap: 50px;
  }
  .possibilities__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, 1160px); }
  .section { padding: 76px 0; }
  h1 { font-size: clamp(42px, 12.5vw, 58px); line-height: .99; }
  h2 { font-size: clamp(35px, 9.8vw, 47px); line-height: 1.06; }

  .header__inner { min-height: 70px; gap: 12px; }
  .brand { gap: 8px; }
  .brand img { width: 35px; height: 35px; }
  .brand strong { font-size: 15px; }
  .brand small { display: none; }
  .header__cta { min-height: 38px; padding: 0 14px; font-size: 9px; }

  .hero { min-height: 760px; }
  .hero__media img { object-position: 63% center; }
  .hero__shade {
    background:
      linear-gradient(0deg, rgba(15, 9, 7, .97) 0%, rgba(18, 11, 8, .78) 50%, rgba(18, 11, 8, .20) 100%),
      linear-gradient(90deg, rgba(15, 9, 7, .55), rgba(15, 9, 7, .10));
  }
  .hero__inner { min-height: 760px; align-items: flex-end; padding-top: 100px; padding-bottom: 42px; }
  .hero__copy { width: 100%; }
  .hero .eyebrow {
    padding: 8px 11px;
    border: 1px solid rgba(234, 213, 189, .28);
    border-radius: 999px;
    background: rgba(20, 12, 9, .34);
    backdrop-filter: blur(10px);
    font-size: 8px;
  }
  .hero .eyebrow::before { display: none; }
  .hero h1 { margin: 15px 0 17px; }
  .hero__lead { font-size: 14px; line-height: 1.55; }
  .hero__actions { display: grid; margin-top: 23px; }
  .hero__actions .button { width: 100%; }
  .hero__proof { gap: 8px 16px; margin-top: 22px; }
  .hero__proof li { font-size: 10px; }
  .hero__note { display: none; }

  .privacy-bar { padding: 20px 0; }
  .privacy-bar__grid { grid-template-columns: 1fr; }
  .privacy-bar article {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }
  .privacy-bar article:last-child { border: 0; }

  .intro__grid, .explanation__grid, .video-section__grid, .method__grid, .about__grid, .faq__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .intro__grid, .section-heading, .intro__content, .explanation__copy, .video-section__copy,
  .method__heading, .about__copy, .faq__heading { text-align: center; }
  .eyebrow--dark::before, .video-section .eyebrow::before { display: none; }
  .intro__content > p, .explanation__copy > p, .about__copy > p { font-size: 15px; }
  .text-link { justify-content: center; }

  .explanation__copy { order: -1; }
  .diagram { padding: 8px; border-radius: 22px; }
  .diagram img { border-radius: 16px; }

  .section-heading--center { margin-bottom: 35px; }
  .possibilities__grid { grid-template-columns: 1fr; }
  .possibility { min-height: 0; text-align: center; }
  .possibility h3 { margin-top: 20px; }

  .video-section__grid { gap: 30px; }
  .video-card { border-radius: 22px; }
  .video-card video { max-height: 70vh; }

  .method__heading, .faq__heading { position: static; }
  .method__steps li { grid-template-columns: 42px 1fr; gap: 14px; padding: 20px; text-align: left; }
  .method__steps h3 { font-size: 22px; }

  .confidentiality { padding: 90px 0; }
  .confidentiality h2 { font-size: 41px; }

  .about__photo { width: 100%; max-width: 430px; margin: 0 auto; }
  .about__lead { font-size: 16px; }
  .credentials { justify-content: center; }

  .faq__grid { gap: 30px; }
  .faq summary { text-align: left; font-size: 14px; }
  .faq details p { text-align: left; }

  .final-cta { padding: 90px 0 120px; }
  .final-cta h2 { font-size: 43px; }
  .final-cta .button { width: 100%; }

  .footer { padding: 45px 0 100px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .brand--footer { justify-content: center; }
  .footer__links { justify-content: center; }

  .whatsapp-float { display: none; }
  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 12px 12px 17px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    color: #fff;
    background: rgba(24, 16, 13, .96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .30);
    backdrop-filter: blur(16px);
  }
  .mobile-cta div { display: grid; }
  .mobile-cta small { color: rgba(255, 255, 255, .58); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-cta strong { font-family: "Lora", Georgia, serif; font-size: 15px; font-weight: 500; }
  .mobile-cta a {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    color: #271a14;
    background: #f1d5b4;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* VÍDEO PRINCIPAL NO HERO */
.hero__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 700px) {
  .hero__media video {
    object-position: 63% center;
  }
}

/* HERO COM VSL — PÁGINA DE VENDAS */
.hero--vsl {
  position: relative;
  min-height: auto;
  padding: 130px 0 90px;
  overflow: hidden;
  color: #ffffff;
  background: #17110e;
}

.hero-vsl__background,
.hero-vsl__overlay {
  position: absolute;
  inset: 0;
}

.hero-vsl__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .18;
  filter: blur(2px);
  transform: scale(1.03);
}

.hero-vsl__overlay {
  background:
    radial-gradient(circle at 50% 25%, rgba(170,110,70,.20), transparent 38%),
    linear-gradient(180deg, rgba(16,10,8,.72), #17110e 82%);
}

.hero-vsl__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-vsl__heading {
  max-width: 920px;
}

.hero-vsl__heading .eyebrow::before {
  display: none;
}

.hero-vsl__heading h1 {
  margin: 18px auto 22px;
  max-width: 920px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .98;
}

.hero-vsl__heading p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: 17px;
}

.vsl-wrapper {
  width: min(900px, 100%);
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: #050505;
  box-shadow: 0 30px 90px rgba(0,0,0,.52);
}

.vsl-label {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255,255,255,.72);
  background: #100c0a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vsl-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dcb58e;
  box-shadow: 0 0 0 5px rgba(220,181,142,.10);
}

.vsl-wrapper video {
  width: 100%;
  max-height: 72vh;
  display: block;
  object-fit: contain;
  background: #000000;
}

.hero-vsl__conversion {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 27px;
}

.hero-vsl__conversion .button {
  min-width: 300px;
}

.hero-vsl__conversion p {
  color: rgba(255,255,255,.48);
  font-size: 10px;
}

.hero--vsl .hero__proof {
  justify-content: center;
}

@media (max-width: 700px) {
  .hero--vsl {
    min-height: auto;
    padding: 105px 0 55px;
  }

  .hero-vsl__heading h1 {
    font-size: clamp(39px, 11vw, 52px);
    line-height: 1;
  }

  .hero-vsl__heading p {
    font-size: 14px;
    line-height: 1.55;
  }

  .vsl-wrapper {
    margin-top: 27px;
    border-radius: 19px;
  }

  .vsl-label {
    min-height: 38px;
    font-size: 8px;
  }

  .vsl-wrapper video {
    max-height: 68vh;
  }

  .hero-vsl__conversion,
  .hero-vsl__conversion .button {
    width: 100%;
  }

  .hero--vsl .hero__proof {
    justify-content: center;
  }
}

/* HERO COM VSL — PÁGINA DE VENDAS */
.hero--vsl {
  position: relative;
  min-height: auto;
  padding: 130px 0 90px;
  overflow: hidden;
  color: #ffffff;
  background: #17110e;
}

.hero-vsl__background,
.hero-vsl__overlay {
  position: absolute;
  inset: 0;
}

.hero-vsl__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .18;
  filter: blur(2px);
  transform: scale(1.03);
}

.hero-vsl__overlay {
  background:
    radial-gradient(circle at 50% 25%, rgba(170,110,70,.20), transparent 38%),
    linear-gradient(180deg, rgba(16,10,8,.72), #17110e 82%);
}

.hero-vsl__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-vsl__heading {
  max-width: 920px;
}

.hero-vsl__heading .eyebrow::before {
  display: none;
}

.hero-vsl__heading h1 {
  margin: 18px auto 22px;
  max-width: 920px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .98;
}

.hero-vsl__heading p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: 17px;
}

.vsl-wrapper {
  width: min(900px, 100%);
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: #050505;
  box-shadow: 0 30px 90px rgba(0,0,0,.52);
}

.vsl-label {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255,255,255,.72);
  background: #100c0a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vsl-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dcb58e;
  box-shadow: 0 0 0 5px rgba(220,181,142,.10);
}

.vsl-wrapper video {
  width: 100%;
  max-height: 72vh;
  display: block;
  object-fit: contain;
  background: #000000;
}

.hero-vsl__conversion {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 27px;
}

.hero-vsl__conversion .button {
  min-width: 300px;
}

.hero-vsl__conversion p {
  color: rgba(255,255,255,.48);
  font-size: 10px;
}

.hero--vsl .hero__proof {
  justify-content: center;
}

@media (max-width: 700px) {
  .hero--vsl {
    min-height: auto;
    padding: 105px 0 55px;
  }

  .hero-vsl__heading h1 {
    font-size: clamp(39px, 11vw, 52px);
    line-height: 1;
  }

  .hero-vsl__heading p {
    font-size: 14px;
    line-height: 1.55;
  }

  .vsl-wrapper {
    margin-top: 27px;
    border-radius: 19px;
  }

  .vsl-label {
    min-height: 38px;
    font-size: 8px;
  }

  .vsl-wrapper video {
    max-height: 68vh;
  }

  .hero-vsl__conversion,
  .hero-vsl__conversion .button {
    width: 100%;
  }

  .hero--vsl .hero__proof {
    justify-content: center;
  }
}

/* MOVIMENTO E ATMOSFERA DO HERO VSL */
.hero-vsl__background {
  overflow: hidden;
  animation: heroBackgroundMove 18s ease-in-out infinite alternate;
}

.hero-vsl__background img {
  opacity: .12 !important;
  filter: blur(2px) saturate(.72) !important;
  transform: scale(1.07);
  animation: heroImageZoom 22s ease-in-out infinite alternate;
}

.hero--vsl::before,
.hero--vsl::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.hero--vsl::before {
  top: 18%;
  left: 7%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(224,185,145,.14);
  box-shadow:
    0 0 0 45px rgba(224,185,145,.025),
    0 0 0 90px rgba(224,185,145,.018);
  animation: heroOrbOne 14s ease-in-out infinite alternate;
}

.hero--vsl::after {
  right: 8%;
  bottom: 13%;
  width: 170px;
  height: 170px;
  background: radial-gradient(
    circle,
    rgba(197,145,99,.11),
    rgba(197,145,99,0) 68%
  );
  filter: blur(5px);
  animation: heroOrbTwo 11s ease-in-out infinite alternate;
}

.vsl-wrapper {
  position: relative;
  z-index: 3;
  animation: vslEntrance .9s ease both;
}

.vsl-wrapper::after {
  content: "O vídeo inicia sem som • toque no player para ativar";
  display: block;
  padding: 9px 14px;
  color: rgba(255,255,255,.50);
  background: #0d0908;
  font-size: 9px;
  letter-spacing: .06em;
  text-align: center;
}

@keyframes heroBackgroundMove {
  0%   { transform: translate3d(-1%, 0, 0); }
  100% { transform: translate3d(1%, -1%, 0); }
}

@keyframes heroImageZoom {
  0%   { transform: scale(1.07); }
  100% { transform: scale(1.13); }
}

@keyframes heroOrbOne {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg); opacity: .55; }
  100% { transform: translate3d(45px, 30px, 0) rotate(18deg); opacity: 1; }
}

@keyframes heroOrbTwo {
  0%   { transform: translate3d(0, 0, 0) scale(.9); }
  100% { transform: translate3d(-40px, -35px, 0) scale(1.2); }
}

@keyframes vslEntrance {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .hero-vsl__background img {
    opacity: .10 !important;
  }

  .hero--vsl::before {
    top: 13%;
    left: -85px;
    width: 210px;
    height: 210px;
  }

  .hero--vsl::after {
    right: -50px;
    bottom: 22%;
    width: 140px;
    height: 140px;
  }

  .vsl-wrapper::after {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-vsl__background,
  .hero-vsl__background img,
  .hero--vsl::before,
  .hero--vsl::after,
  .vsl-wrapper {
    animation: none !important;
  }
}

/* VSL ACIMA DA DOBRA — LAYOUT DE VENDAS */
@media (min-width: 701px) {
  .hero--vsl {
    min-height: 100svh !important;
    padding: 108px 0 55px !important;
    display: flex !important;
    align-items: center !important;
  }

  .hero-vsl__inner {
    display: grid !important;
    grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr) !important;
    grid-template-rows: auto auto auto !important;
    align-items: center !important;
    gap: 22px 60px !important;
    text-align: left !important;
  }

  .hero-vsl__heading {
    grid-column: 1 !important;
    grid-row: 1 !important;
    max-width: 520px !important;
  }

  .hero-vsl__heading h1 {
    max-width: 520px !important;
    margin: 14px 0 18px !important;
    font-size: clamp(48px, 4.8vw, 72px) !important;
    line-height: .98 !important;
  }

  .hero-vsl__heading p {
    max-width: 500px !important;
    margin: 0 !important;
    font-size: 15px !important;
  }

  .vsl-wrapper {
    grid-column: 2 !important;
    grid-row: 1 / span 3 !important;
    width: 100% !important;
    max-width: 650px !important;
    margin: 0 !important;
    justify-self: end !important;
  }

  .vsl-wrapper video {
    width: 100% !important;
    max-height: 69vh !important;
    object-fit: contain !important;
  }

  .hero-vsl__conversion {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-items: start !important;
    margin: 0 !important;
  }

  .hero--vsl .hero__proof {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-content: flex-start !important;
    margin: 0 !important;
  }
}

/* BOTÃO VISÍVEL PARA LIBERAR O ÁUDIO */
.vsl-wrapper {
  position: relative !important;
}

.vsl-audio-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  min-height: 66px;
  padding: 10px 22px 10px 12px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: #251712;
  background: rgba(244,216,185,.96);
  box-shadow: 0 20px 55px rgba(0,0,0,.42);
  cursor: pointer;
  backdrop-filter: blur(12px);
  animation: audioButtonPulse 2.2s ease-in-out infinite;
}

.vsl-audio-button__icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #251712;
  font-size: 22px;
  transform: rotate(180deg);
}

.vsl-audio-button > span:last-child {
  display: grid;
  text-align: left;
}

.vsl-audio-button strong {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.vsl-audio-button small {
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .65;
}

.vsl-audio-button.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.88);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

@keyframes audioButtonPulse {
  0%, 100% {
    box-shadow: 0 20px 55px rgba(0,0,0,.42), 0 0 0 0 rgba(241,205,168,.30);
  }
  50% {
    box-shadow: 0 20px 55px rgba(0,0,0,.42), 0 0 0 14px rgba(241,205,168,0);
  }
}

/* MOBILE — VÍDEO VISÍVEL LOGO NO COMEÇO */
@media (max-width: 700px) {
  .hero--vsl {
    min-height: auto !important;
    padding: 82px 0 45px !important;
  }

  .hero-vsl__inner {
    display: grid !important;
    gap: 0 !important;
  }

  .hero-vsl__heading h1 {
    margin: 11px auto 13px !important;
    max-width: 350px !important;
    font-size: clamp(34px, 9.4vw, 43px) !important;
    line-height: 1.01 !important;
  }

  .hero-vsl__heading p {
    max-width: 345px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .vsl-wrapper {
    width: 100% !important;
    margin-top: 19px !important;
  }

  .vsl-label {
    min-height: 32px !important;
  }

  .vsl-wrapper video {
    width: 100% !important;
    max-height: 54vh !important;
    object-fit: contain !important;
  }

  .vsl-wrapper::after {
    display: none !important;
  }

  .vsl-audio-button {
    min-width: 166px;
    min-height: 58px;
    padding: 8px 18px 8px 9px;
  }

  .vsl-audio-button__icon {
    width: 39px;
    height: 39px;
  }

  .hero-vsl__conversion {
    margin-top: 18px !important;
  }

  .hero--vsl .hero__proof {
    margin-top: 16px !important;
  }

  /* A barra aparece somente depois que a pessoa rolar */
  .mobile-cta {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(22px) !important;
    transition: .3s ease !important;
  }

  body.vsl-has-scrolled .mobile-cta {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}

/* VSL VERTICAL 9:16 */
.vsl-wrapper {
  width: min(330px, 100%) !important;
  max-width: 330px !important;
  justify-self: center !important;
  border-radius: 25px !important;
}

.vsl-wrapper video {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 9 / 16 !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #000 !important;
}

.vsl-audio-button {
  top: calc(50% + 18px) !important;
}

/* DESKTOP — PLAYER VERTICAL AO LADO DO TEXTO */
@media (min-width: 701px) {
  .hero-vsl__inner {
    grid-template-columns: minmax(0, 1fr) 370px !important;
    gap: 25px 75px !important;
  }

  .vsl-wrapper {
    grid-column: 2 !important;
    grid-row: 1 / span 3 !important;
    width: 330px !important;
    max-width: 330px !important;
    margin: 0 auto !important;
  }

  .vsl-wrapper video {
    aspect-ratio: 9 / 16 !important;
  }

  .hero--vsl {
    padding-top: 100px !important;
    padding-bottom: 45px !important;
  }
}

/* MOBILE — VÍDEO PRIMEIRO, LOGO ABAIXO DO CABEÇALHO */
@media (max-width: 700px) {
  .hero--vsl {
    min-height: auto !important;
    padding-top: 76px !important;
    padding-bottom: 45px !important;
  }

  .hero-vsl__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .vsl-wrapper {
    order: 1 !important;
    width: min(76vw, 295px) !important;
    max-width: 295px !important;
    margin: 8px auto 0 !important;
    border-radius: 21px !important;
  }

  .vsl-wrapper video {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 9 / 16 !important;
    object-fit: cover !important;
  }

  .vsl-label {
    min-height: 34px !important;
    border-radius: 20px 20px 0 0 !important;
  }

  .hero-vsl__heading {
    order: 2 !important;
    margin-top: 28px !important;
  }

  .hero-vsl__heading .eyebrow {
    display: none !important;
  }

  .hero-vsl__heading h1 {
    max-width: 350px !important;
    margin: 0 auto 14px !important;
    font-size: clamp(35px, 9.5vw, 43px) !important;
  }

  .hero-vsl__heading p {
    max-width: 345px !important;
    font-size: 13px !important;
  }

  .hero-vsl__conversion {
    order: 3 !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .hero--vsl .hero__proof {
    order: 4 !important;
  }

  .vsl-audio-button {
    top: calc(50% + 17px) !important;
  }
}

/* HERO DE VENDAS — TEXTO, VSL HORIZONTAL E COPY */
.hero--vsl {
  min-height: auto !important;
  padding: 115px 0 80px !important;
}

.hero-vsl__inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  text-align: center !important;
}

.vsl-pretitle {
  order: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
  color: #e7c5a3 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
}

.vsl-pretitle span {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #e7c5a3 !important;
  box-shadow: 0 0 0 6px rgba(231,197,163,.10) !important;
}

.vsl-wrapper {
  order: 2 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: min(860px, 100%) !important;
  max-width: 860px !important;
  margin: 0 auto !important;
  border-radius: 25px !important;
  justify-self: auto !important;
}

.vsl-label {
  display: none !important;
}

.vsl-wrapper video {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 16 / 9 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 24px !important;
  background: #000000 !important;
}

.vsl-audio-button {
  top: 50% !important;
}

.hero-vsl__heading {
  order: 3 !important;
  max-width: 900px !important;
  margin-top: 34px !important;
  text-align: center !important;
}

.hero-vsl__heading .eyebrow {
  display: none !important;
}

.hero-vsl__heading h1 {
  max-width: 900px !important;
  margin: 0 auto 18px !important;
  font-size: clamp(48px, 5.5vw, 78px) !important;
  line-height: .99 !important;
}

.hero-vsl__heading p {
  max-width: 680px !important;
  margin: 0 auto !important;
  font-size: 16px !important;
}

.hero-vsl__conversion {
  order: 4 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: auto !important;
  margin-top: 25px !important;
  justify-items: center !important;
}

.hero--vsl .hero__proof {
  order: 5 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  justify-content: center !important;
  margin-top: 22px !important;
}

/* MOBILE */
@media (max-width: 700px) {
  .hero--vsl {
    padding: 82px 0 48px !important;
  }

  .vsl-pretitle {
    margin-bottom: 13px !important;
    font-size: 8px !important;
    letter-spacing: .12em !important;
  }

  .vsl-wrapper {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 18px !important;
  }

  .vsl-wrapper video {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 18px !important;
    object-fit: contain !important;
  }

  .vsl-audio-button {
    min-width: 156px !important;
    min-height: 53px !important;
    top: 50% !important;
  }

  .vsl-audio-button__icon {
    width: 36px !important;
    height: 36px !important;
  }

  .hero-vsl__heading {
    margin-top: 25px !important;
  }

  .hero-vsl__heading h1 {
    max-width: 350px !important;
    margin-bottom: 13px !important;
    font-size: clamp(35px, 9.6vw, 44px) !important;
  }

  .hero-vsl__heading p {
    max-width: 345px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .hero-vsl__conversion {
    width: 100% !important;
    margin-top: 20px !important;
  }

  .hero-vsl__conversion .button {
    width: 100% !important;
    min-width: 0 !important;
  }

  .hero--vsl .hero__proof {
    margin-top: 18px !important;
  }
}

/* ORGANIZAÇÃO FINAL DO HERO VSL */

/* DESKTOP — TEXTO À ESQUERDA E VÍDEO À DIREITA */
@media (min-width: 701px) {
  .hero--vsl {
    min-height: 100svh !important;
    padding: 105px 0 55px !important;
    display: flex !important;
    align-items: center !important;
  }

  .hero-vsl__inner {
    display: grid !important;
    grid-template-columns: minmax(400px, .88fr) minmax(520px, 1.12fr) !important;
    grid-template-rows: auto auto auto auto !important;
    align-items: center !important;
    gap: 17px 65px !important;
    text-align: left !important;
  }

  .vsl-pretitle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    order: initial !important;
    justify-self: start !important;
    margin: 0 !important;
  }

  .hero-vsl__heading {
    grid-column: 1 !important;
    grid-row: 2 !important;
    order: initial !important;
    max-width: 550px !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .hero-vsl__heading h1 {
    max-width: 550px !important;
    margin: 0 0 18px !important;
    font-size: clamp(49px, 4.8vw, 70px) !important;
    line-height: .98 !important;
  }

  .hero-vsl__heading p {
    max-width: 510px !important;
    margin: 0 !important;
    font-size: 15px !important;
  }

  .vsl-wrapper {
    grid-column: 2 !important;
    grid-row: 1 / span 4 !important;
    order: initial !important;
    width: 100% !important;
    max-width: 650px !important;
    margin: 0 !important;
    justify-self: end !important;
  }

  .vsl-wrapper video {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: contain !important;
  }

  .hero-vsl__conversion {
    grid-column: 1 !important;
    grid-row: 3 !important;
    order: initial !important;
    justify-items: start !important;
    margin: 7px 0 0 !important;
  }

  .hero--vsl .hero__proof {
    grid-column: 1 !important;
    grid-row: 4 !important;
    order: initial !important;
    justify-content: flex-start !important;
    margin: 4px 0 0 !important;
  }
}

/* MOBILE — TÍTULO, VÍDEO E RESTANTE DA COPY */
@media (max-width: 700px) {
  .hero--vsl {
    min-height: auto !important;
    padding: 85px 0 48px !important;
  }

  .hero-vsl__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .vsl-pretitle,
  .hero-vsl__heading .eyebrow {
    display: none !important;
  }

  /* Permite colocar o vídeo entre o título e o parágrafo */
  .hero-vsl__heading {
    display: contents !important;
  }

  .hero-vsl__heading h1 {
    order: 1 !important;
    width: 100% !important;
    max-width: 355px !important;
    margin: 0 auto 18px !important;
    font-size: clamp(35px, 9.7vw, 44px) !important;
    line-height: 1.01 !important;
    text-align: center !important;
  }

  .vsl-wrapper {
    order: 2 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    border-radius: 18px !important;
  }

  .vsl-wrapper video {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: contain !important;
    border-radius: 18px !important;
  }

  .hero-vsl__heading p {
    order: 3 !important;
    max-width: 350px !important;
    margin: 20px auto 0 !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 13px !important;
    line-height: 1.52 !important;
    text-align: center !important;
  }

  .hero-vsl__conversion {
    order: 4 !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .hero-vsl__conversion .button {
    width: 100% !important;
  }

  .hero--vsl .hero__proof {
    order: 5 !important;
    justify-content: center !important;
    margin-top: 18px !important;
  }

  .vsl-audio-button {
    top: 50% !important;
  }
}

/* SUBTÍTULO ELEGANTE NO HERO */
.hero-vsl__heading h1 em {
  display: block !important;
  margin-top: 8px !important;
  font-size: .76em !important;
  line-height: 1.06 !important;
  letter-spacing: -.04em !important;
}

@media (max-width: 700px) {
  .hero-vsl__heading h1 {
    max-width: 360px !important;
    font-size: clamp(35px, 9.2vw, 42px) !important;
  }

  .hero-vsl__heading h1 em {
    margin-top: 5px !important;
    font-size: .70em !important;
    line-height: 1.08 !important;
  }
}

/* CTA PREMIUM V2 — destaque de conversão */
.button--light {
  position: relative;
  min-height: 60px;
  padding: 0 32px;
  overflow: hidden;
  border-color: rgba(255,255,255,.42);
  background: linear-gradient(120deg, #f8e4ca 0%, #edbd88 48%, #f8e4ca 100%);
  background-size: 220% 100%;
  color: #21140f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .025em;
  box-shadow: 0 18px 48px rgba(225,166,105,.32), 0 0 0 1px rgba(255,255,255,.16) inset;
  animation: ctaGlow 2.8s ease-in-out infinite;
}

.button--light::after {
  content: "→";
  margin-left: 12px;
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}

.button--light:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 22px 58px rgba(225,166,105,.42), 0 0 0 1px rgba(255,255,255,.22) inset;
}

.button--light:hover::after { transform: translateX(4px); }

@keyframes ctaGlow {
  0%, 100% { background-position: 0 50%; box-shadow: 0 18px 48px rgba(225,166,105,.26), 0 0 0 1px rgba(255,255,255,.16) inset; }
  50% { background-position: 100% 50%; box-shadow: 0 21px 58px rgba(225,166,105,.44), 0 0 0 1px rgba(255,255,255,.22) inset; }
}

@media (max-width: 700px) {
  .hero-vsl__conversion .button--light,
  .final-cta .button--light {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    font-size: 12px;
  }

  .mobile-cta a {
    min-height: 50px;
    padding: 0 17px;
    background: linear-gradient(135deg, #f8dfbf, #edb879);
    color: #21140f;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(231,173,111,.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button--light { animation: none !important; }
}
/* LANDING PAGE — HARMONIZAÇÃO ABDOMINAL */
.hero--abdomen .hero__media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  filter: saturate(.82) contrast(1.04); transform: scale(1.04);
}
.hero--abdomen .hero__media { opacity: .72; }
.hero--abdomen .hero__shade {
  background:
    linear-gradient(90deg, rgba(15,9,7,.97) 0%, rgba(20,12,9,.84) 38%, rgba(20,12,9,.26) 72%, rgba(20,12,9,.16) 100%),
    linear-gradient(0deg, rgba(16,10,8,.62), transparent 48%);
}
.hero--abdomen h1 em { display: block; color: #edcba8; font-size: .86em; }
.result-video {
  position: relative; padding: 100px 0; overflow: hidden; color: #fff8ef;
  background: radial-gradient(circle at 15% 15%, rgba(204,151,104,.16), transparent 32%), linear-gradient(135deg, #17100d, #291a14);
}
.result-video::before {
  content: ""; position: absolute; width: 420px; height: 420px; right: -180px; top: -190px;
  border: 1px solid rgba(237,203,168,.12); border-radius: 50%;
}
.result-video__grid {
  position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,390px);
  align-items: center; gap: clamp(60px,9vw,130px);
}
.result-video__copy { max-width: 650px; }
.result-video__copy .eyebrow { color: #edcba8; }
.result-video__copy h2 { margin: 18px 0 22px; color: #fff; }
.result-video__copy h2 em { color: #edcba8; }
.result-video__copy p { max-width: 580px; margin: 0 0 30px; color: rgba(255,248,239,.68); font-size: 17px; }
.result-video__frame {
  position: relative; padding: 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 32px;
  background: rgba(255,255,255,.055); box-shadow: 0 34px 90px rgba(0,0,0,.36); backdrop-filter: blur(16px);
}
.result-video__frame video {
  width: 100%; aspect-ratio: 9 / 16; display: block; object-fit: cover; border-radius: 22px; background: #090605;
}
.result-video__label {
  position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 63px; display: flex;
  align-items: end; justify-content: space-between; gap: 16px; pointer-events: none;
  text-shadow: 0 3px 18px rgba(0,0,0,.7);
}
.result-video__label span {
  font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #edcba8;
}
.result-video__label strong {
  max-width: 180px; text-align: right; font-family: "Lora", Georgia, serif; font-size: 18px; font-weight: 500;
}
.result-video__frame > p { margin: 12px 8px 2px; color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.45; text-align: center; }
@media (max-width: 700px) {
  .hero--abdomen, .hero--abdomen .hero__inner { min-height: 720px; }
  .hero--abdomen .hero__media { opacity: .60; }
  .hero--abdomen .hero__media video { object-position: center; transform: scale(1.02); }
  .hero--abdomen .hero__shade {
    background: linear-gradient(0deg, rgba(15,9,7,.98) 0%, rgba(18,11,8,.78) 54%, rgba(18,11,8,.24) 100%), linear-gradient(90deg, rgba(15,9,7,.42), rgba(15,9,7,.10));
  }
  .hero--abdomen h1 { font-size: clamp(39px,11.2vw,51px); }
  .hero--abdomen h1 em { font-size: .80em; }
  .result-video { padding: 76px 0; }
  .result-video__grid { grid-template-columns: 1fr; gap: 38px; }
  .result-video__copy { text-align: center; }
  .result-video__copy .eyebrow::before { display: none; }
  .result-video__copy p { margin-left: auto; margin-right: auto; font-size: 15px; }
  .result-video__copy .button { width: 100%; }
  .result-video__frame { width: min(100%,390px); margin: 0 auto; border-radius: 26px; }
  .result-video__frame video { max-height: 72vh; object-fit: contain; border-radius: 18px; }
}
/* VSL ABDOMINAL — VÍDEO DE FUNDO */
.hero--abdomen-vsl .hero-vsl__background video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: .24;
  filter: saturate(.68) contrast(1.08);
  transform: scale(1.05);
  animation: abdomenVslDrift 14s ease-in-out infinite alternate;
}

.hero--abdomen-vsl .hero-vsl__overlay {
  background:
    radial-gradient(circle at 78% 35%, rgba(191,130,84,.12), transparent 35%),
    linear-gradient(90deg, rgba(18,10,8,.96), rgba(27,16,12,.84) 45%, rgba(17,10,8,.78));
}

@keyframes abdomenVslDrift {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to { transform: scale(1.10) translate3d(-1.2%,1%,0); }
}

@media (min-width: 701px) {
  .hero--abdomen-vsl .hero-vsl__heading h1 {
    font-size: clamp(46px,4.35vw,65px) !important;
  }
}

@media (max-width: 700px) {
  .hero--abdomen-vsl .hero-vsl__background video {
    opacity: .18;
    object-position: center top;
  }

  .hero--abdomen-vsl .hero-vsl__heading h1 {
    font-size: clamp(34px,9.1vw,42px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--abdomen-vsl .hero-vsl__background video { animation: none !important; }
}
/* COMPACTAÇÃO FINAL — ritmo de landing page */
@media (min-width: 701px) {
  .section { padding: 86px 0; }
  .hero--abdomen-vsl { padding: 100px 0 62px !important; }
  .privacy-bar { padding: 22px 0; }
  .intro__grid { gap: 58px; }
  .section-heading--center { margin-bottom: 38px; }
  .possibility { min-height: 218px; }
  .method__grid, .faq__grid { gap: 60px; }
  .about__grid { gap: 58px; }
  .final-cta { padding: 88px 0; }
}

@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .hero--abdomen-vsl { padding: 78px 0 38px !important; }
  .privacy-bar { padding: 14px 0; }
  .intro__grid, .method__grid, .about__grid, .faq__grid { gap: 28px; }
  .section-heading--center { margin-bottom: 30px; }
  .possibilities__grid, .method__steps, .faq__list { gap: 13px; }
  .possibility { min-height: 0; padding: 23px; }
  .final-cta { padding: 70px 0 104px; }
}
/* LANDING PAGE — PEELING FACIAL */
.hero--peeling-vsl .hero-vsl__background video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: .20;
  filter: saturate(.72) contrast(1.06) sepia(.08);
  transform: scale(1.04);
  animation: peelingVslDrift 16s ease-in-out infinite alternate;
}

.hero--peeling-vsl .hero-vsl__overlay {
  background:
    radial-gradient(circle at 76% 30%, rgba(205,151,128,.14), transparent 34%),
    linear-gradient(90deg, rgba(18,10,8,.97), rgba(34,20,16,.86) 48%, rgba(18,10,8,.80));
}

.hero--peeling-vsl .eyebrow,
.hero--peeling-vsl .vsl-pretitle,
.hero--peeling-vsl .vsl-label {
  color: #f0cdb9;
}

.hero--peeling-vsl .hero-vsl__heading h1 em {
  color: #efc5ad;
}

@keyframes peelingVslDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.09) translate3d(-1%,.7%,0); }
}

@media (min-width: 701px) {
  .hero--peeling-vsl .hero-vsl__heading h1 {
    font-size: clamp(45px,4.2vw,64px) !important;
  }

  .hero--peeling-vsl .vsl-wrapper {
    max-width: 650px;
  }
}

@media (max-width: 700px) {
  .hero--peeling-vsl .hero-vsl__background video {
    opacity: .14;
    object-position: center;
  }

  .hero--peeling-vsl .hero-vsl__heading h1 {
    font-size: clamp(33px,8.9vw,41px) !important;
  }

  .hero--peeling-vsl .hero-vsl__heading p {
    max-width: 34rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--peeling-vsl .hero-vsl__background video { animation: none !important; }
}