/* ── EL TECOLOTE CTA ── */
.cta-banner {
  position: relative;
  background: transparent;
  /* padding: 80px 0; */
  margin-top: 80px;
  overflow: visible;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 326px;
  background-color: var(--block-color, #f9088b);
  transform: translateY(-50%);
  z-index: 1;
}

.cta-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.cta-banner__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 550px;
}

.cta-banner__text h1,
.cta-banner__text p {
  color: var(--text-color, var(--al-white));
}

.cta-banner__image {
  flex: 0 0 55.03%;
}

.cta-banner__image img {
  width: 100%;
  max-width: 685px;
  height: auto;
  display: block;
}

.cta-banner__text .btn-dark {
  text-decoration: none;
  margin-top: 8px;
}

/* ── RESPONSIVE (MOBILE) ── */
@media (max-width: 767.98px) {
  .cta-banner {
    margin-top: 0px;
    padding: 0 0 64px 0;
    text-align: left;
    overflow: visible;
  }

  .cta-banner::before {
    height: auto;
    top: 100px;
    bottom: 0;
    transform: none;
  }

  .cta-banner__content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .cta-banner__image {
    width: 100%;
    margin-top: 0;
    flex: none;
  }

  .cta-banner__image img {
    max-width: 100%;
    margin: 0 auto;
    transform: translateY(0);
  }

  .cta-banner__text {
    align-items: flex-start;
    padding: 0px;
  }
}
