/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  min-height: 85svh;
  display: flex;
  align-items: center;
  background-image: var(--hero-bg-desk, var(--hero-bg, none));
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--bg-primary) 0%,
    rgba(40, 50, 36, 0.85) 20%,
    rgba(40, 50, 36, 0.45) 45%,
    rgba(40, 50, 36, 0) 70%
  );
  pointer-events: none;
}

.hero__visual {
  display: none;
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(40px, 4.5vw, 64px);
  max-width: 640px;
  gap: clamp(20px, 2.4vw, 30px);
}

.hero__logo {
  display: inline-block;
  width: clamp(150px, 14vw, 200px);
  height: auto;
  margin-bottom: var(--space-xs);
}

.hero__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__headline {
  font-size: clamp(1.65rem, 2.95vw, 2.95rem);
  line-height: 1.15;
  max-width: 28ch;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 28px);
  font-size: 0.95rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero__meta-item--date,
.hero__meta-item--time {
  color: var(--text-primary);
}

.hero__meta-item--date .icon,
.hero__meta-item--time .icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

.hero__meta-key {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero__meta-item--live {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.hero__cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xs);
}

/* ============================================================
   BUTTON
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease-out-soft),
    box-shadow 0.35s var(--ease-out-soft),
    background-color 0.3s var(--ease-out-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--bg-deep);
  width: fit-content;
  animation: btn-pulse 2.2s var(--ease-out-soft) infinite;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 50% 0%,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-soft);
  z-index: -1;
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary:active {
  transform: translateY(0) scale(0.985);
  transition-duration: 0.12s;
}

@keyframes btn-pulse {
  0% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.35) inset,
      0 8px 24px -12px rgba(0, 0, 0, 0.5),
      0 0 0 0 rgba(241, 219, 156, 0.6);
  }
  70% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.35) inset,
      0 8px 24px -12px rgba(0, 0, 0, 0.5),
      0 0 0 22px rgba(241, 219, 156, 0);
  }
  100% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.35) inset,
      0 8px 24px -12px rgba(0, 0, 0, 0.5),
      0 0 0 0 rgba(241, 219, 156, 0);
  }
}

.btn__arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease-out-soft);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ============================================================
   ICONS
   ============================================================ */

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #7BD389;
  position: relative;
  flex-shrink: 0;
}

.icon--dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: #7BD389;
  opacity: 0.35;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */

.progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}

.progress__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  white-space: nowrap;
}

.progress__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.progress__caption {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

.progress__value {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  transition: transform 0.5s var(--ease-out-soft);
  transform-origin: center;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.progress__value--bumping {
  animation: progress-bump 0.7s var(--ease-out-soft);
}

.progress__value-symbol {
  font-size: 0.82em;
  color: var(--text-dim);
  margin-left: 1px;
}

.progress__track {
  position: relative;
  height: 4px;
  border-radius: var(--radius-full);
  background-color: var(--surface-border);
  overflow: hidden;
}

.progress__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  transition: width 1.1s var(--ease-out-soft);
}

@keyframes progress-bump {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.18);
  }
  65% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* ============================================================
   COMPARE — antes vs depois
   ============================================================ */

.compare {
  position: relative;
  padding: clamp(56px, 8vw, 112px) 0 clamp(56px, 7vw, 96px);
}

.compare__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
}

.compare__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  text-align: center;
  max-width: 780px;
}

.compare__title {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.18;
}

.compare__title em {
  font-style: italic;
}

.compare__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  width: 100%;
  max-width: 1080px;
  border: 1px solid var(--surface-border-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #22291F 0%, #1E261B 100%);
  overflow: hidden;
}

.compare__side {
  position: relative;
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 32px);
}

.compare__side--before {
  color: var(--text-dim);
}

.compare__side--after {
  color: var(--text-primary);
}

.compare__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.compare__side--before .compare__label {
  color: var(--text-dim);
}

.compare__side--after .compare__label {
  color: var(--text-dim);
}

.compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.8vw, 24px);
}

.compare__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.4;
}

.compare__item strong {
  font-weight: 700;
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.compare__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 4px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compare__side--before .compare__icon {
  opacity: 0.85;
}

.compare__side--after .compare__icon {
  stroke: var(--gold-light);
}

.compare__divider {
  position: relative;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--surface-border-strong) 18%,
    var(--surface-border-strong) 82%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 50%;
}

