/* =========================================================
   JUEVES DE JUTIKO — ESTADO PRÓXIMAMENTE
   ========================================================= */

.jueves-coming {
  padding: 48px 24px 100px;
}

.jueves-coming__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.jueves-coming__content {
  position: relative;
  overflow: hidden;

  padding: clamp(32px, 6vw, 76px);

  border-radius: var(--radius-xxl);

  background:
    linear-gradient(
      135deg,
      rgba(60, 137, 255, 0.12),
      rgba(123, 63, 252, 0.1)
    );

  border: 1px solid rgba(60, 137, 255, 0.14);
}

.jueves-coming__content::after {
  content: "";
  position: absolute;

  width: 260px;
  height: 260px;

  right: -90px;
  bottom: -110px;

  border-radius: 50%;

  background: rgba(255, 211, 77, 0.2);
  pointer-events: none;
}

.jueves-coming__content > * {
  position: relative;
  z-index: 1;
}

.jueves-coming h2 {
  max-width: 900px;
  margin: 24px 0 0;

  color: var(--jutiko-black);

  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.jueves-coming p {
  max-width: 680px;
  margin: 26px 0 0;

  color: rgba(17, 17, 17, 0.7);

  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.4;
  font-weight: 750;
}

.jueves-coming__free {
  color: #2465c5 !important;
  font-weight: 950 !important;
}

.jueves-coming__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 58px;
  margin-top: 32px;
  padding: 0 26px;

  border-radius: var(--radius-pill);

  background: var(--jutiko-black);
  color: white;

  text-decoration: none;
  text-align: center;

  font-size: 16px;
  font-weight: 950;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.jueves-coming__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
}

.jueves-coming__button:focus-visible {
  outline: 3px solid var(--jutiko-purple);
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .jueves-coming {
    padding: 28px 14px 76px;
  }

  .jueves-coming__content {
    padding: 28px 22px 34px;
    border-radius: 28px;
  }

  .jueves-coming__button {
    width: 100%;
    padding: 0 20px;
  }
}