#contacto {
  padding: 20px;
  background-color: rgb(243, 240, 231);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.more_info_contacto {
  height: 250px;
  width: 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}

.more_info {
  height: 150px;
  width: 100%;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.more_info li:first-child {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
}

.more_info li {
  margin-bottom: 10px;
}

.img_contacto {
  height: 250px;
  background: transparent;
}

.contacto-container {
  width: 100%;
  max-width: 700px;
  border: 1px solid #000000;
}

.contacto-form {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 5px;
  margin-top: 10px;
  color: #000000;
  font-family: "Oswald", sans-serif;
}

#asunto {
  font-family: "Oswald", sans-serif;
}

option {
  font-family: "Oswald", sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px;
  border: 1px solid #000000;
  border-radius: 0;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  background-size: 10px;
}

button {
  padding: 10px;
  background-color: #1a9348;
  color: #ffffff;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
  transition: 0.3s ease-in-out;
}

button:hover {
  background-color: #0f6430;
}

@media (max-width: 500px) {
  html,
  body {
    overflow-x: hidden; /* Eliminar scroll horizontal */
    overscroll-behavior: none; /* Evitar forzar scroll extra */
    margin: 0; /* Eliminar márgenes que puedan causar desplazamiento */
    padding: 0;
    /* Elimina esta línea para que se mantenga el scroll vertical */
    /* overflow-y: hidden; */ /* Esta línea estaba bloqueando el scroll vertical */
  }

  body {
    touch-action: manipulation; /* Mejora la experiencia en dispositivos táctiles */
  }

  .more_info_contacto {
    height: 200px;
    width: 100%;
  }

  .more_info li:first-child {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
  }

  li {
    font-size: 0.8rem;
  }

  .img_contacto {
    height: 200px;
  }

  .contacto-container iframe {
    width: 450px;
  }
}