.compare__arrow circle {
  stroke: var(--surface-border-strong);
  fill: var(--bg-primary);
}

.compare__arrow path {
  stroke: var(--text-primary);
}

/* ============================================================
   AUDIENCE — pra quem é
   ============================================================ */

.audience {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 0 clamp(64px, 8vw, 112px);
  background: linear-gradient(135deg, #22291F 0%, #1E261B 100%);
  border-block: 1px solid var(--surface-border);
}

.audience__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}

.audience__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  text-align: center;
  max-width: 780px;
}

.audience__title {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.18;
}

.audience__title em {
  font-style: italic;
}

.audience__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.6vw, 22px);
}

.audience-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(40, 50, 36, 0.55) 0%, rgba(20, 19, 13, 0.55) 100%);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out-soft),
    transform 0.6s var(--ease-out-soft),
    border-color 0.4s var(--ease-out-soft);
  transition-delay: var(--card-delay, 0ms);
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(241, 219, 156, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.audience-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.audience-card:nth-child(5) {
  grid-column: 4 / span 2;
}

[data-animate].is-in .audience-card {
  opacity: 1;
  transform: translateY(0);
}

.audience-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.audience-card__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.45;
  color: var(--text-primary);
}

.audience-card__text strong {
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   CONTENT — o que você vai aprender
   ============================================================ */

.content {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 0 clamp(64px, 8vw, 112px);
  background:
    radial-gradient(80% 50% at 20% 0%, rgba(241, 219, 156, 0.06) 0%, transparent 55%),
    radial-gradient(70% 60% at 90% 100%, rgba(172, 112, 60, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, #1F261B 100%);
  border-block: 1px solid var(--surface-border);
  overflow: hidden;
}

.content__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}

.content__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  text-align: center;
  max-width: 780px;
}

.content__title {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.18;
}

.content__title em {
  font-style: italic;
}

.content__bento {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: clamp(14px, 1.6vw, 20px);
}

.bento {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(16px, 1.8vw, 24px);
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(40, 50, 36, 0.55) 0%, rgba(20, 19, 13, 0.55) 100%);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out-soft),
    transform 0.6s var(--ease-out-soft),
    border-color 0.4s var(--ease-out-soft);
  transition-delay: var(--bento-delay, 0ms);
}

.bento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 100% 0%, rgba(241, 219, 156, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.bento:hover {
  border-color: rgba(241, 219, 156, 0.3);
}

[data-animate].is-in .bento {
  opacity: 1;
  transform: translateY(0);
}

.bento--hero {
  grid-column: span 4;
  grid-row: span 2;
  padding: clamp(28px, 3vw, 44px);
  background:
    radial-gradient(50% 50% at 20% 100%, rgba(241, 219, 156, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, rgba(40, 50, 36, 0.7) 0%, rgba(20, 19, 13, 0.7) 100%);
}

.bento--tall {
  grid-column: span 2;
  grid-row: span 2;
}

.bento--tall .bento__text {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.4;
}

.bento--wide {
  grid-column: span 4;
}

.bento__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(241, 219, 156, 0.25);
  background: rgba(241, 219, 156, 0.06);
  color: var(--gold-light);
}

.bento--hero .bento__icon {
  width: 56px;
  height: 56px;
}

.bento__icon svg {
  width: 60%;
  height: 60%;
}

.bento__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.45;
  color: var(--text-primary);
}

.bento--hero .bento__text {
  font-size: clamp(1.3rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 22ch;
}

.bento__text strong {
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bento__tag {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 12px;
  border: 1px solid rgba(241, 219, 156, 0.3);
  border-radius: var(--radius-full);
  background: rgba(241, 219, 156, 0.05);
}

.content__closer {
  margin: clamp(8px, 1vw, 16px) 0 0;
  padding-top: clamp(32px, 4vw, 48px);
  max-width: 720px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.4;
  color: var(--text-primary);
  position: relative;
}

.content__closer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60px, 8vw, 100px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 50%, transparent 100%);
}

.content__closer em {
  font-style: italic;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   SCHEDULE — cronograma
   ============================================================ */

.schedule {
  position: relative;
  padding: clamp(56px, 8vw, 112px) 0 clamp(56px, 7vw, 96px);
}

.schedule__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
}

