.main-with-aside {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
  font-family: "comfortaa";
}

.main-with-aside main {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
}

.main-with-aside .image-container img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.main-with-aside main section {
  border-radius: 8px;
  width: calc(100% - 60px);
  min-height: 50vh;
  margin-bottom: var(--space-between-sections);
}


.main-with-aside main section.hotel-contact-info {
  min-height: unset;
  margin-bottom: 30px;
}

.main-with-aside main section.hotel-contact-info .row {
  margin: unset;
}

.main-with-aside main section .btn {
  width: max-content;
  padding-top: 10px;
}

.main-with-aside main section .btn:active,
.main-with-aside main section .btn:focus {
  background-color: white;
  color: #45c2cc;
}

.main-with-aside main section .title {
  color: #2CCCD3;
  font-family: Comfortaa;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.12px;
}

.main-with-aside main section p {
  color: #97999B;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.64px;
}

.main-with-aside aside {
  width: 50%;
  padding: 0 30px 30px 0px;
  position: relative;
}
.main-with-aside .gallery-aside {
  width: 100%;
  height: calc(100vh - 182px);/* Altura del header + */
  position: sticky;
  top: 168px;
  left: 0;
  overflow: hidden;
}

.main-with-aside .gallery-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.swiper-buttons {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative !important;
  color: white;
  background-color: #ff9900;
  border-radius: 100%;
  position: absolute;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

@media (max-width: 1024px) {
  .main-with-aside main {
    width: 100%;
  }

  .main-with-aside main section {
    border-radius: 25px;
    min-height: unset;
    width: calc(100% - 48px);
    margin-bottom: 35px;
  }

  .main-with-aside aside {
    display: none;
  }

  .main-with-aside main section .btn--yellow {
    background-color: #2cccd3;
  }
}