/* LOCALAB · contacto.php publico */


.loca-contacto {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.loca-contacto_glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(60vw, 760px);
  height: min(60vw, 760px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 62%);
  transform: translateX(-50%);
  filter: blur(30px);
  pointer-events: none;
}

.loca-contacto_inner {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 40px 130px;
}

.loca-contacto_head {
  text-align: left;
  padding: 0;
  margin: 0;
  height: auto;
  min-height: 0;
}

.loca-contacto_label {
  margin: 0;
  font-family: var(--loca-font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.loca-contacto_title {
  margin: 24px 0 0;
  font-family: var(--loca-font-display);
  font-size: clamp(44px, 7.5vw, 110px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
}

.loca-contacto_lead {
  margin: 26px 0 0;
  max-width: 520px;
  font-family: var(--loca-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.64);
}

.loca-contacto_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 64px;
  align-items: start;
  margin-top: 64px;
}

.loca-contacto_form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.loca-contacto_field {
  display: flex;
  flex-direction: column;
}

.loca-contacto_field_label {
  font-family: var(--loca-font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.loca-contacto_input {
  display: block;
  width: 100%;
  margin: 8px 0 0;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--loca-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  transition: border-color 0.25s ease;
}

.loca-contacto_input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.loca-contacto_input:focus {
  outline: none;
  border-color: #fff;
}

.loca-contacto_textarea {
  min-height: 130px;
  resize: vertical;
}

.loca-contacto_exito {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.loca-contacto_exito_title {
  margin: 0;
  font-family: var(--loca-font-display);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
}

.loca-contacto_exito_text {
  margin: 14px 0 0;
  font-family: var(--loca-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.loca-contacto_feedback {
  margin: 0;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.loca-contacto_feedback.is-ok {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}

.loca-contacto_feedback.is-error {
  color: #ffcdd2;
  background: rgba(183, 28, 28, 0.15);
  border-color: rgba(255, 205, 210, 0.35);
}

.loca-contacto_submit {
  align-self: flex-start;
  margin-top: 4px;
  padding: 16px 36px;
  border: 1px solid #fff;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-family: var(--loca-font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.loca-contacto_submit:hover,
.loca-contacto_submit:focus-visible {
  outline: none;
  background: transparent;
  color: #fff;
}

.loca-contacto_submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.loca-contacto_aside {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.loca-contacto_info_label {
  margin: 0 0 12px;
  font-family: var(--loca-font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.loca-contacto_mail {
  font-family: var(--loca-font-display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.loca-contacto_mail:visited {
  color: #fff;
}

.loca-contacto_mail:hover,
.loca-contacto_mail:focus-visible {
  color: #fff;
  outline: none;
}

.loca-contacto_location {
  margin: 0;
  font-family: var(--loca-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.loca-contacto_join {
  margin: 0;
  font-family: var(--loca-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
  .loca-contacto_inner {
    padding: 72px 24px 80px;
  }

  .loca-contacto_layout {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
  }

  .loca-contacto_aside {
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
