:root {
  --bg: #050403;
  --paper: #f7f1e4;
  --ink: #11100d;
  --muted: #d8c9a6;
  --dark: #030303;
  --accent: #a98b3a;
  --accent-light: #c8a43c;
  --accent-dark: #7b5f24;
  --line: rgba(200, 164, 60, 0.32);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  --section-pad: 144px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.06);
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent-dark) 100%);
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.18);
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d7b44a 0%, #8d6c25 100%);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

@keyframes fade-up-soft {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in-soft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes rise-in-soft {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pop-in-soft {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1520px, calc(100% - 28px));
  margin: 0 auto;
}

.section-light {
  background: #000;
  color: var(--paper);
}

.section-dark {
  background:
    linear-gradient(180deg, #000 0%, #060503 55%, #000 100%);
  color: var(--paper);
}

.brand-mark {
  margin: 0 0 22px;
  font-family: Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.92;
  color: var(--accent-light);
}

.section-dark .brand-mark {
  color: var(--accent-light);
}

.hero {
  min-height: 580px;
  padding: var(--section-pad) 0 0;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid,
.training-grid,
.offer-wrap,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 24px;
}

.hero-copy {
  text-align: left;
  width: 100%;
  max-width: 700px;
  justify-self: start;
  padding: 0 0 42px 28px;
  margin-bottom: 18px;
}

.hero-grid {
  align-items: end;
}

.hero-brand-logo {
  display: block;
  width: min(100%, 520px);
  margin: 0 0 16px;
  animation: fade-up-soft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  max-width: 18ch;
  margin: 0 0 12px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  animation: fade-up-soft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.hero-lead,
.hero-note {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0;
  animation: fade-up-soft 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-note {
  margin-top: 12px;
  margin-bottom: 22px;
  animation-delay: 0.22s;
}

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d6a528 0%, #ffd86a 100%);
  color: #090703;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(255, 235, 176, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 34px rgba(200, 164, 60, 0.24);
  gap: 10px;
  animation: pop-in-soft 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero .button {
  width: min(100%, 360px);
}

.button-icon {
  font-size: 0.95em;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 430px;
  padding-inline: 10px 0;
}

.hero-pamela-visual {
  isolation: isolate;
  display: grid;
  place-items: end center;
  min-height: 650px;
  overflow: visible;
}

.hero {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.72) 0%, rgba(5, 4, 3, 0.28) 100%),
    url("fotos/fundoHero.png") center center / cover no-repeat;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-pamela {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(580px, 94%);
  max-height: 700px;
  margin-bottom: -24px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(200, 164, 60, 0.55)) drop-shadow(0 0 48px rgba(200, 164, 60, 0.34)) drop-shadow(0 0 86px rgba(200, 164, 60, 0.18)) drop-shadow(0 24px 44px rgba(0, 0, 0, 0.62));
  animation: rise-in-soft 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.training-copy {
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-bottom: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 248, 226, 0.06) 0%, rgba(255, 248, 226, 0.02) 100%);
  border: 1px solid rgba(255, 230, 176, 0.14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.training-copy,
.offer-card,
.footer-copy,
figure,
.benefit,
.guarantee-card {
  position: relative;
  overflow: hidden;
}

.training-copy::after,
.offer-card::after,
.footer-copy::after,
figure::after,
.benefit::after,
.guarantee-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 191, 82, 0.12) 0%, rgba(232, 191, 82, 0.9) 18%, rgba(232, 191, 82, 0.9) 82%, rgba(232, 191, 82, 0.12) 100%);
  pointer-events: none;
}

