/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
img{
  width: 100%;
    display: block;
}

.logoxiso{
  display: block;
  width: 76px;
}

li{
  list-style: none;
}

a{
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 21px;
  transition: 0.3s;
  font-weight: bold;
}

.propiedades a{
  color: #333;
  font-size: 18px;
  font-weight: normal;
}

a:hover{
 color: #7690dec5;
}


header{
  position: fixed;
  width: 100%;
  padding: 7px 27px;
  z-index: 1000;
}

.navbar {
width: 100%;
height: 60px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 36px 27px;
background: #05058ac2;
border-radius: 30px;
}

.navbar .links{
  display: flex;
  gap: 3.5rem;
}

.navbar .toggle_btn{
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.action_btn {
  background-image: linear-gradient(to right, rgb(104 144 235), rgb(45 92 158));
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 22px;
    font-weight: bolder;
}

.action_btn:hover{
    color: white;
}

.action_btn:active{
  scale: 0.95;
}

.dropdown_menu{
  display: none;
  position: absolute;
  right: -0.2;
  height: 0;
  top: 84px;
  width: 200px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 10px;
}

.dropdown_menu.open{
  height: 460px;
  background-color: #6ba0d9a1;
  top: 84px;
}

.dropdown_menu li{
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: left;
}

.dropdown_menu .action_btn{
  width: 100%;
  display: flex;
  justify-content: center;
}

.propiedades{
  padding-top: 120px;
  justify-content: center;
  align-items: center;
  text-align: center;
  justify-items: center;
}

.propiedades-titulo{
  text-align: center;
  font-size: 30px;
  color: #3449b3;
}

.select-menu{
  width: 380px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.select-menu .select-btn{
  display: flex;
  height: 55px;
  background: #283A97;
  color: white;
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.select-btn i{
  font-size: 25px;
}
.select-menu.active .select-btn i{
  transform: rotate(-180deg);
}
.select-menu .options{
  position: relative;
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background: #f7f7f7;
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
  display: none;
  transition: 0.3s;
  z-index: 300;
}
.select-menu.active .options{
  display: block;
  transition: 0.3s;
}
.options .option{
  display: flex;
  height: 55px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #f7f7f7;
  transition: 0.3s;
}
.options .option:hover{
  background: #dadada;
}
.option i{
  font-size: 25px;
  margin-right: 12px;
}
.option .option-text{
  font-size: 18px;
  color: #333;
}


.propiedadesgrid{
  display: grid;
  grid-row: auto;
}

.inmuebles{
  background: white;
  border-radius: 2rem;
  padding: 0 20px;
  margin-top: 40px;
}


.properties-container{
  display: grid;
grid-template-columns: repeat(auto-fit,minmax(240px,auto));
gap: 3rem;
padding: 0 50px;
margin-bottom: 30px;
}

.properties-container .box, .box1{
  background: #edeef7;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

.properties-container .box img{
  border-radius: 1rem;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.properties-container .box1 img{
  border-radius: 1rem;
  height: 220px;
  object-fit: cover;
  object-position: 60% 0%;
}

.properties-container .box2 img{
  border-radius: 1rem;
  height: 220px;
  object-fit: cover;
  object-position: 0% 35%;
}

.precio{
  margin-top: 10px;
}

.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: rgba(38, 44, 216, 0.877);
  border-radius: 6px;
  margin: 14px;
  margin-left: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #265DF2;
}


.quicklinks{
  background-color:#283A97;
}

.linkstitulo{
  color: white;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  font-size: 35px;
}

.links1{
  line-height: 2;
  color: white;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 18px;
}

.empresa-reg{
  color: white;
  text-align: center;
  padding-bottom: 40px;
}

.links1 a{
  line-height: 2;
  color: white;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.links1 a:hover{
  line-height: 2;
  color: rgb(200, 200, 200);
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.linkslist{
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  gap: 150px;
  margin-top: 40px;
}


.linkstitulo1{
  font-weight: bold;
  font-size: 23px;
}
@media (max-width: 1080px){
  .container{
      margin-left: 1rem;
      margin-right: 1rem;
  }
}   

@media(max-width: 992px){
  .navbar .links, 
  .navbar .action_btn{
      display: none;
  }
  header {
    position: fixed;
    width: 100%;
    padding: 7px 15px;
    z-index: 1000;
}

  .navbar .toggle_btn{
      display: block;
  }

  .dropdown_menu{
      display: block;
      width: 200px;
      right: -10px;
  }

  .logos-slide img{
    height: 80px;
    margin: 0 30px;
  }

  .propiedades{
    border-radius: 40px;
  }


}

@media (max-width: 880px){
  section{
      padding: 4rem 0 3rem;
  }

  .inmuebles{
    margin-top: 0px;
  }
  .quicklinks{
    padding: 0;
}
  .properties-container{
      grid-template-columns: repeat(auto-fit,minmax(200px,auto));
      gap: 1rem;
      padding: 0 10px;
  }
}   



@media(max-width: 576px){
  .dropdown_menu{
      right: -10px;
      width: 200px;
  }

  
  .linkslist{
    margin-top: 10px;
    padding: 0 5px;
    flex-direction: column;
    gap: 0;
    text-align: justify;
    padding-left: 20px;
  }
}

@media (max-width:442px){
 
  .properties-container{
      padding: 0;
  }
 
}

@media (max-width:420px){
 
  .select-menu{
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 30px;
  }
 
}

