.brochure-gate-open {
  overflow: hidden;
}

.brochure-gate[hidden] {
  display: none !important;
}

.brochure-gate {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  color: #2d2119;
}

.brochure-gate,
.brochure-gate * {
  box-sizing: border-box;
}

.brochure-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 43, 33, 0.36);
  backdrop-filter: blur(8px);
}

.brochure-gate__dialog {
  position: relative;
  width: min(920px, calc(100vw - 40px));
  max-height: calc(100dvh - 48px);
  overflow: visible;
  background: #fbf7ef;
  border: 1px solid rgba(123, 94, 66, 0.26);
  box-shadow: 0 22px 56px rgba(45, 33, 25, 0.18);
  outline: none;
}

.brochure-gate__content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  min-height: 430px;
}

.brochure-gate__brand,
.brochure-gate__request,
.brochure-gate__success {
  padding: clamp(30px, 4.4vw, 46px);
}

.brochure-gate__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(244, 237, 226, 0.88), rgba(255, 252, 247, 0.76)),
    #f6efe5;
  border-right: 1px solid rgba(123, 94, 66, 0.18);
}

.brochure-gate__request {
  display: flex;
  align-items: center;
}

.brochure-gate__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  color: #4a382c;
  border: 0;
  background: transparent;
  transition: color 180ms ease, transform 180ms ease;
}

.brochure-gate__close span,
.brochure-gate__close span::after {
  width: 18px;
  height: 1px;
  display: block;
  background: currentColor;
  transform: rotate(45deg);
}

.brochure-gate__close span::after {
  content: "";
  transform: rotate(90deg);
}

.brochure-gate__close:hover,
.brochure-gate__close:focus-visible {
  color: #241a14;
  transform: scale(0.94);
  outline: 1px solid rgba(140, 109, 79, 0.34);
  outline-offset: 5px;
}

.brochure-gate__eyebrow {
  margin: 0 0 12px;
  color: #947050;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brochure-gate__title {
  max-width: 13ch;
  margin: 0;
  color: #241a14;
  font-family: "QanelasDEMO-Thin", "Qanelas", "Avenir Next", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: 0;
}

.brochure-gate__intro {
  max-width: 34rem;
  margin: 18px 0 0;
  color: rgba(45, 33, 25, 0.75);
  font-size: 15px;
  line-height: 1.62;
}

.brochure-gate__aside {
  max-width: 20rem;
  margin: 34px 0 0;
  padding-top: 18px;
  color: rgba(74, 56, 44, 0.64);
  font-size: 13px;
  line-height: 1.55;
  border-top: 1px solid rgba(123, 94, 66, 0.2);
}

.brochure-gate__form {
  width: 100%;
  margin: 0;
}

.brochure-gate__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.brochure-gate__field {
  margin: 0 0 14px;
}

.brochure-gate__field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(74, 56, 44, 0.76);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brochure-gate__field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  color: #241a14;
  background: rgba(255, 252, 247, 0.74);
  border: 1px solid rgba(123, 94, 66, 0.22);
  border-radius: 0;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.brochure-gate__field input:focus {
  border-color: rgba(148, 112, 80, 0.78);
  background: #fffdf8;
}

.brochure-gate__field.is-invalid input {
  border-color: rgba(126, 53, 38, 0.72);
}

.brochure-gate__error,
.brochure-gate__form-error {
  margin: 6px 0 0;
  color: #7e3526;
  font-size: 12px;
  line-height: 1.35;
}

.brochure-gate__error:empty,
.brochure-gate__form-error:empty {
  display: none;
}

.brochure-gate__form-error {
  margin: -2px 0 12px;
}

.brochure-gate__submit,
.brochure-gate__whatsapp,
.brochure-gate__download,
.brochure-gate__secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.brochure-gate__submit {
  width: 100%;
  margin-top: 4px;
  color: #fbf7ef;
  background: #2d2119;
  border-color: #2d2119;
}

.brochure-gate__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.brochure-gate__submit:not(:disabled):hover,
.brochure-gate__submit:not(:disabled):focus-visible,
.brochure-gate__whatsapp:hover,
.brochure-gate__whatsapp:focus-visible {
  transform: translateY(-1px);
  background: #4a382c;
  border-color: #4a382c;
}