.portrait {
  position: absolute;
  top: 8px;
  right: 18px;
  width: 210px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.device {
  position: absolute;
  overflow: hidden;
  border: 10px solid #111;
  background: #111;
  outline: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.laptop {
  left: 18px;
  bottom: 40px;
  width: min(520px, 82%);
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.laptop::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -17px;
  height: 14px;
  border-radius: 0 0 20px 20px;
  background: #1d1608;
}

.tablet {
  left: 0;
  top: 0;
  width: 190px;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  transform: rotate(-8deg);
}

.training {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.training-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.training::before,
.training::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.training::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 176, 70, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 9% 48%, rgba(214, 176, 70, 0.18) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 18% 34%, rgba(214, 176, 70, 0.16) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 28% 12%, rgba(214, 176, 70, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 36% 30%, rgba(214, 176, 70, 0.16) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 44% 16%, rgba(214, 176, 70, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 14%, rgba(214, 176, 70, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 28%, rgba(214, 176, 70, 0.16) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 64% 24%, rgba(214, 176, 70, 0.18) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 74% 38%, rgba(214, 176, 70, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 82%, rgba(214, 176, 70, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 24% 74%, rgba(214, 176, 70, 0.14) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 42% 78%, rgba(214, 176, 70, 0.16) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 86% 68%, rgba(214, 176, 70, 0.16) 0 1.5px, transparent 2.5px);
  opacity: 0.9;
}

.training::after {
  background:
    radial-gradient(circle at 24% 44%, rgba(169, 139, 58, 0.18) 0%, transparent 20%),
    radial-gradient(circle at 78% 62%, rgba(169, 139, 58, 0.12) 0%, transparent 22%);
  filter: blur(18px);
}

.mockup-stack {
  display: grid;
  place-items: center;
  min-height: 350px;
  width: 100%;
  margin-inline: auto;
  justify-self: center;
}

.mockup-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 232, 182, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  z-index: 1;
  animation: rise-in-soft 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent-light);
  font-weight: 900;
  text-transform: uppercase;
  animation: fade-up-soft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.training h2,
.proof h2,
.offer-card h2,
.footer h2 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 30px;
}

.benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff9ee 0%, #f6ecd9 100%);
  color: var(--ink);
  border: 1px solid rgba(200, 164, 60, 0.24);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.benefit p {
  margin: 0;
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1.28;
}

.benefit-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #f3cb54 0%, #d6a528 100%);
  color: #090703;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.proof {
  padding: var(--section-pad) 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.14) 12%, rgba(0, 0, 0, 0) 28%),
    linear-gradient(180deg, #cfad4d 0%, #b28a25 100%);
  color: #080602;
}

.proof h2 {
  max-width: 34ch;
  margin: 0 auto 34px;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

figure {
  margin: 0;
  margin-bottom: 18px;
  padding: 12px 12px 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 248, 229, 0.85) 0%, rgba(255, 241, 206, 0.68) 100%);
  border: 1px solid rgba(120, 81, 18, 0.18);
  box-shadow: 0 22px 42px rgba(92, 62, 14, 0.16);
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
}

figcaption {
  max-width: 100%;
  margin: 14px auto 0;
  color: #171109;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.28;
}

.offer {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #040302 0%, #000 55%, #050403 100%);
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(214, 176, 70, 0.24) 0 1.6px, transparent 2.8px),
    radial-gradient(circle at 21% 68%, rgba(214, 176, 70, 0.18) 0 1.4px, transparent 2.6px),
    radial-gradient(circle at 36% 16%, rgba(214, 176, 70, 0.2) 0 1.6px, transparent 2.8px),
    radial-gradient(circle at 48% 52%, rgba(214, 176, 70, 0.16) 0 1.3px, transparent 2.4px),
    radial-gradient(circle at 63% 24%, rgba(214, 176, 70, 0.22) 0 1.6px, transparent 2.8px),
    radial-gradient(circle at 74% 74%, rgba(214, 176, 70, 0.16) 0 1.3px, transparent 2.4px),
    radial-gradient(circle at 88% 30%, rgba(214, 176, 70, 0.22) 0 1.5px, transparent 2.6px),
    radial-gradient(circle at 82% 58%, rgba(214, 176, 70, 0.18) 0 1.4px, transparent 2.6px);
  pointer-events: none;
  opacity: 0.75;
}

.offer .wrap {
  position: relative;
  z-index: 1;
}

.offer-wrap {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  justify-items: center;
  align-items: center;
  min-height: 760px;
}

.product-cluster {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-cluster::before {
  content: "";
  position: absolute;
  left: 38%;
  top: 50%;
  width: min(120%, 620px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 176, 70, 0.42) 0%, rgba(200, 164, 60, 0.24) 32%, rgba(169, 139, 58, 0.12) 54%, transparent 76%);
  filter: blur(18px);
  pointer-events: none;
}

.cover {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
}

.sample {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 46%;
  border-radius: 8px;
  transform: rotate(5deg);
  box-shadow: var(--shadow);
}

.offer-card {
  width: 100%;
  padding: 20px 24px 28px;
  margin-bottom: 18px;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 246, 223, 0.16) 0%, rgba(255, 246, 223, 0.04) 100%),
    linear-gradient(180deg, #d3ad4c 0%, #b88717 100%);
  color: var(--ink);
  text-align: center;
  border: 1px solid rgba(255, 240, 192, 0.48);
  box-shadow: 0 24px 56px rgba(123, 95, 36, 0.3);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0 auto 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #11100d;
  color: #fff5d8;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-logo {
  display: block;
  width: min(100%, 360px);
  margin: 0 auto 18px;
  filter: brightness(0);
}

