/* =========================
   CONTACTO
   ========================= */


.contacto {
  max-width: 1100px;
  margin: 100px auto 0;
  padding: 0 40px 50px;
}

.contacto-titulo {
  margin-bottom: 24px;
}

.contacto-titulo h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.contacto-contenido {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contacto-datos {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.contacto-datos p {
  margin: 0 0 6px;
}

.contacto-estudio {
  margin-bottom: 20px !important;
}


.contacto-datos a {
  color: inherit;
  text-decoration: none;
}

.contacto-datos a:hover {
  opacity: 0.5;
}

.contacto-formulario form {
  width: 100%;
}


.campo input:focus,
.campo textarea:focus {
  border-bottom-color: #222;
}


.contacto-estudio {
  margin-bottom: 20px !important;
}

.campo {
  margin-bottom: 20px;
}

.campo label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 300;
}

.campo input,
.campo textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid #bbb;
  border-radius: 0;
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
}

.contacto-formulario button {
  margin-top: 5px;
  padding: 10px 24px;
  border: 1px solid #222;
  background: #fff;
  color: #222;
  -webkit-text-fill-color: #222;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.contacto-formulario button:hover {
  background: #222;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.campo input {
    height: 24px;
    padding: 5px 10px;
    box-sizing: border-box;
}

.campo textarea {
    height: 85px;
    padding: 8px 10px;
    box-sizing: border-box;
    resize: vertical;
}


.mensaje-formulario {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.4;
  min-height: 20px;
}

#mensaje-formulario.mensaje-ok {
  color: #3f7a50;
  font-weight: 400;
}

#mensaje-formulario.mensaje-error {
  color: #a33a3a;
  font-weight: 400;
}

#btn-enviar:disabled {
  opacity: 0.55;
  cursor: default;
}


/* RESPONSIVE */

@media (max-width: 768px) {


  .contacto {
    margin-top: 60px;
    padding: 0 24px 60px;
  }

  .contacto-titulo {
    margin-bottom: 8px;
  }

  .contacto-estudio {
    margin-bottom: 8px !important;
  }
  .contacto-datos {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.0;
  }
  .contacto-formulario { 
    transform: translateY(-28px);

  }
  .contacto-contenido {
    grid-template-columns: 1fr;
    gap: 60px;
  }

}