.schedule__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  text-align: center;
  max-width: 760px;
}

.schedule__title {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.18;
}

.schedule__title em {
  font-style: italic;
}

.schedule__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 1.8vw, 22px);
  padding: clamp(32px, 3vw, 44px) clamp(28px, 2.5vw, 36px);
  border: 1px solid var(--surface-border-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #22291F 0%, #1E261B 100%);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out-soft), transform 0.5s var(--ease-out-soft);
}

.step:hover {
  border-color: var(--surface-border-strong);
  transform: translateY(-3px);
}

.step__number {
  position: absolute;
  top: clamp(20px, 2vw, 28px);
  right: clamp(24px, 2.4vw, 32px);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-whisper);
  letter-spacing: 0.02em;
}

.step__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.step__icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.2;
  margin: 0;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.step__desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

.step__desc strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================================
   BONUSES — tudo o que você irá receber
   ============================================================ */

.bonuses {
  position: relative;
  padding: clamp(56px, 8vw, 112px) 0 clamp(56px, 7vw, 96px);
}

.bonuses__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}

.bonuses__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  text-align: center;
  max-width: 780px;
}

.bonuses__title {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.18;
}

.bonuses__title em {
  font-style: italic;
}

.bonuses__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1vw, 14px);
}

.bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background-color: #1A2014;
  aspect-ratio: 3 / 5;
  isolation: isolate;
  transition:
    border-color 0.5s var(--ease-out-soft),
    transform 0.5s var(--ease-out-soft);
}

.bonus-card:hover {
  border-color: rgba(241, 219, 156, 0.35);
  transform: translateY(-4px);
}

.bonus-card__media {
  position: absolute;
  inset: 0;
  background-image: var(--bonus-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s var(--ease-out-soft);
  z-index: 0;
}

.bonus-card:hover .bonus-card__media {
  transform: scale(1.04);
}

.bonus-card__media--placeholder {
  background-color: #1F2618;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(241, 219, 156, 0.06) 0%, transparent 60%),
    repeating-linear-gradient(
      135deg,
      rgba(241, 219, 156, 0.04) 0px,
      rgba(241, 219, 156, 0.04) 1px,
      transparent 1px,
      transparent 14px
    );
}

.bonus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 19, 13, 0) 30%,
    rgba(20, 19, 13, 0.55) 50%,
    rgba(20, 19, 13, 0.92) 78%,
    #14130D 100%
  );
  z-index: 1;
  pointer-events: none;
}

.bonus-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  max-width: 90%;
}

.bonus-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  line-height: 1.5;
  color: var(--text-dim);
}

.bonus-card__arrow {
  align-self: flex-end;
  width: 28px;
  height: 28px;
  margin-top: 8px;
  color: var(--gold-light);
  transition: transform 0.4s var(--ease-out-soft);
}

.bonus-card:hover .bonus-card__arrow {
  transform: translateX(4px);
}


/* ============================================================
   PRICING — investimento
   ============================================================ */

.pricing {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 0 clamp(64px, 8vw, 112px);
}

.pricing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(36px, 4.5vw, 56px);
}

.pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  text-align: center;
  max-width: 760px;
}

.pricing__title {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.18;
}

.pricing__title em {
  font-style: italic;
}

.pricing__card {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 3vw, 36px);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
  border: 1px solid var(--surface-border-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #22291F 0%, #1A2014 100%);
  position: relative;
  overflow: hidden;
}

.pricing__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 50% at 100% 0%, rgba(241, 219, 156, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.pricing__lead {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-dim);
  position: relative;
}

.pricing__lead strong {
  font-weight: 700;
  color: var(--text-primary);
}

.pricing__included {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}

.pricing__included-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.pricing__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1vw, 1rem);
  color: var(--text-primary);
  line-height: 1.4;
  text-align: left;
}

.pricing__list-item strong {
  font-weight: 600;
}

.pricing__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold-light);
}

.pricing__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-block: clamp(12px, 1.5vw, 18px);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  position: relative;
}

.pricing__price-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-dim);
}

.pricing__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing__price-currency {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  letter-spacing: -0.01em;
}

