@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400&display=swap');

:root{
   --main-color:#FFD700;
   --light-color:#666;
   --light-bg:#eee;
   --white:#ffffff;
   --black:#303030;
   --border:.1rem solid var(--light-color);
   --box-shodow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
   font-family: 'Montserrat', sans-serif;
   margin: 0; padding: 0;
   box-sizing: border-box;
   outline: none; border: none;
   text-decoration: none;
}

*::selection{
   background-color: var(--main-color);
   color: var(--white);
}

*::-webkit-scrollbar{
   height: .5rem;
   width: 1rem;
}

*::-webkit-scrollbar-track{
   background-color: transparent;
}

*::-webkit-scrollbar-thumb{
   background-color: var(--main-color);
   border-radius: 5rem;
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   scroll-padding-top: 10rem;
}

body{
   background-color: var(--light-bg);
}

/* Header */
body{
   overflow: hidden;
   background-color: #ffffff;
}
header{
   height: 60px;
   display: flex;
   align-items: center;
   position: relative;
}

/*Barra de Navegação*/

.navbar {
   background-color: #ffffff;
   color: #fff;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 20px;
   height: 50px;
   z-index: 1000;
 }
 
 .logo img{
   width: 140px;
   position: relative;
   top: 12px;
   margin: 70px;
 }
 
 .nav-links-desktop {
   list-style: none;
   margin: 0;
   padding: 0;
   height: 15px;
 }
 
 .nav-links-desktop li {
   padding: 10px;
   display: inline;
 }
 
 .nav-links-desktop a,
 .nav-links-mobile a {
   color: #555555;
   font-weight: bold;
   text-decoration: none;
   transition: 0.3s;
   margin: 10px;
 }
 
 .nav-links-desktop a:hover {
   color: #FFD700;
 }
 
 .mobile-menu {
   display: none;
   position: fixed;
   top: 50px;
   right: 0;
   width: 60%;
   height: 100%;
   background-color: rgba(255, 255, 255, 0.9);
   flex-direction: column;
   align-items: center;
   font-size: 1.8rem;
   z-index: 1000;
 }
 
 .nav-links-mobile {
   display: flex;
   flex-direction: column;
   text-align: center;
   gap: 1.2rem;
   width: 80%;
   list-style: none;
   padding: 0;
 }
 
 .nav-links-mobile li {
   border-bottom: 1px solid #555555;
   padding-bottom: 1.2rem;
 }
 
 .hamburger,
 .close {
   font-size: 24px;
   background: none;
   border: none;
   color: #555555;
   cursor: pointer;
   display: none;
 }
 
 .close {
   margin-top: 20px;
   margin-right: 20px;
   display: block;
   align-self: end;
 }
 
 .flex {
   display: flex;
 }

a.active{
   background: #14ff72cb;
   border-radius: 2px;
}

a.active:hover{
   color: #fff;
   transition: .3s;
}

section{
   padding: 3rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.heading{
   text-align: center;
   padding-bottom: 2.5rem;
   font-size: 4rem;
   color: var(--black);
   text-transform: capitalize;
}

.btn,
.inline-btn{
   margin-top: 1rem;
   padding: 1rem 3rem;
   background-color: var(--main-color);
   color: var(--black);
   cursor: pointer;
   text-align: center;
   font-size: 1.8rem;
   text-transform: capitalize;
}

.btn:hover,
.inline-btn:hover{
   background-color: var(--black);
   color: var(--white);
}

.btn{
   display: block;
   width: 100%;
   border-radius: 10px;
}

.inline-btn{
   display: inline-block;
}


.box{
   border-radius: 10px;
       overflow: hidden;
   }

.listings .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, 35rem);
   gap: 2rem;
   justify-content: center;
   align-items: flex-start;
}

.listings .box-container .box{
   background-color: var(--white);
   box-shadow: var(--box-shodow);
   padding: 2rem;
   overflow-x: hidden;
}

.listings .heading{
   visibility: hidden;
}

.listings .box-container .box .admin{
   display: flex;
   align-items: center;
   gap: 1.5rem;
}

.listings .box-container .box .admin h3{
   height: 4.5rem;
   line-height: 4.4rem;
   width: 4.5rem;
   border-radius: 50%;
   font-size: 2rem;
   color: var(--black);
   background-color: var(--light-bg);
   text-align:center;
}

.listings .box-container .box .admin p{
   font-size: 1.7rem;
   color: var(--black);
   padding-bottom: .3rem;
}

.listings .box-container .box .admin span{
   font-size: 1.5rem;
   color: var(--light-color);
}

.listings .box-container .box .thumb{
   position: relative;
   height: 20rem;
   overflow: hidden;
   margin: 1.5rem 0;
   border-radius: 10px;
}

.listings .box-container .box .thumb img{
   height: 100%;
   width: 100%;
   transition: .2s linear;
   border-radius: 10px;
   object-fit: cover;
}

.listings .box-container .box:hover .thumb img{
   transform: scale(1.1);
   border-radius: 10px;
   overflow: hidden;
   object-fit: cover;
}

.listings .box-container .box .thumb .total-images{
   position: absolute;
   top: 1rem; left: 1rem;
   background-color: rgba(0,0,0,.3);
   color: var(--white);
   padding: .5rem 1.5rem;
   font-size: 1.6rem;
   z-index: 1;
   border-radius: 10px;
}

.listings .box-container .box .thumb .total-images i{
   margin-right: .7rem;
}

.listings .box-container .box .thumb .type{
   position: absolute;
   bottom: 1rem; left: .7rem;
   z-index: 1;
}