.offer-price-box {
  margin: 0 0 22px;
  padding: 18px 16px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 251, 240, 0.7) 0%, rgba(255, 244, 210, 0.48) 100%);
  border: 1px solid rgba(255, 248, 226, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.offer-price-old {
  color: #7a5516;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 900;
  text-decoration: line-through;
  opacity: 0.85;
}

.offer-price-oldline {
  margin: 0 0 14px;
  color: #6c4b12;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-installments {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  margin: 0 0 12px;
}

.offer-installments-times {
  color: #11100d;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 0.95;
  text-align: right;
}

.offer-installments-value {
  color: #11100d;
  font-size: clamp(4rem, 6.6vw, 5.3rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.offer-price-cash {
  margin: 0;
  color: rgba(17, 16, 13, 0.82);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-card .button {
  background: linear-gradient(180deg, #e15656 0%, #c93f3f 100%);
  color: #fff;
  min-height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255, 221, 221, 0.28);
  box-shadow: 0 16px 34px rgba(131, 28, 28, 0.28);
}

.offer-support-copy {
  margin: 14px 0 0;
  color: rgba(17, 16, 13, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.24;
}

.offer-card ul {
  margin: 0;
  padding: 0;
}

.button-wide {
  width: 100%;
  padding-inline: 18px;
}

.checkout-safe {
  display: block;
  width: min(100%, 380px);
  margin: 18px auto 0;
  filter: brightness(0) invert(1);
}

.guarantee {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #070603 0%, #000 100%);
  border-top: 1px solid rgba(200, 164, 60, 0.18);
  border-bottom: 1px solid rgba(200, 164, 60, 0.18);
}

.guarantee-wrap {
  display: block;
}

.guarantee-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  align-items: center;
  gap: 20px;
  padding: 22px;
  margin-bottom: 18px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 248, 226, 0.06) 0%, rgba(255, 248, 226, 0.02) 100%);
  border: 1px solid rgba(255, 230, 176, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.guarantee-copy h2 {
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.guarantee-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.34;
  font-weight: 700;
}

.guarantee-visual {
  display: grid;
  place-items: center;
}

.guarantee-image {
  width: min(100%, 280px);
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.28));
}

.faq {
  padding: var(--section-pad) 0;
}

.faq-wrap {
  max-width: 980px;
  margin-inline: auto;
}

.faq-wrap h2 {
  margin: 0 0 22px;
  font-family: Inter, sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 980px;
  margin: 0;
}

.faq-item {
  width: 100%;
  padding: 18px 18px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 248, 226, 0.06) 0%, rgba(255, 248, 226, 0.02) 100%);
  border: 1px solid rgba(255, 230, 176, 0.14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.faq-item::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 191, 82, 0.12) 0%, rgba(232, 191, 82, 0.9) 18%, rgba(232, 191, 82, 0.9) 82%, rgba(232, 191, 82, 0.12) 100%);
  pointer-events: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--paper);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-light);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding-top: 12px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-family: Raleway, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0;
}

.footer {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.footer .brand-mark {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.footer h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.footer-logo {
  width: min(320px, 88%);
  max-height: 460px;
}

.footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.3;
}

.footer-copy {
  display: grid;
  gap: 8px;
  padding: 20px;
  margin-bottom: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 248, 226, 0.04) 0%, rgba(255, 248, 226, 0.02) 100%);
  border: 1px solid rgba(255, 230, 176, 0.1);
}

.footer-company {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 164, 60, 0.22);
}

.footer-company-name,
.footer-company-brand,
.footer-company-doc,
.footer-copyright {
  margin: 0;
}