.pricing__price-value {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing__progress {
  max-width: 280px;
  width: 100%;
  position: relative;
}

.pricing__cta {
  width: 100%;
  max-width: none;
  position: relative;
}

/* ============================================================
   FAQ — perguntas frequentes
   ============================================================ */

.faq {
  position: relative;
  padding: clamp(56px, 8vw, 112px) 0 clamp(64px, 8vw, 112px);
}

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}

.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  text-align: center;
  max-width: 720px;
}

.faq__title {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.18;
}

.faq__title em {
  font-style: italic;
}

.faq__grid {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: end;
}

.faq__list {
  list-style: none;
  counter-reset: faq;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.faq-item {
  counter-increment: faq;
  border-top: 1px solid var(--surface-border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--surface-border);
}

.faq-item details {
  position: relative;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 2vw, 26px) 4px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s var(--ease-out-soft);
}

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

.faq-item__question {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.4;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-item__question::before {
  content: counter(faq, decimal-leading-zero);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  flex-shrink: 0;
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.4s var(--ease-out-soft), color 0.3s var(--ease-out-soft);
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--gold-light);
}

.faq-item summary:hover .faq-item__question,
.faq-item[open] summary .faq-item__question {
  color: var(--gold-light);
}

.faq-item summary:hover .faq-item__chevron {
  color: var(--gold-light);
}

.faq-item__answer {
  padding: 0 4px clamp(20px, 2vw, 26px) calc(0.78rem * 2 + 16px + 4px);
  overflow: hidden;
}

.faq-item__answer p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.65;
  color: var(--text-dim);
}

.faq-item[open] .faq-item__answer {
  animation: faq-reveal 0.5s var(--ease-out-soft);
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SUPPORT CARD — box de suporte (lateral do FAQ)
   ============================================================ */

.support-card {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 28px);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--surface-border-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #22291F 0%, #1A2014 100%);
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 100% 0%, rgba(37, 211, 102, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.support-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.support-card__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.support-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.support-card__title em {
  font-style: italic;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.support-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 0.98vw, 0.98rem);
  line-height: 1.6;
  color: var(--text-dim);
}

.support-card__cta {
  align-self: stretch;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: #25D366;
  color: #0A2E16;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  position: relative;
  transition:
    transform 0.35s var(--ease-out-soft),
    box-shadow 0.35s var(--ease-out-soft),
    background-color 0.3s var(--ease-out-soft);
}

.support-card__cta:hover {
  background: #1FB955;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(37, 211, 102, 0.5);
}

.support-card__cta:active {
  transform: translateY(0) scale(0.985);
}

.support-card__cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: clamp(28px, 4vw, 52px) 0;
  border-top: 1px solid var(--surface-border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 56px);
  flex-wrap: wrap;
  text-align: right;
}

.footer__copy {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  text-align: right;
  margin: 0;
}

.footer__logo {
  width: clamp(120px, 13vw, 160px);
  height: auto;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS — depoimentos estilo Instagram
   ============================================================ */

.testimonials {
  position: relative;
  padding: clamp(56px, 8vw, 112px) 0 clamp(56px, 7vw, 96px);
}

.testimonials__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  text-align: center;
  max-width: 760px;
}

.testimonials__title {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.18;
}

.testimonials__title em {
  font-style: italic;
}

.testimonials__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.ig-post {
  display: flex;
  flex-direction: column;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  font-family: var(--font-body);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out-soft),
    transform 0.6s var(--ease-out-soft);
  transition-delay: var(--delay, 0ms);
  box-shadow: 0 24px 60px -32px rgba(0, 0, 0, 0.55);
}

[data-animate].is-in.ig-post {
  opacity: 1;
  transform: translateY(0);
}

.ig-post__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ig-post__avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a6a6a 0%, #2a2a2a 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.ig-post__avatar svg {
  width: 70%;
  height: 70%;
}

.ig-post__user {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ig-post__handle {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.ig-post__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.ig-post__dot {
  opacity: 0.5;
}

.ig-post__heart {
  width: 12px;
  height: 12px;
  color: #ed4956;
  flex-shrink: 0;
}

.ig-post__text {
  margin: 0;
  padding: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
  font-weight: 400;
  flex: 1;
}

.ig-post__foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 22px 20px;
}

.ig-post__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  cursor: default;
  transition: opacity 0.2s ease;
}

.ig-post__action:hover {
  opacity: 0.7;
}