.brochure-gate__note {
  margin: 13px 0 0;
  color: rgba(74, 56, 44, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.brochure-gate__success {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  min-height: 0;
}

.brochure-gate__success .brochure-gate__title {
  max-width: 11ch;
}

.brochure-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.brochure-gate__whatsapp {
  grid-column: 1 / -1;
  width: 100%;
  color: #fbf7ef;
  background: #2d2119;
  border-color: #2d2119;
}

.brochure-gate__whatsapp::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.92;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.73 12.73 0 0 0 5.1 22.48L3.5 28.8l6.45-1.52A12.74 12.74 0 1 0 16.02 3.2Zm0 2.27a10.47 10.47 0 1 1-5.34 19.48l-.45-.27-3.55.84.88-3.47-.29-.47A10.47 10.47 0 0 1 16.02 5.47Zm-4.4 5.05c-.23 0-.58.09-.88.42-.3.33-1.16 1.13-1.16 2.76 0 1.63 1.19 3.21 1.35 3.43.16.22 2.3 3.68 5.67 5.02 2.8 1.1 3.37.88 3.98.83.61-.06 1.97-.81 2.25-1.59.28-.78.28-1.45.2-1.59-.08-.14-.31-.22-.64-.39-.33-.16-1.97-.97-2.28-1.08-.3-.11-.53-.16-.75.17-.22.33-.86 1.08-1.05 1.3-.19.22-.39.25-.72.08-.33-.16-1.39-.51-2.65-1.63-.98-.87-1.64-1.95-1.83-2.28-.19-.33-.02-.51.14-.67.14-.14.33-.39.5-.58.17-.19.22-.33.33-.55.11-.22.06-.42-.03-.58-.08-.16-.75-1.8-1.03-2.47-.27-.65-.55-.56-.75-.57h-.64Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.73 12.73 0 0 0 5.1 22.48L3.5 28.8l6.45-1.52A12.74 12.74 0 1 0 16.02 3.2Zm0 2.27a10.47 10.47 0 1 1-5.34 19.48l-.45-.27-3.55.84.88-3.47-.29-.47A10.47 10.47 0 0 1 16.02 5.47Zm-4.4 5.05c-.23 0-.58.09-.88.42-.3.33-1.16 1.13-1.16 2.76 0 1.63 1.19 3.21 1.35 3.43.16.22 2.3 3.68 5.67 5.02 2.8 1.1 3.37.88 3.98.83.61-.06 1.97-.81 2.25-1.59.28-.78.28-1.45.2-1.59-.08-.14-.31-.22-.64-.39-.33-.16-1.97-.97-2.28-1.08-.3-.11-.53-.16-.75.17-.22.33-.86 1.08-1.05 1.3-.19.22-.39.25-.72.08-.33-.16-1.39-.51-2.65-1.63-.98-.87-1.64-1.95-1.83-2.28-.19-.33-.02-.51.14-.67.14-.14.33-.39.5-.58.17-.19.22-.33.33-.55.11-.22.06-.42-.03-.58-.08-.16-.75-1.8-1.03-2.47-.27-.65-.55-.56-.75-.57h-.64Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.brochure-gate__download,
.brochure-gate__secondary {
  width: 100%;
  color: #4a382c;
  background: transparent;
  border-color: rgba(123, 94, 66, 0.24);
}

.brochure-gate__download:hover,
.brochure-gate__download:focus-visible,
.brochure-gate__secondary:hover,
.brochure-gate__secondary:focus-visible {
  color: #241a14;
  background: rgba(244, 237, 226, 0.58);
  border-color: rgba(123, 94, 66, 0.5);
}

@media (max-width: 760px) {
  .brochure-gate {
    align-items: end;
    padding: 0;
  }

  .brochure-gate__dialog {
    width: 100%;
    max-height: 100dvh;
    overflow-y: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .brochure-gate__content {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .brochure-gate__brand,
  .brochure-gate__request,
  .brochure-gate__success {
    padding: 28px 20px;
  }

  .brochure-gate__brand {
    display: block;
    border-right: 0;
    border-bottom: 1px solid rgba(123, 94, 66, 0.16);
  }

  .brochure-gate__request {
    display: block;
    padding-top: 22px;
  }

  .brochure-gate__close {
    top: 14px;
    right: 14px;
  }

  .brochure-gate__title {
    max-width: 12ch;
    font-size: 34px;
  }

  .brochure-gate__intro {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .brochure-gate__aside {
    margin-top: 18px;
    padding-top: 13px;
  }

  .brochure-gate__field {
    margin-bottom: 12px;
  }

  .brochure-gate__field input {
    min-height: 46px;
  }

  .brochure-gate__submit,
  .brochure-gate__whatsapp,
  .brochure-gate__download,
  .brochure-gate__secondary {
    min-height: 48px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 11px;
  }

  .brochure-gate__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 560px) and (min-width: 761px) {
  .brochure-gate__dialog {
    overflow-y: auto;
  }

  .brochure-gate__content {
    min-height: 0;
  }

  .brochure-gate__brand,
  .brochure-gate__request,
  .brochure-gate__success {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
