#intro font{
    font-family: 'Arial Black';
    font-size:4rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap; /* 👈 Para que en pantallas pequeñas se acomoden verticalmente */
  gap: 16px;       /* Espacio entre los inputs */
}

.form-input {
  flex: 1 1 200px;     /* Crece, se encoge, mínimo 200px */
  padding: 10px;
  width: 100%;         /* Asegura que se ajuste al contenedor flexible */
  box-sizing: border-box;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Relación 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.textarea-responsive {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  resize: vertical;
  padding: 10px;

}