.ig-post__action svg {
  width: 100%;
  height: 100%;
  fill: none;
  transition: transform 0.25s var(--ease-out-soft);
}

.ig-post__action--like {
  cursor: pointer;
}

.ig-post__action--like.is-liked {
  color: #ed4956;
}

.ig-post__action--like.is-liked svg {
  fill: currentColor;
  animation: ig-like-pop 0.35s var(--ease-out-soft);
}

@keyframes ig-like-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* ============================================================
   BIO — conheça o seu mentor
   ============================================================ */

.bio {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: var(--bio-bg-desk, var(--bio-bg, none));
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--bg-deep);
  border-block: 1px solid var(--surface-border);
  overflow: hidden;
  padding: clamp(64px, 9vw, 128px) 0;
}

.bio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(20, 19, 13, 0.65) 0%,
    rgba(20, 19, 13, 0.35) 30%,
    rgba(20, 19, 13, 0) 60%
  );
  pointer-events: none;
}

.bio__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.bio__card {
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 22px);
  padding: clamp(28px, 3.2vw, 44px);
  border: 1px solid rgba(242, 233, 222, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    160deg,
    rgba(40, 50, 36, 0.45) 0%,
    rgba(20, 19, 13, 0.55) 100%
  );
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow:
    0 24px 60px -28px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(242, 233, 222, 0.06);
  position: relative;
}

.bio__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(241, 219, 156, 0.35) 0%,
    rgba(242, 233, 222, 0.04) 45%,
    rgba(172, 112, 60, 0.18) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.bio__eyebrow {
  align-self: flex-start;
}

.bio__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.bio__text {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
}

.bio__text p {
  margin: 0;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-dim);
}

.bio__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.bio__text em {
  font-style: normal;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero {
    background-image: var(--hero-bg-mob, var(--hero-bg-desk, none));
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    min-height: auto;
    align-items: stretch;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(40, 50, 36, 0) 0%,
      rgba(40, 50, 36, 0.55) 35%,
      var(--bg-primary) 70%
    );
  }

  .hero__content {
    padding-top: 20vh;
    padding-bottom: clamp(40px, 8vw, 64px);
    max-width: 100%;
    min-height: auto;
    justify-content: flex-start;
    align-items: center;
  }

  .hero__headline {
    font-size: clamp(1.5rem, 5.6vw, 2rem);
    max-width: 100%;
  }

  .hero__logo {
    width: clamp(240px, 38vw, 320px);
    margin-inline: auto;
  }

  .progress {
    margin-inline: auto;
  }

  .progress__header {
    justify-content: center;
    gap: clamp(20px, 4vw, 32px);
  }

  .btn--primary {
    margin-inline: auto;
    width: 100%;
    max-width: none;
  }

  .hero__cta-wrapper {
    width: 100%;
  }

  .compare__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .compare__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--surface-border-strong) 18%,
      var(--surface-border-strong) 82%,
      transparent 100%
    );
  }

  .compare__arrow {
    transform: translate(-50%, -50%) rotate(90deg);
  }

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

  .audience-card,
  .audience-card:nth-child(4),
  .audience-card:nth-child(5) {
    grid-column: auto;
  }

  .content__bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .bento,
  .bento--hero,
  .bento--tall,
  .bento--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .bento--hero,
  .bento--wide {
    grid-column: 1 / -1;
  }

  .bonuses__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq__grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .bio {
    background-image: var(--bio-bg-mob, var(--bio-bg-desk, none));
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: auto;
    align-items: stretch;
  }

  .bio::after {
    background: linear-gradient(
      180deg,
      rgba(20, 19, 13, 0) 0%,
      rgba(20, 19, 13, 0.55) 35%,
      var(--bg-deep) 70%
    );
  }

  .bio__inner {
    justify-content: center;
    padding-top: 20vh;
  }

  .bio__card {
    max-width: 100%;
    width: auto;
  }

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

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__copy {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero__meta {
    font-size: 0.85rem;
    justify-content: center;
    gap: 16px;
  }

  .bonuses__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

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

  .bento,
  .bento--hero,
  .bento--tall,
  .bento--wide {
    grid-column: 1 / -1;
  }

  .bonus-card {
    aspect-ratio: 4 / 4.5;
  }

  .bonus-card__title {
    font-size: 1.35rem;
  }

  .progress__header {
    white-space: normal;
  }
}
