/* =========================================================
   PAGE — Hunting for Equity
   Mobile-first
   ========================================================= */

/* ---------- INTRO: título (imagem) + texto à esquerda, foto à direita ---------- */
.equity-intro {
  padding-block: var(--space-12);
}

.equity-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 1024px) {
  .equity-intro__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-12);
  }
}

/* --- Coluna ESQUERDA --- */
.equity-intro__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.equity-intro__title-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin-bottom: var(--space-2);
}
@media (min-width: 768px)  { .equity-intro__title-img { max-width: 440px; } }
@media (min-width: 1024px) { .equity-intro__title-img { max-width: 480px; } }

.equity-intro__divider {
  border: 0;
  height: 1px;
  background: #D9D9D9;
  width: 100%;
  margin: 0;
}

.equity-intro__paragraph {
  color: #000;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}
.equity-intro__paragraph--bold { font-weight: 700; }

/* --- Coluna DIREITA: foto + formas decorativas --- */
.equity-intro__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.equity-intro__img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Quadrado azul (esquerda, vertical center) e quadrado rosa (canto inferior direito) */
.equity-intro__shape {
  position: absolute;
  display: block;
  border-radius: 14px;
  z-index: 0;
}

.equity-intro__shape--blue {
  width: 72px;
  height: 72px;
  background: var(--color-blue);
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
}

.equity-intro__shape--pink {
  width: 60px;
  height: 60px;
  background: var(--color-pink);
  bottom: -20px;
  right: -10px;
}

@media (min-width: 1024px) {
  .equity-intro__shape--blue {
    width: 88px;
    height: 88px;
    left: -44px;
  }
  .equity-intro__shape--pink {
    width: 70px;
    height: 70px;
    right: -28px;
    bottom: -28px;
  }
}
