/* ============================================================
   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.55vw, 2.5rem);
  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__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: 100%;
  max-width: 1080px;
}

.audience__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.checklist::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 13px;
  width: 1px;
  background-image: linear-gradient(180deg, var(--surface-border) 50%, transparent 50%);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  opacity: 0.5;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: clamp(10px, 1.2vw, 14px);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.5;
  color: var(--text-primary);
  position: relative;
}

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

.checklist__box {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 1.5px solid var(--surface-border-strong);
  border-radius: 5px;
  background-color: rgba(20, 19, 13, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
  transition:
    border-color 0.4s var(--ease-out-soft),
    background-color 0.4s var(--ease-out-soft),
    transform 0.4s var(--ease-out-soft);
  transition-delay: var(--check-delay, 0ms);
}

.checklist__box svg {
  width: 18px;
  height: 18px;
}

.checklist__check {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.55s var(--ease-out-soft);
  transition-delay: calc(var(--check-delay, 0ms) + 120ms);
}

[data-animate].is-in .checklist__box {
  border-color: var(--gold-light);
  background-color: rgba(241, 219, 156, 0.08);
  transform: scale(1.04);
}

[data-animate].is-in .checklist__check {
  stroke-dashoffset: 0;
}

.audience__visual {
  background-image: var(--audience-bg, none);
  background-color: rgba(242, 233, 222, 0.04);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  border-radius: var(--radius-md);
}

/* ============================================================
   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;
}

/* ============================================================
   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;
}

/* ============================================================
   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__panel {
    grid-template-columns: 1fr;
  }

  .audience__visual {
    min-height: 240px;
    order: -1;
  }

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

  .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;
  }

  .progress__header {
    white-space: normal;
  }
}
