
a {
  color: #e05d35 !important;
}

a:hover {
  text-decoration: none !important;
}

.btn{
border-radius: 50px !important;
}

.btn-primary {
  color: #fff !important;
}

.btn:hover{
  border-radius: 50px !important;
}

.active {
  font-weight: bold !important;
}

.link-default{
  color: #e05d35 !important;
  text-decoration: none;
}

.mb-n2{
  margin-bottom: -2px;
}
.grey{
  color: #495057;
}
.link-default:hover{
  color: #be360c !important;
  text-decoration: none;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgb(255 71 0 / 25%) !important;
}

.btn-primary {
  color: #fff;
  background-color: #f1653a !important;
  border-color: #e05d35 !important;
}

.btn-primary:hover {
  color: #fff;
  background-color: #ce451c !important;
  border-color: #e05d35 !important;
}

#main, #thumbnails img {
  /*box-shadow: 2px 2px 10px 5px #b8b8b8;*/
  border-radius: 10px;
}

* {
  transition: all 0.5s ease;
}
.cd__main{
    /*background: linear-gradient(to right, #f2994a, #f2c94c) !important;*/

}
#thumbnails {
  text-align: center;
}
#thumbnails img {
  width: 150px;
  height: 80px;
  margin: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 480px) {
  #thumbnails img {
    width: 80px;
    height: 42px;
  }
}
#thumbnails img:hover {
  transform: scale(1.05);
}

#main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  margin: 20px auto;
}

@media only screen and (max-width: 480px) {
  #main {
    width: 100%;
  }
}

.hidden {
  opacity: 0;
}

/* SEARCH BAR*/


.search-bar {
  background-color: rgb(255, 255, 255);
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  align-items: center;
  max-width: 100%;
}

.col-md-3 .form-control {
  border: none;
  box-shadow: none;
  height: 48px;
  border-radius: 50px;
}

.search-bar .btn {
  border-radius: 50px;
  /*background-color: #2D2D2D;*/
  color: white;
  padding: 10px 20px;
}

.search-bar .dropdown-toggle {
  border-radius: 50px;
}

.dropdown-menu {
  padding: 20px;
  width: 300px;
  margin: 15px 0px !important;
  border-radius: 20px !important;
}

.dropdown-menu label {
  margin-bottom: 0;
  font-weight: bold;
}

.dropdown-menu input[type="text"] {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #dadada;
}

/*CARD*/
.property-card {
  position: relative;
  transition: transform 0.2s;
}

.property-card:hover {
  transform: scale(1.01);
}

.property-image {
  height: 200px;
  object-fit: cover;
}

.price-box {
  position: absolute;
  top: 5px;
  left: 5px; /* Mudando para right em vez de usar Bootstrap */
  background-color: #f1653a;
  color: white;
  padding: 5px;
  border-radius: 5px;
  font-size: 15px;
  z-index: 10; /* Para garantir que o elemento esteja sobreposto à imagem */
}
.form-group-filters{
margin-bottom: 0px !important; 
}

.elemento-superior{
  margin-bottom: -7px;
}
@media (max-width: 768px) {
  /* Estilos para dispositivos móveis */
  .col-md-3 .form-control {
    margin-bottom: 15px;
  }
  .h1, h1 {
    font-size: 2rem !important;
}
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  font-size: 30px;
  padding: 15px;
  border-radius: 50%;
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);*/
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  text-align: center;
  
  /* Centralização com flexbox */
  display: flex;
  justify-content: center;
  align-items: center;

  /* Remove o sublinhado */
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: #20c35a;
  /*box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);*/
  /* Remove o sublinhado */
  text-decoration: none;
}

.whatsapp-button i {
  color: white;
  /* Remove o sublinhado */
  text-decoration: none;
}

/*scroll to top */
.scroll-top {
  bottom: 20px;
  font-size: 20px;
  height: 40px;
  position: fixed;
  text-align: center;
  width: 40px;
  z-index: 10;
  cursor: pointer;
  transition: .3s;
  border-radius: 50%;
  line-height: 40px;
  right: -100px;
  color: #ffffff;
  background-color: rgba(255, 109, 0, 0.5);
  user-select: none;   /* Impede que o texto seja selecionado */
  pointer-events: auto; /* Garante que o elemento seja clicável */
  cursor: pointer;      /* Mostra o cursor de clique ao invés do cursor de texto */ }
  
  .scroll-top:hover {
    background-color: #ff6d00;
    transition: all .4s ease-in-out; }
  .scroll-top.active {
    right: 20px; }
    
    .scroll-top:focus {
      outline: none;        /* Remove o outline de foco (se necessário) */
    }
