@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;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;
}
:root {
  --background-button: #AB182D;
  --color-text: #ffffff;

  --font-principal: "Poppins", sans-serif;
  --font-text: "Montserrat", sans-serif;
}
/**______________ GLOBALES ________________**/
.main__button {
  height: 60px;
  font-family: var(--font-text2);

  color: var(--color-text);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 100px;

  z-index: 0;
  background-color: var(--background-button);
  overflow: hidden;
}
.main__button-header {
  max-width: 223px;
  width: 100%;
}
.main__button:hover {
  color: #ffffff;
}
.main__button:hover:after {
  height: 100%;
}
.main__button:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background: #AB182D;
}
.whatsapp-button {
  position: fixed;
  bottom: 80px;
  right: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0; /* Inicialmente oculto */
  transition: opacity 0.3s ease;
}

.whatsapp-button img {
}

/**______________ GLOBALES ________________**/
.footerblack {
  padding: 6px 20px;
  background-color: black;
  color: white;
  position: fixed;
  bottom: 0;
}

.mapa {
  width: 100%;
  position: relative;
  transform: translateY(100px);
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 30px -8px rgba(0, 0, 0, 0.3);
}

[data-gallery] {
  cursor: zoom-in;
}
.container {
  max-width: 1440px;
  width: 90%;
  margin: auto;
}

/**________________ Nav _________________**/
@media screen and (max-width: 992px) {
  #menu {
    height: 370px;
    position: absolute;
    width: 100%;
    background: rgb(255, 255, 255);
    left: 0;
    top: 0;
    z-index: 9;
  }
  .nav__prueba {
    min-height: 370px;
    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%;
}
.nav__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* .nav__logo-container {
} */
.logotipo {
  width: 130px;
  height: 65px;
  object-fit: contain;
  position: relative;
  z-index: 999;
  display: flex;
}
.nav__links-container {
  display: none;
}
.nav__links {
  display: flex;
  gap: 43px;
}
.nav__links a {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-text);
}
.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;
}

@media screen and (min-width: 768px) {
  .logotipo {
    width: 180px;
    height: 90px;
  }
}

@media screen and (min-width: 992px) {
  .logotipo {
    width: 236px;
    height: 115px;
  }
  .nav__links-container {
    display: flex;
    align-items: center;
    gap: 46px;
  }
  .nav__menu-mobile {
    display: none;
  }
  .nav__prueba {
    display: flex;
    gap: 36px;
  }
}
/**________________ Nav _________________**/

/**________________ Header _________________**/

