@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 12px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: #8e8e8e;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #c7c7c7;
}
.whatsapp-button {
  position: fixed;
  bottom: 95px;
  right: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0; /* Inicialmente oculto */
  transition: opacity 0.3s ease;
}

.container {
  max-width: 1250px;
  width: 90%;
  margin: auto;
}

.main__button {
  color: #fff;
  max-width: 233px;
  width: 100%;
  height: 60px;
  padding: 0 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;

  font-family: Poppins;
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  border-radius: 100px;

  z-index: 0;
  background-color: #2fb44b;
  overflow: hidden;

  border: none;
}
.main__button:hover {
  background-color: #17e442;
}
.popup__button {
  width: 100%;
  max-width: 320px;
  padding: 0;
  font-size: 15px;
}
@media screen and (min-width: 395px) {
  .popup__button {
    font-size: 18px;
  }
}

/**________________ Nav _________________**/
@media screen and (max-width: 1200px) {
  #menu {
    height: 650px;
    position: absolute;
    width: 100%;
    background: rgb(255, 255, 255);
    left: 0;
    top: 0;
    z-index: 9;
    border-radius: 0 0 25px 25px;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    -ms-border-radius: 0 0 25px 25px;
    -o-border-radius: 0 0 25px 25px;
  }
  .nav__links-container {
    min-height: 300px;
    width: 100%;
    display: flex;
    gap: 50px;
    flex-grow: 1;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
  }
  .nav__links {
    display: flex;
    gap: 43px;
    flex-direction: column;
    align-items: center;
  }
}
.nav {
  width: 100%;
  background-color: #ffffff;
}
.nav__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 97px;
}
/* .nav__logo-container {
} */
.logotipo {
  width: 163px;
  height: 73px;
  object-fit: contain;
  position: relative;
  z-index: 999;
  display: flex;
}
.nav__links-container {
  display: none;
}
.nav__links {
  display: flex;
  gap: 43px;
  justify-content: center;
  height: 100%;
}

.nav__links a {
  /*color: #000;
  */
  text-align: center;
  font-size: 18px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}
.nav__links a:hover {
  color: #2fb44b;
}
.nav__icons {
  display: flex;
  gap: 29px;
}
.nav__icons a {
  display: flex;
}

.nav__menu-mobile {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__menu-mobile img {
  width: 35px;
  height: 35px;
  position: relative;
  z-index: 999;
}
.active {
  color: #5084a3;
}
@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1200px) {
  .nav__links-container {
    display: flex;
    align-items: center;
    gap: 46px;
  }
  .nav__menu-mobile {
    display: none;
  }
  /* .nav__prueba {
    display: flex;
    gap: 36px;
  } */
}
/**________________ Nav _________________**/

/**________________ Home _________________**/