.listings .box-container .box .thumb .type span{
   margin-right: .7rem;
   padding: .5rem 1.5rem;
   color: var(--black);
   background-color: var(--main-color);
   font-size: 1.6rem;
   border-radius: 10px;
}

.listings .box-container .box .thumb .save{
   position: absolute;
   top: 1rem; right: 1rem;
   z-index: 1;
}

.listings .box-container .box .thumb .save button{
   background-color: rgba(0,0,0,.3);
   color: var(--white);
   padding: .7rem 1rem;
   font-size: 1.6rem;
   cursor: pointer;
   border-radius: 10px;
}

.listings .box-container .box .thumb .save button:hover{
   background-color: var(--main-color);
}

.listings .box-container .box .name{
   font-size: 2rem;
   text-overflow: ellipsis;
   overflow-x: hidden;
   color: var(--black);
   margin-bottom: .5rem;
}

.listings .box-container .box .location{
   padding-top: 1rem;
   font-size: 1.6rem;
   color: var(--light-color);
}

.listings .box-container .box .location i{
   margin-right: 1rem;
   color: var(--main-color);
}

.listings .box-container .box .flex{
   display: flex;
   background-color: var(--light-bg);
   padding: 1.5rem;
   justify-content: space-between;
   align-items: center;
   margin: 1.5rem 0;
   flex-wrap: wrap;
   gap: 1.5rem;
   border-radius: 10px;
}

.listings .box-container .box .flex p{
   font-size: 1.6rem;
   flex: 1 1 4rem;
}

.listings .box-container .box .flex p span{
   color: var(--light-color);
}

.listings .box-container .box .flex p i{
   margin-right: 1rem;
   color: var(--main-color);
}




.view-property .details{
   background-color: var(--white);
   box-shadow: var(--box-shodow);
   padding: 2rem;
   overflow-x: hidden;
   border-radius: 10px;
}

.view-property .details .thumb{
   background-color: var(--black);
   padding: 1.5rem;
   margin-bottom: 1.5rem;
   border-radius: 10px;
}

.view-property .details .thumb .big-image img{
   height: 40rem;
   width: 100%;
   object-fit: contain;
   border-radius: 10px;
}

.view-property .details .thumb .small-images{
   display: flex;
   justify-content: center;
   gap: 1.5rem;
   padding-top: 1rem;
   flex-wrap: wrap;
   border-radius: 10px;
}

.view-property .details .thumb .small-images img{
   height: 7rem;
   width: 10rem;
   object-fit: cover;
   cursor: pointer;
   transition: .2s linear;
   border-radius: 10px;
}

.view-property .details .thumb .small-images img:hover{
   transform: scale(1.1);
}

.view-property .details .name{
   font-size: 2rem;
   text-overflow: ellipsis;
   overflow-x: hidden;
   margin-bottom: .5rem;
}

.view-property .details .location{
   padding-top: 1rem;
   font-size: 1.6rem;
   color: var(--light-color);
}

.view-property .details .location i{
   margin-right: 1rem;
   color: var(--main-color);
}

.view-property .details .info{
   display: flex;
   background-color: var(--light-bg);
   padding: 1.5rem;
   margin: 1.5rem 0;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 2rem;
   border-radius: 10px;

}

.view-property .details .info p{
   font-size: 1.7rem;
}

.view-property .details .info p span,
.view-property .details .info p a{
   color: var(--light-color);
}

.view-property .details .info p a:hover{
   text-decoration: underline;
}

.view-property .details .info p i{
   margin-right: 1.5rem;
   color: var(--main-color);
}

.view-property .details .title{
   font-size: 2rem;
   color: var(--black);
   padding-bottom: 1.5rem;
   border-bottom: var(--border);
}

.view-property .details .flex{
   margin: 1.5rem 0;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}

.view-property .details .flex .boxx{
   flex: 1 1 40rem;
}

.view-property .details .flex .boxx p{
   padding: .5rem 0;
   font-size: 1.6rem;
   color: var(--light-color);
}

.view-property .details .flex .boxx i{
   color: var(--main-color);
   margin-right: 1.5rem;
}

.view-property .details .description{
   padding: .5rem 0;
   margin-top: .5rem;
   font-size: 1.6rem;
   color: var(--light-color);
   line-height: 1.5;
}
.footer {
   clear: both;
   background-color: #FFD700;
   padding: 15px;
}

.footer p {
   color: white;
   text-align: center;
}



@media (max-width:991px){

   html{
      font-size: 55%;
   }

}

@media (max-width:768px){



   .view-property .details .thumb .big-image img{
      height: auto;
   }

   .view-property .details .thumb .small-images img{
      height: 4rem;
      width: 6rem;
   }


}
@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .header .navbar .flex .logo{
      font-size: 1.8rem;
   }

   .home .center form .flex{
      gap: 0;
   }

   .listings .box-container{
      grid-template-columns: 1fr;
   }

   .reviews .box-container{
      grid-template-columns: 1fr;
   }

}
@media screen and (max-width: 999px){
    
   header{
       padding-left: 50px;
   }

   .list .item .content{
       left: 50px;
   }

   .content .title, .content .name{
       font-size: 70px;
   }

   .content .des{
       font-size: 16px;
   }

}

@media screen and (max-width: 775px) {
   header nav a{
   font-size: 14px;
   margin-right: 0;
   }

   .nav-links-desktop {
       display: none;
   }
   
   .hamburger {
       display: block;
   }
   
}

@media screen and (max-width: 690px){
   .list .item .content{
       top: 30%;
   }

   .content .title, .content .name{
       font-size: 35px;
   }

   .content .btn button{
       padding: 10px 15px;
       font-size: 10px;
   }
   
}