.header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    url("/wp-content/themes/rubatoluca/assets/images/banner.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;

  width: 100%;
  min-height: 766px;
  height: auto;
}
.header__container {
  height: 766px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.header__title-span {
  position: absolute;
  top: -25%;
  font-size: 60px;
  font-weight: 400;
  font-family: "Astral Sisters";
  color: #AB182D;
}

.header__title {
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
  font-family: var(--font-principal);
  font-size: 28px;
  line-height: 39px;
  z-index: 1;
}
.header__subtitle {
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  color: var(--color-text);
}

.header__house {
  position: absolute;
  bottom: 59px;
}
@media screen and (min-width: 390px) {
  .header__title {
    font-size: 36px;
  }
  .header__title-span {
    top: -35%;
    font-size: 76px;
  }
  .header__subtitle {
    font-size: 20px;
  }
}
@media screen and (min-width: 575px) {
  .header__subtitle {
    max-width: 423px;
  }
}
@media screen and (min-width: 768px) {
  .header__content {
    gap: 20px;
  }

  .header__title {
    font-size: 46px;
  }
  .header__title-span {
    top: -45%;
    font-size: 97px;
  }
  .header__subtitle {
    font-size: 22px;
  }
}
@media screen and (min-width: 992px) {
  .header__content {
    gap: 31px;
  }
  .header__title {
    font-size: 60px;
  }
  .header__title-span {
    font-size: 127px;
    top: -66%;
  }
  .header__subtitle {
    max-width: initial;
  }
}
/**________________ Header _________________**/
/**________________ Plusvalía & Ubicación _________________**/
.location {
  width: 100%;
}
.location__content {
  display: flex;
  height: auto;
  /* background: blue; */
  justify-content: space-between;
  align-items: center;

  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
}
.location__title {
  width: 265px;
}
.location__title span {
  color: #AB182D;
  font-family: "Astral Sisters", sans-serif;
  font-size: 70px;
  font-weight: 400;
}
.location__title h2 {
  color: #433c49;
  font-size: 46px;
  text-align: left;
  font-weight: 700;
  line-height: 50px;
  font-family: var(--font-principal);
}
.location__text {
  max-width: 560px;
  width: 100%;
  gap: 36px;
  display: flex;
  flex-direction: column;
}
.location__text p {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 500;
}
.location__text span {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 700;
  color: #AB182D;
}

@media screen and (min-width: 768px) {
  .location__text p {
    font-size: 22px;
  }
  .location__text span {
    font-size: 22px;
  }
}
@media screen and (min-width: 992px) {
  .location__content {
    flex-direction: row;
    min-height: 525px;
    padding: 0;
  }
  .location__title h2 {
    line-height: 50px;
  }
  .location__title span {
    font-size: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .location__content {
    flex-direction: row;
    min-height: 525px;
    padding: 0;
  }
  .location__title {
    width: 580px;
  }
  .location__title h2 {
    font-size: 70px;
    line-height: 66px;
  }
  .location__title span {
    font-size: 104px;
  }
}
@media screen and (min-width: 1400px) {
  .location__content {
    flex-direction: row;
    min-height: 525px;
    padding: 0 30px;
  }
  .location__title {
    color: #433c49;
  }
}
/**________________ Plusvalía & Ubicación _________________**/
/**________________ Modelo Girona y Terrassa _________________**/

.modelo-girona {
  width: 100%;
  background-color: #AB182D;
}
.modelo-terrassa {
  width: 100%;
  background-color: #140003;
}
.modelo-girona__content {
  min-height: 821px;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
.modelo-terrassa__content {
  min-height: 821px;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: center;
  padding: 50px 0;
}

.modelo-girona__info,
.modelo-terrassa__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  max-width: 600px;
  width: 100%;
}
.modelo-girona__title-container,
.modelo-terrassa__title-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.modelo-girona__title,
.modelo-terrassa__title {
  color: #ffffff;
  font-size: 40px;
  line-height: 50px;
  font-family: var(--font-principal);
  font-weight: 400;
  text-align: right;
}
.modelo-terrassa__title span {
  color: #ffffff;
  font-size: 95px;
  font-family: "Astral Sisters", sans-serif;
  font-weight: 400;
}
.modelo-girona__title span {
  color: #140003;
  font-size: 95px;
  font-family: "Astral Sisters", sans-serif;
  font-weight: 400;
}

.modelo-girona__paragraph,
.modelo-terrassa__paragraph {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
}

.modelo-girona__paragraph span,
.modelo-terrassa__paragraph span {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0em;
  text-align: left;
}

.modelo-girona__metros,
.modelo-terrassa__metros {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.modelo-girona__metros-content,
.modelo-terrassa__metros-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.modelo-girona__construccion,
.modelo-terrassa__construccion {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
}

.modelo-girona__terreno,
.modelo-terrassa__terreno {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
}

.modelo-girona__buttons,
.modelo-terrassa__buttons {
  display: flex;
  gap: 28px;
  flex-direction: column;
  width: 100%;
}
.modelo-terrassa__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: var(--font-principal);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
  background-color: #AB182D;
  width: 100%;
  height: 60px;
  cursor: pointer;
  border-radius: 50px;
}
.modelo-girona__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: var(--font-principal);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  color: #AB182D;
  background-color: #FFFFFF;
  width: 100%;
  height: 60px;
  cursor: pointer;
  border-radius: 50px;
}

.modelo-terrassa__button--galeria {
  background-color: #7B1620;
  color: #FFFFFF;
}
.modelo-girona__button--galeria {
  color: #FFFFFF;
  background-color: #6F151D;
}

.modelo-girona__paragraph-dowm,
.modelo-terrassa__paragraph-dowm {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
  max-width: 500px;
  width: 100%;
}

.modelo-girona__image,
.modelo-terrassa__image {
  max-width: 600px;
  width: 100%;
}

.modelo-girona__image img,
.modelo-terrassa__image img {
  width: 100%;
  object-fit: cover;
  height: 500px;
  display: flex;
}

@media screen and (min-width: 768px) {
  .modelo-girona__paragraph,
  .modelo-terrassa__paragraph {
    font-size: 22px;
  }
  .modelo-girona__buttons,
  .modelo-terrassa__buttons {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .modelo-girona__content,
  .modelo-terrassa__content {
    min-height: 739px;
    flex-direction: row;
    gap: 40px;
    padding: 0;
  }
  .modelo-girona__image img {
    margin-top: -79px;
    height: 739px;
  }
  .modelo-terrassa__image img {
    height: 739px;
    margin-bottom: -79px;
  }
  .modelo-girona__paragraph span,
  .modelo-terrassa__paragraph span {
    font-size: 22px;
  }
}
@media screen and (min-width: 1400px) {
  .modelo-girona__content,
  .modelo-terrassa__content {
    min-height: 820px;
    flex-direction: row;
    padding: 0;
  }
  .modelo-girona__title-container,
  .modelo-terrassa__title-container {
    justify-content: flex-start;
  }
  .modelo-girona__title,
  .modelo-terrassa__title {
    line-height: 55px;
  }
  .modelo-girona__title span,
  .modelo-terrassa__title span {
    font-size: 120px;
  }
  .modelo-girona__image img {
    width: 664px;
    height: 820px;
    margin-top: -79px;
  }
  .modelo-terrassa__image img {
    width: 664px;
    height: 820px;
  }
  .modelo-girona__buttons,
  .modelo-terrassa__buttons {
    flex-direction: row;
  }
  .modelo-girona__button,
  .modelo-terrassa__button {
    width: 222px;
    height: 60px;
  }
  .modelo-girona__image,
  .modelo-terrassa__image {
    width: initial;
    max-width: initial;
    height: initial;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
}

.modal__content {
  background-color: white;
  max-width: 1273px;
  max-height: 937px;
  width: calc(100vw - 50px);
  height: calc(100vh - 100px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 60px 15px 15px;
  overflow: auto;
  position: relative;
}
.modal__button-container {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 35px;
  top: 15px;
}
.modal__button-close {
  cursor: pointer;
  background: none;
}
.modal__container {
  display: flex;
  gap: 31px;
  flex-direction: column-reverse;
  align-items: center;
}
.modal__images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__images img {
  width: 100%;
}
.modal__images-title {
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
}
.modal__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.modal__title-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal__modelo {
  font-family: Poppins;
  font-weight: 400;
  text-align: center;
  font-size: 40px;
  line-height: 80px;
  color: #AB182D;
}
.modal__girona {
  font-family: "Astral Sisters";
  font-weight: 400;
  font-size: 80px;
  margin-top: -40px;
}
.modal__modelo span {
  /* font-size: 120px; */
  color: #000000;
}
.modal__price {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
}
.modal__amenidades {
  display: flex;
  flex-direction: column;
  gap: 31px;
}
.modal__planta-container {
  display: flex;
  align-items: center;
  gap: 31px;
}
.modal__planta {
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
}
.modal li {
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  list-style: inside;
  margin-left: 60px;
}
.modal__low {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  margin-top: 50px;
}
.modal__button {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  max-width: 291px;
  width: 100%;
  height: 60px;
  background-color: #AB182D;
  border-radius: 100px;

  cursor: pointer;
}
.modal__paragraph {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
  color: #444444;
}
@media screen and (min-width: 390px) {
  .modal__price {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .modal__content {
    width: calc(100vw - 100px);
  }
  .modal__images {
    flex-direction: row;
  }

  .modal__container {
    align-items: center;
  }
  .modal__title-container {
    flex-direction: row;
  }
  .modal__girona {
    font-family: "Astral Sisters";
    font-weight: 400;
    font-size: 80px;
    margin-top: 0;
  }
  .modal__price {
    font-size: 28px;
  }
}
@media screen and (min-width: 992px) {
  .modal__images img {
    width: initial;
  }
  .modal__content {
    padding: 40px;
  }
  .modal__button-container {
    top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .modal__container {
    flex-direction: row;
    align-items: initial;
  }
  .modal__low {
    align-items: flex-start;
  }
  .modal__low {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    margin-top: 0;
  }
  .modal__girona {
    font-size: 120px;
    line-height: 38px;
  }
  .modal__title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: initial;
    gap: initial;
  }
}

.show {
  display: block;
}
/**________________ Modelo Girona y Terrassa _________________**/

.map {
  width: 100%;
  background-color: #ffffff;
}
.map__content {
  height: auto;
}
.map__title {
  text-align: center;
  font-family: Astral Sisters;
  font-size: 80px;
  font-weight: 400;
  line-height: 75px;
  letter-spacing: 0em;
  text-align: center;
  color: #AB182D;
  margin-top: 50px;
}
.map__description {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column-reverse;
  margin-top: 50px;
  gap: 50px;
}
.map__description iframe {
  width: 100%;
  max-width: 636px;
}
.map__text {
  max-width: 530px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.map__text p {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
}
.map__text span {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #AB182D;
}

.map__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: var(--font-principal);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
  background-color: #AB182D;
  width: 100%;
  height: 60px;
  cursor: pointer;
  border-radius: 50px;
}

@media screen and (min-width: 768px) {
  .map__title {
    font-size: 95px;
  }
}

@media screen and (min-width: 992px) {
  .map__title {
    margin-top: 166px;
  }
  .map__text p {
    font-size: 22px;
  }
  .map__text span {
    font-size: 22px;
  }
  .map__description {
    flex-direction: row;
  }
  .map__description iframe {
    max-width: 430px;
  }
}
@media screen and (min-width: 1200px) {
  .map__title {
    font-size: 120px;
  }
  .map__description {
    flex-direction: row;
    margin-top: 77px;
  }
  .map__description iframe {
    max-width: 530px;
  }
}

@media screen and (min-width: 1400px) {
  .map__description iframe {
    max-width: 636px;
  }
  .map__button {
    width: 222px;
    height: 60px;
  }
}

/**________________ Mapa _________________**/
/**________________ photos _________________**/
.photos {
  width: 100%;
  background-color: #ffffff;
  padding-bottom: 50px;
}
.photos__content {
  min-height: 656px;
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  height: auto;
  justify-content: center;
  gap: 30px;
}
.photos__content::-webkit-scrollbar {
	display: none;
}
.photos__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #f6f6f6;
  gap: 20px;
  justify-content: center;
	justify-items:center;
  min-width: 1315px;
  width: 100%;
  height: 400px;
}
.photos__images img {
  max-width: 311px;
  width: 100%;
  height: 400px;
}
.photos__button-container {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.photos__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: var(--font-principal);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
  background-color: #AB182D;
  max-width: 240px;
  width: 100%;
  height: 60px;
  cursor: pointer;
  border-radius: 50px;
}
@media screen and (min-width: 992px) {
  .photos__images {
    min-width: initial;
  }
  .photos__button-container {
    padding: 0;
  }
}
@media screen and (min-width: 1400px) {
  .photos {
  }
}
/**________________ photos _________________**/
/**________________ Amenidades _________________**/
.amenidades {
  width: 100%;
  background-color: #ffffff;
}
.amenidades__content {
  min-height: 686px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.amenidades__text {
  background-color: #f6f6f6;
  height: auto;
  max-width: 1021px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
  gap: 50px;
}

.amenidades__text-container {
  max-width: 507px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  margin: auto;
  width: 90%;
}
.amenidades__title {
  font-family: Astral Sisters;
  font-size: 58px;
  font-weight: 400;
  line-height: 75px;
  letter-spacing: 0em;
  text-align: center;
  color: #AB182D;
}
.amenidades__paragraph {
  font-family: var(--font-text);
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
}
.amenidades__paragraph span {
  font-family: var(--font-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #AB182D;
}
.amenidades__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: var(--font-principal);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
  background-color: #7B1620;
  width: 100%;
  height: 60px;
  cursor: pointer;
  border-radius: 50px;
}

.amenidades__icons {
  max-width: 1021px;
  width: 100%;
  height: 572px;
  background-color: #7C4212;
  overflow-x: hidden;
  white-space: nowrap;
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}
.amenidades__icons-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding-left: 70px;
}
.amenidades__icons-left h3 {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
}
.amenidades__icon {
  display: flex;
  align-items: center;
  gap: 45px;
}
.amenidades__icons-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding-right: 70px;
}
.amenidades__icons-right h3 {
  font-family: var(--font-text);
  letter-spacing: 0em;
	font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  color: #ffffff;
}


/**________________ Mas Desarrollos _________________**/


.desarrollos {
  background-color: #AB182D;
  width: 100%;
  background-image: url(/wp-content/themes/themaurea/assets/icons/shape2.svg);
  background-size: contain;
}
.desarrollos__content {
  min-height: 316px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
.desarrollos__title {
  color: #ffffff;
  justify-content: center;
  padding-top: 40px;
  text-align: center;
  font-family: Poppins;
  font-weight: 600;
}
.desarrollos__logos {
  padding-bottom: 40px;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-direction: column;
}
.desarrollos__logos img {
}


@media screen and (min-width: 575px) { 
  .desarrollos__logos {
    flex-direction: row;
  }
}



@media screen and (min-width: 390px) {
  .amenidades__title {
    font-size: 80px;
  }
}
@media screen and (min-width: 768px) {
  .amenidades__content {
    flex-direction: row;
  }
  .amenidades__text {
    max-width: 500px;
  }
  .amenidades__icons {
    margin-left: -70px;
  }
  .amenidades__text {
    height: 686px;
  }
  .amenidades__text-container {
    align-items: flex-start;
  }
  .amenidades__button {
    max-width: 291px;
  }
  .amenidades__title {
  }
  .amenidades__paragraph {
    max-width: 327px;
  }
}
@media screen and (min-width: 992px) {
  .amenidades__content {
    flex-direction: row;
  }
  .amenidades__text {
    max-width: 550px;
  }
  .amenidades__paragraph {
    max-width: 410px;
  }
  /* .amenidades__text {
    background-color: #F6F6F6;
    height: auto;
    max-width: 1021px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 50px 0;
    gap: 50px;
  } */
  /* .amenidades__text {
    background-color: #F6F6F6;
    height: 686px;
    max-width: 1021px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 50px;
  } */
}
@media screen and (min-width: 1200px) {
  .amenidades__content {
    flex-direction: row;
  }
  .amenidades__text {
    max-width: 1021px;
  }
  .amenidades__text {
    align-items: flex-start;
  }
  .amenidades__title {
    font-size: 95px;
  }
  .amenidades__paragraph {
    max-width: initial;
  }
}
@media screen and (min-width: 1400px) {
  .amenidades__content {
    flex-direction: row;
  }
  .amenidades__icons {
    margin-left: -215px;
  }
  .amenidades__text-container {
    margin-left: 100px;
  }
  .amenidades__title {
    font-size: 120px;
  }
}
/**________________ Amenidades _________________**/
