 #historia {
  padding: 60px 0;
  background-color: #f7efe5;
}

.historia {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.historia img {
  width: 300px;
  max-height: 480px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  order: 1;
}

.historia-text {
  order: 2;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a3f35;
  text-align: center;
  max-width: 600px;
  border: 1.5px solid #c9a96e;
  border-radius: 8px;
  padding: 28px 24px;
  background-color: #fdf8f3;
  margin: 0 16px;
}

@media (min-width: 768px) {
  .historia {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .historia-text {
    font-size: .9rem; color: var(--mocha); line-height: 1.6; font-weight: 300;
  }

  .historia img {
    order: 2;
    flex: 0 0 460px;
    max-width: 460px;
    height: 400px;
  }
}