/* --- Contenedor Principal Estático --- */
.box-contact {
  width: 100%;
  max-width: 1200px; /* Ajustado para que sea una sección ancha */
  margin: 0 auto;
  padding: 80px 7.5%;
  background: #fff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* Eliminamos el transform: translate(100%, 0) y el position: fixed */
}

/* --- Títulos (Mantienen su estilo original) --- */
.box-contact form .title-contact {
  padding: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 2.5vh;
  color: #000;
}

.box-contact form .title-contact > span {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
  font-size: 18px;
  display: block;
  margin-top: 7px;
}

/* --- Estructura del Formulario --- */
.box-contact form .box-input {
  width: 100%;
  margin-bottom: 20px;
}

.box-contact form .box-input > input,
.box-contact form .box-input > textarea {
  outline: none;
  background: #f1f1f1;
  font-family: "Roboto", sans-serif;
  padding: 15px 12px; /* Un poco más de padding para mejor UX */
  width: 100%;
  border: none;
  font-size: 16px;
}

.box-contact form .box-input > textarea {
  min-height: 150px;
}

/* --- Botón de Envío --- */
.box-contact form > button {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  border-radius: 5px;
  border: none;
  padding: 15px 40px; /* Más ancho para diseño estático */
  cursor: pointer;
  transition: background 0.3s ease;
}

.box-contact form > button:hover {
  background: #303030;
}

/* --- Adaptación para Móviles --- */
@media only screen and (max-width: 768px) {
  .box-contact {
    padding: 50px 5%;
  }
  .box-contact form .title-contact {
    font-size: 32px;
  }
}