.find-us {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  background: #fff;
}

.find-us h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.find-us-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* MAPA */
.map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
}

/* INFO */
.info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-block {
  background: var(--cream-dark);
  padding: 15px;
  border-radius: 10px;
}

.info-block h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

/* ===================== DESKTOP ===================== */
@media (min-width: 768px) {

  .find-us-container {
    flex-direction: row;
    align-items: stretch;
  }

  .map {
    flex: 1.2;
  }

  .map iframe {
    height: 100%;
    min-height: 350px;
  }

  .info {
    flex: 1;
  }

  .info-block {
    padding: 20px;
  }

  .find-us h2 {
    font-size: 2.2rem;
  }
}