.sa-contacto {
  background: var(--sc-blue);
  min-height: 100vh;
}

.sa-contacto__section {
  padding: clamp(190px, 24vh, 290px) 0 clamp(80px, 12vh, 140px);
  position: relative;
}
.sa-contacto__arcoiris {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(162px, 20.7vw, 311px);
  height: auto;
  z-index: 0;
  pointer-events: none;
  display: block;
  transform: translateY(20%);
}

.sa-contacto__inner {
  position: relative;
  z-index: 1;
  max-width: var(--sc-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 6.5vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.sa-contacto__head {
  text-align: left;
}

.sa-contacto__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.01em;
  margin: 0 0 clamp(16px, 2.4vh, 28px);
}

.sa-contacto__lead {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

.sa-contacto__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sa-contacto__alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  text-align: center;
}
.sa-contacto__alert--success {
  background: #fff;
  color: var(--sc-orange);
}
.sa-contacto__alert--error {
  background: rgba(255,255,255,.95);
  color: #b00020;
}

.sa-contacto__form {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vh, 18px);
}

.sa-contacto__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sa-contacto__label {
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}

.sa-contacto__field input,
.sa-contacto__field textarea {
  width: 100%;
  font-family: var(--sc-font);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: var(--sc-black);
  background: rgba(255,255,255,.8);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px 16px;
  line-height: 1.4;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.sa-contacto__field textarea {
  resize: none;
  min-height: 110px;
}
.sa-contacto__field input:focus,
.sa-contacto__field textarea:focus {
  outline: none;
  border-color: var(--sc-orange);
  box-shadow: 0 0 0 3px rgba(232,71,32,.15);
}

.sa-contacto__submit {
  align-self: center;
  margin-top: clamp(6px, 1vh, 10px);
  background: var(--sc-orange);
  color: #fff;
  font-family: var(--sc-font);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  border-radius: 100px;
  padding: .9em 2.4em;
  cursor: pointer;
  transition: filter .15s, transform .15s;
}
.sa-contacto__submit:hover {
  filter: brightness(.92);
  transform: translateY(-1px);
}

/* Footer override en contacto */
.page-template-page-contacto .sa-footer,
.page-contacto .sa-footer {
  background: var(--sc-blue);
}

@media (max-width: 900px) {
  .sa-contacto__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vh, 48px);
  }
}
