.location-section{
  padding: 50px 25px;
  background: linear-gradient(to bottom,#062739,#13252d);
  color: #fff;

  
}

.location-container{
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-info{
  text-align: center;
}

.location-info h2{
  font-size: 52px;
  line-height: 1;
}

/* mapa */
.location-map{
  display: flex;
  justify-content: center;
}

.location-map iframe{
  width: 100%;
  max-width: 550px;
  height: 420px;
  border: 0;
  border-radius: 24px;
  margin-top: 20px;
  box-shadow: var(--shadow);
}

/* MOBILE */
@media(max-width: 900px){
  .location-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-info h2{
    font-size: 34px;
  }

  .location-map iframe{
    height: 300px;
  }
  .location-section{
    display: flex;
  justify-content: center;
  }
}