/* =========================================================
   JUEVES DE JUTIKO — PÁGINA PRINCIPAL
   /jueves/
   ========================================================= */

.jueves-page-hero {
  padding: 24px;
}

.jueves-page-hero__inner {
  position: relative;
  overflow: hidden;

  width: 100%;
  max-width: var(--max-width);
  min-height: calc(100vh - 48px);

  margin: 0 auto;
  padding: clamp(28px, 6vw, 76px);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  border-radius: var(--radius-xxl);

  background: var(--jutiko-black);
  color: white;

  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

/* Formas decorativas */

.jueves-page-hero__inner::before,
.jueves-page-hero__inner::after {
  content: "";
  position: absolute;
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.jueves-page-hero__inner::before {
  width: clamp(240px, 32vw, 460px);
  height: clamp(240px, 32vw, 460px);

  top: clamp(-170px, -10vw, -90px);
  right: clamp(-180px, -10vw, -90px);

  background: rgba(255, 211, 77, 0.18);
}

.jueves-page-hero__inner::after {
  width: clamp(180px, 24vw, 320px);
  height: clamp(180px, 24vw, 320px);

  left: clamp(-130px, -8vw, -60px);
  bottom: clamp(-150px, -8vw, -70px);

  background: rgba(123, 63, 252, 0.24);
}

/* Contenido */

.jueves-page-hero__brand,
.jueves-page-hero__eyebrow,
.jueves-page-hero__title,
.jueves-page-hero__intro,
.jueves-page-hero__free,
.jueves-page-hero__button,
.jueves-page-hero__signature {
  position: relative;
  z-index: 1;
}

.jueves-page-hero__brand {
  display: inline-flex;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.jueves-page-hero__logo {
  display: block;
  width: clamp(74px, 10vw, 112px);
  height: auto;
}

.jueves-page-hero__eyebrow {
  display: inline-flex;

  margin-bottom: 22px;
  padding: 10px 16px;

  border-radius: var(--radius-pill);

  background: rgba(255, 211, 77, 0.16);
  color: var(--jutiko-yellow);

  font-size: 15px;
  font-weight: 950;
}

.jueves-page-hero__title {
  max-width: 900px;
  margin: 0;

  font-size: clamp(54px, 9vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.jueves-page-hero__intro {
  max-width: 760px;
  margin: 34px 0 0;

  color: rgba(255, 255, 255, 0.84);

  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 800;
}

.jueves-page-hero__intro strong {
  color: white;
  font-weight: 950;
}

.jueves-page-hero__free {
  margin: 24px 0 0;

  color: var(--jutiko-yellow);

  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  font-weight: 950;
}

.jueves-page-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 58px;
  margin-top: 34px;
  padding: 0 26px;

  border-radius: var(--radius-pill);

  background: white;
  color: var(--jutiko-black);

  text-align: center;
  text-decoration: none;

  font-size: 16px;
  font-weight: 950;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.jueves-page-hero__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.jueves-page-hero__button:focus-visible {
  outline: 3px solid var(--jutiko-yellow);
  outline-offset: 4px;
}

.jueves-page-hero__signature {
  margin: 32px 0 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.3;
  font-weight: 850;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {
  .jueves-page-hero {
    padding: 12px;
  }

  .jueves-page-hero__inner {
    min-height: calc(100svh - 24px);
    padding: 28px 22px 34px;

    border-radius: 28px;
  }

  .jueves-page-hero__brand {
    margin-bottom: 36px;
  }

  .jueves-page-hero__eyebrow {
    margin-bottom: 20px;
    padding: 9px 14px;

    font-size: 13px;
  }

  .jueves-page-hero__title {
    font-size: clamp(48px, 16vw, 74px);
  }

  .jueves-page-hero__intro {
    margin-top: 28px;
  }

  .jueves-page-hero__button {
    width: 100%;
    padding: 0 20px;
  }

  .jueves-page-hero__signature {
    max-width: 260px;
  }
}