/* =============================================
   HERO SECTION
   Base structure + LP1/LP2/LP3/LP4 variants
   ============================================= */

/* ---------- Base Structure ---------- */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero__container {
  max-width: 1320px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 64px 0 72px;
  flex: 1;
  min-width: 320px;
}

.hero__headline-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 8px;
}

.hero__headline {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 89.6px;
  letter-spacing: 3.2px;
  text-align: center;
  background: linear-gradient(180deg, #D3111A 0%, #5F080C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subheadline {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.21em;
  letter-spacing: 1.12em;
  color: var(--surface-darker);
  text-align: center;
  width: 100%;
}

.hero__divider {
height: 31.07px;
max-width: 430px;
max-height: 31.07px;
align-self: center;
aspect-ratio: 430.00/31.07;
align-items: center;
flex-direction: column;
}

.hero__body {
  font-family: var(--font-family);
  font-weight: 400;
  text-align: center;
  font-size: 24px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  color: var(--primary-darker);
  text-align: left;
  width: 100%;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__image {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
}

.hero__image img {
  width: 100%;
  height: 632px;
  object-fit: cover;
  object-position: top center;
}

/* Background image (LP2, LP3) */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* =============================================
   LP1 - Light Theme (pink gradient, person image)
   ============================================= */
.hero--lp1 {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8DBDD 100%),
    linear-gradient(0deg, transparent 0%, #FFFFFF 62%),
    #D3111A;
}

/* =============================================
   LP2 - Dark Theme (photo background, dark overlay)
   ============================================= */
.hero--lp2 {
  background-color: #000;
}

.hero--lp2 .hero__bg {
  opacity: 0.3;
}

.hero--lp2 .badge {
  color: var(--tertiary-dark);
}

.hero--lp2 .hero__headline {
  background: linear-gradient(180deg, #F1B5B8 0%, #D3111A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.45));
}

.hero--lp2 .hero__subheadline {
  color: var(--surface-light-hover);
}

.hero--lp2 .hero__body {
  color: var(--primary-light);
}

.hero__body--centered {
  text-align: center;
}

.hero__body--centered span {
  font-weight: 700;
}

.hero--lp2 .btn-gold {
  color: var(--tertiary-normal-hover);
}

/* =============================================
   LP3 - Light + Background Image + Table
   ============================================= */
.hero--lp3 {
  background:
    linear-gradient(180deg, #FFFFFF 0%, rgba(241, 181, 184, 1) 100%),
    linear-gradient(0deg, transparent 0%, #FFFFFF 62%),
    #D3111A;
}

.hero--lp3 .hero__container,
.hero--lp4 .hero__container {
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
}

.hero--lp3 .hero__content,
.hero--lp4 .hero__content {
  padding: 40px 0 32px;
  min-width: unset;
  max-width: 900px;
}

.hero--lp3 .btn-gold,
.hero--lp4 .btn-gold {
  color: var(--secondary-normal-active);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.45);
}

.hero--lp3 .hero__divider,
.hero--lp4 .hero__divider {
  max-width: 1320px;
}

/* =============================================
   LP4 - No BG Image, Different Headline
   ============================================= */
.hero--lp4 {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(248, 219, 221, 1) 100%);
}

.hero--lp4 .hero__headline {
  font-size: 80px;
  letter-spacing: 0;
}

.hero--lp4 .hero__subheadline {
  letter-spacing: 0.5em;
}

/* =============================================
   AGENDA DO MILHÃO IMAGE (LP3 & LP4)
   ============================================= */
.hero__agenda {
  width: 100%;
  max-width: 1320px;
  height: auto;
  border-radius: 16px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1280px) {
  .hero__container {
    max-width: 1140px;
    padding: 0 20px;
  }

  .hero__agenda {
    max-width: 1140px;
  }
}

@media (max-width: 834px) {
  .hero__container {
    max-width: 720px;
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero__body {
    text-align: center;
  }

  .hero__headline {
    font-size: 48px;
  }

  .hero__subheadline {
    font-size: 24px;
    letter-spacing: 0.5em;
  }

  .hero__image {
    max-width: 400px;
  }

  .hero__image img {
    height: auto;
  }

  .hero--lp4 .hero__headline {
    font-size: 56px;
  }

  .hero__agenda {
    max-width: 720px;
  }
}

@media (max-width: 576px) {
  .hero__container {
    max-width: 350px;
  }

  .hero__content {
    padding: 32px 0;
    gap: 24px;
  }

  .hero__headline {
    font-size: 22px;
    line-height: 1.15em;
  }

  .hero__divider {
    width: calc(100% - 14px);
  }

  .hero__cta .btn-primary,
  .hero__cta .btn-ghost {
    font-size: 14px;
    padding: 12px 18px;
  }

  .hero__subheadline {
    font-size: 18px;
    letter-spacing: 0.3em;
  }

  .hero__body {
    font-size: 18px;
  }

  .hero__image {
    min-width: unset;
  }

  .hero__image img {
    height: auto;
  }

  .hero--lp4 .hero__headline {
    font-size: 36px;
  }

  .hero__agenda {
    max-width: 350px;
  }
}