.home {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    url("/wp-content/themes/themenatura/assets/img/banner.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;

  width: 100%;
  min-height: 766px;
  height: auto;
}
.home__container {
  height: 766px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.home__title-span {
  position: absolute;
  top: -25%;
  font-size: 60px;
  font-weight: 400;
  font-family: "Astral Sisters";
  color: #fdbd4c;
}

.home__title {
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.home__subtitle {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 700px;
}

.home__button {
  max-width: 223px;
  height: 60px;
  width: 100%;
  background-color: #2fb44b;
  border-radius: 100px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
}
.home__button:hover {
  background-color: #17e442;
}
.home__house {
  position: absolute;
  bottom: 59px;
}
@media screen and (min-width: 390px) {
  .home__title {
    font-size: 31px;
  }
  .home__title-span {
    top: -35%;
    font-size: 76px;
  }
  .home__subtitle {
    font-size: 20px;
  }
}
@media screen and (min-width: 575px) {
  .home__subtitle {
  }
}
@media screen and (min-width: 768px) {
  .home__content {
    gap: 20px;
  }

  .home__title {
    font-size: 46px;
  }
  .home__title-span {
    top: -45%;
    font-size: 97px;
  }
  .home__subtitle {
    font-size: 22px;
  }
}
@media screen and (min-width: 992px) {
  .home__content {
    gap: 31px;
  }
  .home__title {
    font-size: 70px;
  }
  .home__title-span {
    font-size: 127px;
    top: -66%;
  }
  .home__subtitle {
  }
}
/**________________ Home _________________**/

/**________________ desarrollo _________________**/
.desarrollo {
  width: 100%;
  background-color: #f6f6f6;
  /* margin-bottom: -150px; */
}
.desarrollo__content {
  display: flex;
  height: auto;
  justify-content: space-between;
  align-items: center;

  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;

  z-index: 999;
  position: relative;
}
.desarrollo__title {
}
.desarrollo__title img {
  width: 220px;
  height: 120px;
  object-fit: contain;
}

.desarrollo__text {
  max-width: 572px;
  width: 100%;
  gap: 36px;
  display: flex;
  flex-direction: column;
}
.desarrollo__text p {
  font-size: 18px;
  font-family: Montserrat;
  font-weight: 500;
  color: #072637;
}
.desarrollo__text span {
  font-size: 18px;
  font-family: Montserrat;
  font-weight: 500;
  color: #50849f;
}

@media screen and (min-width: 575px) {
  .desarrollo__title img {
    width: 275px;
  }
}

@media screen and (min-width: 768px) {
  .desarrollo__text p {
    font-size: 22px;
  }
  .desarrollo__text span {
    font-size: 22px;
  }
}
@media screen and (min-width: 992px) {
  .desarrollo__content {
    flex-direction: row;
    min-height: 461px;
    padding: 0;
    margin-bottom: -160px;
  }
  .desarrollo__title h2 {
    line-height: 50px;
  }
  .desarrollo__title span {
    font-size: 70px;
  }
  .desarrollo__title img {
    width: 375px;
    height: 196px;
  }
}
@media screen and (min-width: 1200px) {
  .desarrollo__title {
    width: 580px;
  }
  .desarrollo__title h2 {
    font-size: 70px;
    line-height: 66px;
  }
  .desarrollo__title span {
    font-size: 104px;
  }
  .desarrollo__title img {
    width: 474.5px;
  }
}
@media screen and (min-width: 1400px) {
  .desarrollo__title {
    color: #433c49;
  }
}
/**________________ desarrollo _________________**/
/**________________ Modelo _________________**/

.modelo {
  width: 100%;
}
.modelo__wave {
  background-color: #f6f6f6;
  margin-bottom: -5px;
}
.modelo__content {
  /* padding-top: 50px; */
}
.modelo-tulipan__content {
  margin-top: 83px;
}
.modelo__title {
  color: #072637;
  text-align: center;
  font-size: 25px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 111.5%;
}
.modelo__title span {
  color: #11ae4b;
}
.modelo-violeta__title {
  margin-bottom: 50px;
}
.modelo-tulipan__title {
  margin-top: 130px;
  margin-bottom: 50px;
}
.modelo-violeta__container {
  width: 100%;
  display: flex;
  max-width: 1600px;
  margin: auto;
  flex-direction: column;
  justify-content: space-between;
}
.modelo-tulipan__container {
  width: 100%;
  display: flex;
  max-width: 1600px;
  margin: auto;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.modelo-violeta__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.modelo-violeta__image {
  margin: auto;
}
.modelo-tulipan__image {
  margin: auto;
}
.modelo-tulipan__image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
}
.modelo__text {
  max-width: 572px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 90%;
  margin: auto;
  /* margin-bottom: 100px; */
  margin-top: 50px;
}
.modelo-tulipan__text {
  max-width: 572px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 90%;
  margin: auto;
  /* margin-bottom: 100px; */
}
.modelo__text p,
.modelo-tulipan__text p {
  color: #072637;
  font-size: 18px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.modelo__text span,
.modelo-tulipan__text span {
  color: #11ae4b;
  font-weight: 700;
}
.modelo__construccion {
  display: flex;
  align-items: center;
  gap: 15px;
}
.modelo__construccion h3 {
  color: #072637;
  font-size: 18px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.modelo__promedio {
  display: flex;
  align-items: center;
  gap: 15px;
}

.modelo__button {
  border-radius: 100px;
  background: #11ae4b;
  width: 100%;
  height: 60px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
}
a.modelo__button.secondary {
  background-color: #f6f6f6;
  color: black;

  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.modelo__button:hover {
  background-color: #17e442;
}
.modelo__img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.modelo__img img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  object-fit: contain;
}
.modelo__galeria {
  gap: 36px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 181px;
}
.modelo__galeria img {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
}
@media screen and (min-width: 390px) {
  .modelo__title {
    font-size: 35px;
  }
}
@media screen and (min-width: 768px) {
  .modelo__title {
    font-size: 55px;
  }
  .modelo__text p,
  .modelo-tulipan__text p {
    font-size: 22px;
  }
  .modelo__text h3,
  .modelo-tulipan__text h3 {
    font-size: 22px;
  }
  .modelo__text {
    padding-right: 20px;
  }
  .modelo-tulipan__text {
  }
}
@media screen and (min-width: 992px) {
  .modelo__img img {
    max-width: 729px;
  }
  .modelo-violeta__image img {
    /* max-width: 778px;
    height: 661px; */
  }
  .modelo-tulipan__image img {
    /* max-width: 602px;
    height: 552px; */
  }
  .modelo__text,
  .modelo-tulipan__text {
    margin-left: 50px;
  }
  .modelo-tulipan__text {
    margin-right: 50px;
  }
  .modelo__text {
    margin-right: 20px;
    margin-top: auto;
  }
  .modelo__button {
    max-width: 297px;
  }
  .modelo-violeta__container {
    flex-direction: row;
    margin-top: 50px;
  }

  .modelo-tulipan__container {
    flex-direction: row;
  }
  .modelo__img {
    margin: 0;
  }
  .modelo-violeta__title {
    margin-bottom: 0;
  }
  .modelo-tulipan__title {
    margin-bottom: 78px;
  }
}
@media screen and (min-width: 1200px) {
  .modelo__content {
    /* padding-top: 152px; */
  }
  .modelo__text {
    margin-right: 50px;
    /* margin-top: 128px; */
  }
  .modelo-tulipan__text {
    /* margin-top: 128px; */
    /* margin-left: 113px; */
  }
  .modelo-violeta__container {
    margin-top: 0;
  }
}
@media screen and (min-width: 1400px) {
  .modelo__title {
    font-size: 70px;
  }
  .modelo-violeta__container,
  .modelo-tulipan__container {
    max-width: 1440px;
  }
  .modelo__text {
    margin-bottom: 100px;
  }
}

.modelo-galeria__overlay {
  position: relative;
}

.modelo__galeria {
  position: relative;
}

.overlay {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: calc(100% + 20px);
  height: calc(100% + 100px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -10px;
  z-index: 1;
  -webkit-transform: translate(-50%, -48%);
  -moz-transform: translate(-50%, -48%);
  -ms-transform: translate(-50%, -48%);
  -o-transform: translate(-50%, -48%);
}

.modelo-galeria__overlay:hover .overlay {
  opacity: 1;
}

.modelo-galeria__button {
  background: red;
  max-width: 222px;
  width: 100%;
  display: flex;
  height: 60px;
  padding: 11px 26px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #f6f6f6;
  cursor: pointer;
}

.modelo-galeria__button img {
  width: initial;
}

/**________________ Modelo _________________**/

/**________________ amenidades turissa _________________**/
.amenidades-turissa {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  padding-top: 103px;
}
.amenidades-turissa__elipse {
  display: none;
}
.amenidades-turissa__content {
  position: relative;
  height: auto;
  z-index: 3;
}
.amenidades-turissa__title {
  color: #000;
  text-align: left;
  font-size: 25px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 111.5%;
}
.amenidades-turissa__lista {
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 500;
  color: #000;
  list-style: inside;
  /* margin-left: 23px; */
  line-height: 26.82px;
  max-width: 500px;
  width: 100%;
}
.amenidades-turissa__lista li {
}
.amenidades-turissa__container {
  width: 100%;
  display: flex;
  margin: auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.amenidades-turissa__text {
  max-width: 572px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  margin: auto;
  /* margin-top: 50px; */
  /* margin-bottom: 50px; */
}

.amenidades-turissa__text h3 {
  color: #000;
  font-size: 18px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 27px;
}
.amenidades-turissa__construccion {
  display: flex;
  align-items: center;
  gap: 15px;
}
.amenidades-turissa__promedio {
  display: flex;
  align-items: center;
  gap: 15px;
}
.amenidades-turissa__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.amenidades-turissa__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-radius: 100px;
  background-color: #f6f6f6;
  width: 100%;
  height: 60px;
  color: #072637;
  text-align: center;
  font-size: 18px;
  font-family: Poppins;
  cursor: pointer;
  /* transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s; */
}
.amenidades-turissa__button:hover {
  /* background-color: #072637;
  color: #FFFF; */
}
.amenidades-turissa__img {
  width: 100%;
  display: flex;
  justify-content: center;
  /* margin-top: 50px; */
  gap: 20px;
  align-items: flex-end;
  flex-direction: row;
}
.amenidades-turissa__img img {
  object-fit: contain;
  width: 50%;
}
.amenidades-turissa__paragraph {
  color: #bababa;
  font-size: 14px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 17.07px;
}
/* .amenidades-mediterraneo__button {
  width: 100%;
  height: 60px;
  border-radius: 100px;
  background: #072637;
  cursor: pointer;
  color: #fff;
} */
@media screen and (min-width: 390px) {
  .amenidades-turissa__title {
    font-size: 35px;
  }
}
@media screen and (min-width: 575px) {
  .amenidades-turissa__img {
    gap: 43px;
  }
}
@media screen and (min-width: 768px) {
  .amenidades-turissa__title {
    font-size: 45px;
  }
  .amenidades-turissa__text h3 {
    font-size: 22px;
  }
  .amenidades-turissa__img img {
    width: initial;
  }
}
@media screen and (min-width: 992px) {
  /* .amenidades-mediterraneo__img img {
  } */
  /* .amenidades-mediterraneo__text {
  } */
  .amenidades-turissa__content {
    /* height: 880px; */
  }
  .amenidades-turissa__button {
    max-width: 347px;
  }
  .amenidades-turissa__container {
    flex-direction: row;
  }
  .amenidades-turissa__img {
    margin: 0;
  }
  .amenidades-turissa__elipse {
    display: block;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    object-fit: contain;
    position: absolute;
  }
  .amenidades-turissa__img img {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .amenidades-turissa__content {
    /* padding-top: 100px; */
    /* height: 765px; */
  }
  .amenidades-turissa__text {
    /* margin-top: 128px; */
  }
  .amenidades-turissa__buttons {
    flex-direction: row;
  }
  .amenidades-turissa__button {
    max-width: 222px;
  }
  .amenidades-turissa__container {
    gap: 78px;
  }
}
@media screen and (min-width: 1400px) {
  .amenidades-turissa__title {
    font-size: 50px;
  }
  .amenidades-turissa__content {
    /* height: 780px; */
  }
  .amenidades-turissa__paragraph {
    margin-top: 30px;
  }
}

/**________________ amenidades turissa   _________________**/
/**________________ Convivencia _________________**/
.wave-prueba {
  margin-top: -30px;
}
.convivencia {
  width: 100%;
  background-color: #ffffff;
  margin-top: 160px;
}
.convivencia__content {
  height: auto;
  /* padding: 250px 0 50px; */
}
.convivencia__title {
  color: #072637;
  font-size: 25px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 111.5%;
  text-align: center;
}
.convivencia__title span {
  color: #11ae4b;
}
.convivencia__convive {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.convivencia__convive img {
  width: 250px;
}
.convivencia__paragraph {
  max-width: 742px;
  width: 100%;
  color: #072637;
  font-size: 18px;
  font-family: Montserrat;
  font-weight: 500;
}
.convivencia__second-title {
  color: #5b8ba6;
  font-size: 25px;
  font-family: Poppins;
  font-weight: 700;
  line-height: 111.5%;
  text-align: center;
  margin-top: 50px;
}
.convivencia__icons {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  margin-top: 50px;
  gap: 80px;
  align-items: center;
}
.convivencia__icons img {
  width: 100%;
}
.convivencia__icons-left {
}
.convivencia__icons h3 {
  color: #072637;
  text-align: center;
  font-size: 18px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 26px;
}
.convivencia__icons-center {
}

.convivencia__icons-right {
}
.convivencia__wave {
  margin-bottom: -6px;
}
@media screen and (min-width: 390px) {
  .convivencia__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 575px) {
  .convivencia__second-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .convivencia__title {
    font-size: 55px;
  }
  .convivencia__paragraph {
    font-size: 22px;
  }
  .convivencia__convive {
    margin-top: 50px;
    gap: 30px;
  }
  .convivencia__convive img {
    width: initial;
  }
  .convivencia__second-title {
    font-size: 50px;
  }
  .convivencia__icons h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 992px) {
  .convivencia__convive {
    flex-direction: row;
    gap: 74px;
  }
  .convivencia__convive img {
    width: initial;
  }
  .convivencia__icons {
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .convivencia__content {
    /* padding: 152px 0 82px; */
  }
}
@media screen and (min-width: 1400px) {
  .convivencia__title {
    font-size: 70px;
  }
  .convivencia__convive {
    margin-top: 84px;
  }
  .convivencia__second-title {
    font-size: 70px;
    margin-top: 144px;
  }
  .convivencia__icons {
    margin-top: 129px;
  }
}

/**________________ Convivencia _________________**/
/**________________ Equipado _________________**/
.equipado {
  width: 100%;
  background-color: #11ae4b;
  position: relative;
}
.equipado__content {
  min-height: 546px;
  height: auto;
}
.equipado svg {
  position: absolute;
}
.equipado__title {
  color: #fff;
  text-align: center;
  font-size: 7vw;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 111.5%;
  margin: auto;
  width: 100%;
}
.equipado__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 61px;
  margin-top: 87px;
}
.equipado__icon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.equipado__icon h3 {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 111.5%;
}
.equipado__paragraph {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 111.5%;
  margin-top: 110px;
}
@media screen and (min-width: 390px) {
  .equipado__title {
    font-size: 25px;
    max-width: 365px;
  }
}
@media screen and (min-width: 575px) {
  .equipado__title {
    font-size: 30px;
  }
  .equipado__icons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .equipado__title {
    font-size: 40px;
    max-width: 560px;
  }
}
@media screen and (min-width: 992px) {
  .equipado__icons {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .equipado__title {
    font-size: 50px;
    max-width: 700px;
  }
}
/**________________ Equipado _________________**/
/**________________ Galeria mobile _________________**/
.wave {
  margin-top: -1px;
}

.galeria-mobile {
  width: 100%;
}
.galeria-mobile__content {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}
.imagen__mobile {
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  display: flex;
}
.imagen__mobile img {
  width: 100%;
  max-width: 450px;
  /* height: 100%; */
  object-fit: cover;
  border-radius: 35px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.imagen__mobile:hover img {
  transform: scale(1.2);
}
/**________________ Galeria mobile _________________**/

/**________________ Galeria _________________**/
.galeria {
  display: none;
}

@media screen and (min-width: 992px) {
  .galeria-mobile {
    display: none;
  }
  .galeria {
    width: 100%;
    background-color: #ffffff;
    display: block;
  }
  .galeria__content {
    display: grid;
    height: auto;
    min-height: 970px;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 35px;
  }
  .imagen:nth-child(1) {
    grid-row: 1;
    grid-column: 1 / 4;
  }

  .imagen:nth-child(2) {
    grid-row: 1;
    grid-column: 4 / 5;
  }
  .imagen:nth-child(3) {
    grid-row: 2;
    grid-column: 1 / 3;
  }
  .imagen:nth-child(4) {
    grid-row: 2 / 4;
    grid-column: 3 / 5;
  }
  .imagen:nth-child(5) {
    grid-row: 3;
    grid-column: 1 / 3;
  }
  .imagen {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
  }
  .imagen img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: cover;
  }
  .imagen:hover img {
    transform: scale(1.2);
  }
}
/**________________ Galeria _________________**/
/**________________ Mapa _________________**/

.map {
  width: 100%;
  background-color: #ffffff;
}
.map__content {
  height: auto;
  display: flex;
  padding: 46px 0 106px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.map__title {
  color: #433c49;
  font-size: 9vw;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 111.5%;
  margin: 41px 0;
}
.map__content iframe {
  width: 100%;
  margin: auto;
  border-radius: 25px;
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.15);
}

.map__button {
  padding: 10px 2rem;
  border: 2px solid white;
  color: white;
  background-color: transparent;
  border-radius: 2rem;
}

.map__button:hover {
  background-color: white;
  color: #5b8ba6;
}

/* @media screen and (min-width: 575px) { 
  .map__title {
    font-size: 50px;
  }
}

@media screen and (min-width: 768px) { 
  .map__title {
    font-size: 60px;
  }
} */
@media screen and (min-width: 768px) {
  .map__title {
    font-size: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .map__title {
    font-size: 70px;
  }
}
