/* ============================================
   NOSSA LIDERANÇA PAGE
   ============================================ */

/* --- Hero (full-bleed image, Lilly-style) --- */
.lideranca-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.lideranca-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.lideranca-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.lideranca-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 64px 80px;
}

.lideranca-hero__title {
  font-family: 'Season Mix', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  color: #fff;
  line-height: 1.08;
  max-width: 800px;
}

/* --- Statement (light bg, serif title + body) --- */
.lideranca-statement {
  background: #f5f7fc;
  padding: 100px 80px;
}

.lideranca-statement__inner {
  max-width: 900px;
  margin: 0 auto;
}

.lideranca-statement__title {
  font-family: 'Season Mix', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 48px;
}

.lideranca-statement__body p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.65);
  line-height: 1.85;
  margin-bottom: 24px;
}

.lideranca-statement__body p:last-child {
  margin-bottom: 0;
}

/* --- Leader Cards (two-column, Lilly-style) --- */
.lideranca-cards {
  padding: 100px 80px 120px;
  background: linear-gradient(180deg, #fff 0%, #f5f7fc 30%, #edf1fa 55%, #f5f7fc 80%, #fff 100%);
}

.lideranca-cards__label {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0263e0;
  text-align: center;
  margin-bottom: 56px;
}

/* --- Image gallery (two-column layout) --- */
.lideranca-cards__gallery {
  max-width: 1400px;
  height: min(900px, 65vw);
  margin: 0 auto 48px;
  background: linear-gradient(180deg, #edf1fa 0%, rgba(237, 241, 250, 0) 100%);
  border-radius: 24px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lideranca-cards__col-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.lideranca-cards__img-cell {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  min-height: 0;
}

.lideranca-cards__img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lideranca-cards__col-right {
  border-radius: 16px;
  overflow: hidden;
  min-height: 0;
}

.lideranca-cards__col-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lideranca-cards__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  padding: 0 12px;
}

.lideranca-cards__text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lideranca-card {
  display: flex;
  flex-direction: column;
}

.lideranca-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lideranca-card__name {
  font-family: 'Season Mix', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 6px;
}

.lideranca-card__role {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(26, 26, 46, 0.45);
  margin-bottom: 20px;
}

.lideranca-card__bio {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.lideranca-card__link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0263e0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.lideranca-card__link:hover {
  text-decoration: none;
}

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

@media (max-width: 768px) {
  /* Hero */
  .lideranca-hero {
    height: 70vh;
    min-height: 400px;
  }

  .lideranca-hero__content {
    padding: 40px 24px;
  }

  .lideranca-hero__title {
    font-size: clamp(32px, 9vw, 48px);
  }

  /* Statement */
  .lideranca-statement {
    padding: 64px 24px;
  }

  .lideranca-statement__title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .lideranca-statement__body p {
    font-size: 16px;
  }

  /* Cards */
  .lideranca-cards {
    padding: 64px 24px 80px;
  }

  .lideranca-cards__gallery {
    grid-template-columns: 1fr;
    height: auto;
    border-radius: 16px;
    padding: 10px;
    gap: 10px;
  }

  .lideranca-cards__col-left {
    gap: 10px;
  }

  .lideranca-cards__img-cell {
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    min-height: 0;
    flex: none;
  }

  .lideranca-cards__col-right {
    border-radius: 12px;
    aspect-ratio: 3 / 4;
  }

  .lideranca-cards__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }

  .lideranca-cards__text {
    text-align: left;
  }
}
