/* ===== CONTACTO ===== */
#content-contacto {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  overflow: hidden;
}

/* ── LEFT: CTA + form ── */
.contacto-left {
  padding: 40px 36px 32px 9px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
  overflow: hidden;
}

.contacto-cta-text {
  font-family: var(--font-h);
  font-size: clamp(20px, 2vw, 34px);
  line-height: 1.08;
  color: var(--cream);
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  max-width: 75%;
  align-self: flex-end;
  margin-right: 85px;
}
.contacto-cta-text span {
  color: var(--yellow);
}

.contacto-form-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.contacto-form-wrap > div {
  height: 100% !important;
}

/* ── RIGHT: bio + foto + QUIÉNES SOMOS? ── */
.contacto-right {
  padding: 28px 100px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(247,241,228,0.15);
}

.contacto-bio {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.contacto-bio p {
  font-family: var(--font-b);
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--cream);
  text-align: right;
}

.contacto-bottom {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  height: 52%;
}

.contacto-foto {
  height: 100%;
  width: auto;
  object-fit: cover;
  filter: grayscale(100%);
  flex-shrink: 0;
  display: block;
}

.contacto-quienes {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 4px;
  margin-left: 95px;
}

.contacto-nosotros-label {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
  opacity: 0.7;
}

.contacto-quienes-h {
  font-family: var(--font-h);
  font-size: clamp(34px, 3.8vw, 62px);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.contacto-quienes-h span {
  color: var(--yellow);
}
