/* =========================================================
   REGISTRO INTRO BAND
   ========================================================= */

.registro-intro-band {
  padding: 4.8rem 0 4.4rem;
  overflow: hidden;
}

.registro-intro-band__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.registro-intro-band__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: clamp(1rem, 3vw, 4rem);
}

.registro-intro-band__badge {
  position: relative;
  width: min(100%, 760px);
  margin-bottom: 1.8rem;
  z-index: 1;
}

.registro-intro-band__badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 0 58px 58px 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  z-index: -1;
}

.registro-intro-band__badge span {
  display: inline-flex;
  align-items: center;
  min-height: 84px;
  padding: 0 2rem 0 2.1rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 1.95vw, 2.1rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.registro-intro-band__text {
  max-width: 620px;
}

.registro-intro-band__text p {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.15rem, 1.45vw, 1.65rem);
  line-height: 1.3;
}

.registro-intro-band__media {
  display: flex;
  justify-content: center;
}

.registro-intro-band__photo {
  width: min(100%, 520px);
  margin: 0;
  transform: rotate(-6deg);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.16));
}

.registro-intro-band__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* -------------------------
   TABLET
   ------------------------- */

@media (max-width: 1100px) {
  .registro-intro-band__shell {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-inline: 1.4rem;
  }

  .registro-intro-band__media {
    order: -1;
  }

  .registro-intro-band__photo {
    width: min(100%, 460px);
    transform: rotate(-4deg);
  }

  .registro-intro-band__content {
    padding: 0;
    align-items: center;
  }

  .registro-intro-band__badge {
    width: auto;
    margin-bottom: 1rem;
  }

  .registro-intro-band__badge::before {
    display: none;
  }

  .registro-intro-band__badge span {
    min-height: 58px;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    justify-content: center;
    text-align: center;
    font-size: clamp(1.08rem, 2vw, 1.38rem);
  }

  .registro-intro-band__text {
    max-width: 760px;
  }

  .registro-intro-band__text p {
    font-size: 1.08rem;
    line-height: 1.5;
    text-align: left;
  }
}

/* -------------------------
   MOBILE
   ------------------------- */

@media (max-width: 700px) {
  .registro-intro-band {
    padding: 3.6rem 0 3rem;
  }

  .registro-intro-band__shell {
    gap: 1.3rem;
    padding-inline: 1rem;
  }

  .registro-intro-band__photo {
    width: min(100%, 320px);
    transform: none;
  }

  .registro-intro-band__badge span {
    min-height: 54px;
    padding: 0.9rem 1.35rem;
    font-size: clamp(1rem, 5vw, 1.3rem);
  }

  .registro-intro-band__text {
    max-width: 100%;
  }

  .registro-intro-band__text p {
    font-size: 1rem;
    line-height: 1.4;
  }
}