.contact-page {
  padding: 120px 0 160px;
}

.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.contact-title {
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  background: #f5f5f5;
  padding: 18px;
  font-size: 14px;
  margin-bottom: 16px;
}

.contact-form textarea {
  min-height: 160px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: #eee;
}

.contact-submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.contact-submit:hover {
  opacity: 0.7;
}

/* =====================
   TERMS PAGE
===================== */

main.terms {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px;
}

/* Título principal */
main.terms h1 {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 400;
  margin-bottom: 32px;
}

/* Subtítulos (igual estilo) */
main.terms h2 {
  font-size: 12px;              /* mismo tamaño */
  letter-spacing: 0.2em;        /* mismo tracking */
  font-weight: 400;
  margin: 48px 0 16px;          /* separación elegante */
  text-transform: uppercase;    /* por si acaso */
}

/* Texto */
main.terms p {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
}

main.terms h1 {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;      /* negrilla */
  text-align: center;   /* centrado */
  margin-bottom: 48px;
}

main.careers {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 72px); /* descuenta header */
}

/* IZQUIERDA */
.careers-text {
  width: 50%;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.careers-text h1 {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 32px;
}

.careers-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 420px;
}

.careers-email {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* DERECHA */
.careers-image {
  width: 50%;
}

.careers-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  main.careers {
    flex-direction: column;
  }

  .careers-text,
  .careers-image {
    width: 100%;
  }

  .careers-text {
    padding: 80px 24px;
  }

  .careers-image {
    height: 60vh;
  }
}

