/* =========================================================
   JUEVES DE JUTIKO — PROPUESTA DEL NEGOCIO
   ========================================================= */

.jueves-business-form {
  padding: 100px 24px;
  background: var(--jutiko-black);
  color: white;
}

.jueves-business-form__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(400px, 1.25fr);
  gap: clamp(38px, 7vw, 94px);
  align-items: start;
}

/* INTRO */

.jueves-business-form__intro {
  position: sticky;
  top: 24px;
}

.jueves-business-form__intro h2 {
  margin: 24px 0 0;

  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.jueves-business-form__intro > p {
  margin: 26px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 750;
}

.jueves-business-form__intro strong {
  color: white;
  font-weight: 950;
}

.jueves-business-form__principles {
  margin-top: 30px;
  padding: 22px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);

  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

/* FORMULARIO */

.jueves-business-form__form {
  padding: clamp(26px, 4vw, 46px);

  display: flex;
  flex-direction: column;
  gap: 38px;

  border-radius: 34px;

  background: white;
  color: var(--jutiko-black);

  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.26);
}

.jueves-business-form__group {
  padding-bottom: 38px;

  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
}

.jueves-business-form__group-heading {
  margin-bottom: 26px;

  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.jueves-business-form__group-heading > span {
  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--jutiko-purple);
  color: white;

  font-size: 14px;
  font-weight: 950;
}

.jueves-business-form__group-heading h3 {
  margin: 0;

  font-size: 25px;
  line-height: 1.1;
  font-weight: 950;
}

.jueves-business-form__group-heading p {
  margin: 6px 0 0;

  color: rgba(17, 17, 17, 0.5);

  font-size: 14px;
  line-height: 1.4;
  font-weight: 750;
}

.jueves-business-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.jueves-business-form__grid + .jueves-business-form__field,
.jueves-business-form__field + .jueves-business-form__grid,
.jueves-business-form__field + .jueves-business-form__field {
  margin-top: 22px;
}

.jueves-business-form__field {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jueves-business-form__field label,
.jueves-business-form__label {
  color: var(--jutiko-black);

  font-size: 16px;
  line-height: 1.35;
  font-weight: 950;
}

.jueves-business-form__field label span {
  margin-left: 5px;

  color: rgba(17, 17, 17, 0.42);

  font-size: 13px;
  font-weight: 850;
}

.jueves-business-form__field input,
.jueves-business-form__field textarea,
.jueves-business-form__field select {
  width: 100%;
  min-height: 56px;
  padding: 15px 17px;

  border: 2px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;

  background: #fafafa;
  color: var(--jutiko-black);

  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 750;

  outline: none;

  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.jueves-business-form__field textarea {
  min-height: 110px;
  resize: vertical;
}

.jueves-business-form__field input:focus,
.jueves-business-form__field textarea:focus,
.jueves-business-form__field select:focus {
  border-color: var(--jutiko-purple);
  background: white;
  box-shadow: 0 0 0 4px rgba(123, 63, 252, 0.1);
}

.jueves-business-form__help,
.jueves-business-form__field-footer {
  color: rgba(17, 17, 17, 0.5);

  font-size: 13px;
  line-height: 1.4;
  font-weight: 750;
}

.jueves-business-form__field-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* CHIPS */

.jueves-business-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jueves-business-form__chips label {
  cursor: pointer;
}

.jueves-business-form__chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.jueves-business-form__chips span {
  min-height: 44px;
  padding: 0 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid rgba(17, 17, 17, 0.09);
  border-radius: var(--radius-pill);

  background: #fafafa;
  color: rgba(17, 17, 17, 0.7);

  font-size: 14px;
  font-weight: 900;

  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.jueves-business-form__chips input:checked + span {
  border-color: var(--jutiko-purple);
  background: rgba(123, 63, 252, 0.1);
  color: var(--jutiko-purple);
}

.jueves-business-form__chips input:focus-visible + span {
  outline: 3px solid rgba(123, 63, 252, 0.2);
  outline-offset: 3px;
}

/* CONSENTIMIENTO */

.jueves-business-form__consent {
  position: relative;

  padding: 20px;

  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 13px;
  align-items: start;

  border-radius: 20px;

  background: rgba(123, 63, 252, 0.07);
  color: rgba(17, 17, 17, 0.76);

  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;

  cursor: pointer;
}

.jueves-business-form__consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.jueves-business-form__checkbox {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  border: 2px solid rgba(123, 63, 252, 0.34);
  border-radius: 7px;

  background: white;
}

.jueves-business-form__consent input:checked
  + .jueves-business-form__checkbox {
  border-color: var(--jutiko-purple);
  background: var(--jutiko-purple);
}

.jueves-business-form__consent input:checked
  + .jueves-business-form__checkbox::after {
  content: "✓";

  color: white;

  font-size: 15px;
  font-weight: 950;
}

.jueves-business-form__consent strong {
  color: var(--jutiko-purple);
  font-weight: 950;
}

/* BOTÓN */

.jueves-business-form__submit {
  width: 100%;
  min-height: 60px;
  padding: 0 24px;

  border: 0;
  border-radius: var(--radius-pill);

  background: var(--jutiko-black);
  color: white;

  font: inherit;
  font-size: 16px;
  font-weight: 950;

  cursor: pointer;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.jueves-business-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.2);
}

.jueves-business-form__privacy {
  margin: -14px 0 0;

  text-align: center;

  color: rgba(17, 17, 17, 0.46);

  font-size: 13px;
  line-height: 1.4;
  font-weight: 750;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .jueves-business-form__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .jueves-business-form__intro {
    position: static;
  }
}

@media (max-width: 600px) {
  .jueves-business-form {
    padding: 76px 14px;
  }

  .jueves-business-form__form {
    padding: 24px 20px 27px;
    border-radius: 28px;
  }

  .jueves-business-form__grid {
    grid-template-columns: 1fr;
  }

  .jueves-business-form__grid > .jueves-business-form__field
    + .jueves-business-form__field {
    margin-top: 6px;
  }

  .jueves-business-form__chips span {
    min-height: 42px;
    padding: 0 14px;
  }

  .jueves-business-form__consent {
    padding: 17px;
  }
}

/* =========================================================
   ENVÍO DEL FORMULARIO
   ========================================================= */

.jueves-business-form__submit:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
  box-shadow: none;
}