.footer-company-name {
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-company-brand {
  color: var(--paper);
  font-weight: 800;
}

.footer-company-doc,
.footer-copyright {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-bottom-line {
  margin-top: 14px;
  border-top: 1px solid rgba(200, 164, 60, 0.3);
}

h2.display-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  animation: fade-up-soft 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero-lead {
  animation-delay: 0.16s;
}

.training-copy,
.offer-card,
.guarantee-card,
.footer-copy {
  animation: rise-in-soft 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.training-copy {
  animation-delay: 0.28s;
}

.offer-card {
  animation-delay: 0.32s;
}

.guarantee-card {
  animation-delay: 0.26s;
}

.footer-copy {
  animation-delay: 0.22s;
}

.benefit,
figure,
.faq-item {
  animation: fade-up-soft 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.benefit:nth-child(1),
.proof-grid figure:nth-child(1),
.faq-item:nth-child(1) {
  animation-delay: 0.24s;
}

.benefit:nth-child(2),
.proof-grid figure:nth-child(2),
.faq-item:nth-child(2) {
  animation-delay: 0.34s;
}

.benefit:nth-child(3),
.proof-grid figure:nth-child(3),
.faq-item:nth-child(3) {
  animation-delay: 0.44s;
}

.benefit:nth-child(4),
.faq-item:nth-child(4) {
  animation-delay: 0.54s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.64s;
}

.offer-badge,
.offer-logo,
.offer-price-box,
.offer-support-copy,
.checkout-safe,
.guarantee-image,
.footer-logo,
.footer-company {
  animation: fade-up-soft 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.offer-badge {
  animation-delay: 0.18s;
}

.offer-logo {
  animation-delay: 0.26s;
}

.offer-price-box {
  animation-delay: 0.36s;
}

.offer-support-copy {
  animation-delay: 0.5s;
}

.checkout-safe {
  animation-delay: 0.6s;
}

.guarantee-image {
  animation-delay: 0.38s;
}

.footer-logo {
  animation-delay: 0.16s;
}

.footer-company {
  animation-delay: 0.34s;
}

.guarantee-copy p,
.faq-answer p,
.footer p {
  animation: fade-in-soft 1s ease 0.28s both;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  animation: none !important;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-reveal[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

.scroll-reveal[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

.scroll-reveal[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

.scroll-reveal[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}

.scroll-reveal[data-reveal-delay="5"] {
  transition-delay: 0.4s;
}

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

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 108px;
  }

  .hero-grid,
  .training-grid,
  .offer-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.72) 0%, rgba(5, 4, 3, 0.34) 100%),
      url("fotos/fundoHero.png") center center / cover no-repeat;
  }

  .hero-visual,
  .mockup-stack,
  .product-cluster {
    min-height: 360px;
  }

  .hero-pamela-visual {
    position: relative;
    min-height: 560px;
    overflow: visible;
  }

  .hero-pamela {
    width: min(520px, 88%);
    max-height: 560px;
    margin-bottom: -18px;
  }

  .hero-visual {
    order: 0;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-list {
    max-width: 720px;
    margin: 0 auto;
  }

  .offer-card {
    margin: 0 auto;
  }

  .offer-wrap {
    min-height: auto;
  }

  .offer-card {
    min-height: auto;
  }

  .footer-copy {
    text-align: center;
  }

  .training-grid,
  .offer-wrap {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 20px);
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.62) 0%, rgba(5, 4, 3, 0.28) 100%),
      url("fotos/fundoHeroCelular.png") center bottom / cover no-repeat;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-brand-logo,
  .hero h1,
  .hero-lead,
  .hero-note {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-brand-logo {
    margin-bottom: 14px;
    width: min(100%, 420px);
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 11vw, 2.75rem);
    line-height: 1.05;
  }

  h2.display-title {
    font-size: clamp(2rem, 11vw, 2.75rem);
    line-height: 1.05;
  }

  .hero-lead,
  .hero-note {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .hero-visual {
    min-height: 292px;
  }

  .hero-pamela-visual {
    min-height: 454px;
  }

  .hero-pamela {
    width: min(356px, 88%);
    max-height: 430px;
  }

  .portrait {
    width: 118px;
    right: 0;
  }

  .tablet {
    width: 112px;
  }

  .laptop {
    left: 6px;
    bottom: 20px;
    width: 86%;
    border-width: 7px;
  }

  .mockup-stack,
  .product-cluster {
    min-height: 292px;
  }

  .training h2,
  .proof h2,
  .offer-card h2 {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .benefit-list {
    gap: 12px;
    margin-top: 12px;
  }

  .benefit {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 14px 12px;
  }

  .benefit p,
  .offer-card ul {
    font-size: 0.95rem;
  }

  .benefit-icon {
    width: 34px;
    height: 34px;
  }

  .cover {
    width: min(100%, 420px);
  }

  .sample {
    right: 0;
    bottom: 22px;
    width: 50%;
  }

  .offer-card {
    padding: 20px 14px 22px;
  }

  .guarantee-card {
    padding: 18px 14px 22px;
    gap: 14px;
  }

  .guarantee-image {
    width: min(100%, 220px);
  }

  .offer-card .brand-mark {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

}

@media (max-width: 360px) {
  :root {
    --section-pad: 84px;
  }
  .wrap {
    width: calc(100% - 20px);
  }

  .hero-visual {
    min-height: 270px;
  }

  .hero-pamela-visual {
    min-height: 370px;
  }

  .hero-pamela {
    width: min(320px, 92%);
    max-height: 370px;
    margin-bottom: -14px;
  }

  .portrait {
    width: 104px;
  }

  .tablet {
    width: 100px;
  }

  .laptop {
    width: 84%;
  }

  .mockup-stack,
  .product-cluster {
    min-height: 270px;
  }

  .benefit {
    grid-template-columns: 1fr;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
  }

  .offer-card {
    padding-inline: 18px;
  }
}
