@import url('https://fonts.googleapis.com/css2?family=Ysabeau+Office:ital,wght@0,1..1000;1,1..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  color: #000;
  font-family: "Ysabeau Office";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* BUSCA RAPIDA */

.tipo-buscarapida {
  color: #FFF;
  text-align: center;
  font-family: "Ysabeau Office";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

.tipo-buscarapida.active {
  color: #E4032E;
  text-align: center;
  font-family: "Ysabeau Office";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: #fff;

}

.tipo-buscarapida.active button.eventotiponegocio[type="button"] {
  font-weight: bold;
}

#filter_busca::placeholder {
  color: #fff;
}

.btn-busca-rapida {
  color: #707070;
  text-align: center;
  font-family: "Ysabeau Office";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 191px;
  height: 42px;
  border-radius: 0 5px 5px 0;
  background: #FFF;
}

/* Efeito Busca Rapida */

.progress-btn {
  position: relative;
  color: #707070;
  text-align: center;
  font-family: "Ysabeau Office";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  width: 191px;
  height: 42px;
  border-radius: 0 5px 5px 0;
  background: #FFF;
  transition: color 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

/* camada de fundo animada */

.progress-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #E4032E;
  width: 0%;
  z-index: -1;
  transition: width 0.4s ease;
}

/* ao passar o mouse */

.progress-btn:hover {
  color: #FFF;
  /* troca a cor da fonte */
  font-weight: bold;
}

.progress-btn:hover::before {
  width: 100%;
  /* expande o fundo */
}

@keyframes progress-anim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Destaques */

.loadDestaque button {
  color: #B7B7B7;
  text-align: center;
  font-family: "Ysabeau Office";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  padding-left: 60px;
  padding-right: 60px;
}

.loadDestaque button.active {
  border-bottom: 5px solid #E4032E;
  color: #000;
  text-align: center;
  font-family: "Ysabeau Office";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

/* Efeito fundo hover foto home */

.hover-fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-selecao:hover .transparente {
  background-color: rgba(0, 0, 0, 0.0);
}

.card-selecao:hover .hover-fundo.hidden {
  display: block !important;
  cursor: pointer;
  animation: subir 0.2s forwards;
}

@keyframes subir {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  50% {
    opacity: 0;
    transform: translateY(20%);
    /* ainda invisível, se quiser pode ajustar */
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    /* aparece no final */
  }
}

/* Destaque */

.des-opacidade {
  background: rgba(0, 0, 0, 0.6);
}

.des-tamanho1 {
  width: 135px;
  height: 197px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding-top: 89px;
}

.bg-bairro-pinheiros:hover .des-tamanho1 {
  width: 100%;
  height: 100%;
  padding-top: 254px;
}

.bg-bairro-pinheiros:hover .des-tamanho1 svg {
  display: block;
}

.des-tamanho2 {
  width: 206px;
  height: 130px;
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 50px;
}

.bg-bairro-itaim:hover .des-tamanho2 {
  width: 100%;
  height: 100%;
  padding-top: 53px;
}

.bg-bairro-itaim:hover .des-tamanho2 svg {
  display: block;
}

.des-tamanho3 {
  width: 206px;
  height: 125px;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-top: 55px;
}

.bg-bairro-jardins:hover .des-tamanho3 {
  width: 100%;
  height: 100%;
  padding-top: 232px;
}

.bg-bairro-jardins:hover .des-tamanho3 svg {
  display: block;
}

.des-tamanho4 {
  width: 135px;
  height: 197px;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 93px;
}

.bg-bairro-moema:hover .des-tamanho4 {
  width: 100%;
  height: 100%;
  padding-top: 94px;
}

.bg-bairro-moema:hover .des-tamanho4 svg {
  display: block;
}

/* Busca Rapida */

.busca_lista {
  position: absolute;
  right: 339px;
  top: 78px;
  background: #fff;
  padding: 10px;
  width: 361px;
}

section svg.voltar {
  position: absolute;
  z-index: 9;
  left: -21px;
  top: 246px;
}

section svg.proximo {
  position: absolute;
  z-index: 9;
  right: -24px;
  top: 246px;
}

section.slider svg.voltar {
  position: absolute;
  z-index: 9;
  left: -36px;
  top: 50%;

}

section.slider svg.proximo {
  position: absolute;
  z-index: 9;
  right: -36px;
  top: 50%;
  

}

section[data-value="fotos-imovel"] svg.voltar {
    position: absolute;
    z-index: 9;
    left: 29px;
    top: 50%;
}

section[data-value="fotos-imovel"] svg.proximo {
    position: absolute;
    z-index: 9;
    right: 29px;
    top: 50%;
}

.datepicker {
    width: 425px !important;
    height: 282px !important;
}

.datepicker-inline {
    width: 425px !important;
    height: 282px !important;
}

.datepicker--cell.datepicker--cell-day.-focus.-selected:not(.-disabled) {
 background: #E4032E;
 color: #fff;
}

.datepicker--cell.datepicker--cell-day.-disabled {
  cursor: default;
  color: #aeaeae;
}

.radio-group {
    display: flex;
    justify-content: space-between;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group input[type="radio"] + label {
    border: 1px solid #ccc;   
    padding: 10px 10px;
    cursor: pointer;
    margin-right: 10px;
    color: #000;    
}

.radio-group input[type="radio"] + label:last-child {
    margin-right: 0px;
}

.radio-group input[type="radio"]:checked + label {
    background: #E4032E; 
    color: #fff;
}

@media (max-width: 991px) {

  .des-tamanho1 {
    width: 100%;
    height: 90px;
    position: absolute;
    right: 0;
    bottom: 0px;
    padding-top: 34px;
  }

  .des-tamanho2 {
    width: 100%;
    height: 90px;
    position: absolute;
    right: 0;
    bottom: 0px;
    padding-top: 34px;
    top: initial;
}

  .des-tamanho3 {
    width: 100%;
    height: 90px;
    position: absolute;
    right: 0;
    bottom: 0px;
    padding-top: 34px;
}

  .des-tamanho4 {
    width: 100%;
    height: 90px;
    position: absolute;
    right: 0;
    bottom: 0px;
    padding-top: 34px;
     top: initial;
        
}

  /* Destaques */

  .loadDestaque button.active {
    font-size: 15px;
  }

  .loadDestaque button {
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .menuMobile {
        position: absolute;
        background: #d3d3d3;
        left: 0;
        width: 100%;
        top: 85px;
        border-top: 10px solid #000000;
  }

  section svg.proximo {
    right: 24px;
  }

  section svg.voltar {
    left: 24px;
  }

}