.button-animation {
  text-decoration: none;
  position: relative;
  width: 180px;
  height: 45px;
  text-align: center;
  line-height: 35px;
  text-decoration: none;
  color: #0B0B3B;
  border: 4px solid #0B0B3B;

  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.5s;
  overflow: hidden;
  font-weight: bold;
}

.button-animation:link,
.button-animation:visited {
  color: #0B0B3B;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  margin-top: 30px;
}

.button-animation:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: 40px solid #0B0B3B;
  border-bottom: 40px solid #0B0B3B;
  border-right: 40px solid transparent;
  transition: all 0.5s;
  z-index: -1;
  transform: translateX(-100%);
}

.button-animation:hover:before {
  transform: translateX(0%);
}

.button-animation:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: 40px solid #0B0B3B;
  border-bottom: 40px solid #0B0B3B;
  border-left: 40px solid transparent;
  transition: all 0.5s;
  z-index: -1;
  transform: translateX(100%);
}

.button-animation:hover:after {
  transform: translateX(0%);
}

.button-animation:hover {
  color: white;
}



.button-animation-yellow {}


.button-animation-yellow {
  text-decoration: none;
  position: relative;
  width: 180px;
  height: 45px;
  text-align: center;
  line-height: 35px;
  text-decoration: none;
  color: #a78a46;
  border: 4px solid #a78a46;

  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.5s;
  overflow: hidden;
  font-weight: bold;
  z-index: 1;
}

.button-animation-yellow:link,
.button-animation-yellow:visited {
  color: #a78a46;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.button-animation-yellow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: 40px solid #a78a46;
  border-bottom: 40px solid #a78a46;
  border-right: 40px solid transparent;
  transition: all 0.5s;
  z-index: -1;
  transform: translateX(-100%);
}

.button-animation-yellow:hover:before {
  transform: translateX(0%);
}

.button-animation-yellow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: 40px solid #a78a46;
  border-bottom: 40px solid #a78a46;
  border-left: 40px solid transparent;
  transition: all 0.5s;
  z-index: -1;
  transform: translateX(100%);
}

.button-animation-yellow:hover:after {
  transform: translateX(0%);
}

.button-animation-yellow:hover {
  color: white;
}


/* BOTÃO VERMELHO */

.button-animation-red {}


.button-animation-red {
  text-decoration: none;
  position: relative;
  width: 180px;
  height: 45px;
  text-align: center;
  line-height: 35px;
  text-decoration: none;
  color: rgb(156, 0, 13);
  border: 4px solid rgb(156, 0, 13);

  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.5s;
  overflow: hidden;
  font-weight: bold;
  z-index: 1;
}

.button-animation-red:link,
.button-animation-red:visited {
  color: rgb(156, 0, 13);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.button-animation-red:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: 40px solid rgb(156, 0, 13);
  border-bottom: 40px solid rgb(156, 0, 13);
  border-right: 40px solid transparent;
  transition: all 0.5s;
  z-index: -1;
  transform: translateX(-100%);
}

.button-animation-red:hover:before {
  transform: translateX(0%);
}

.button-animation-red:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: 40px solid rgb(156, 0, 13);
  border-bottom: 40px solid rgb(156, 0, 13);
  border-left: 40px solid transparent;
  transition: all 0.5s;
  z-index: -1;
  transform: translateX(100%);
}

.button-animation-red:hover:after {
  transform: translateX(0%);
}

.button-animation-red:hover {
  color: white;
}


/* BOTÃO ANUNCIE */

.button-anuncie {
  margin-top: 30px;
}


.background-gradient-yellow {
  background: orange;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  height: 30px;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  padding: 5px;
  animation: gradientAnimation 5s linear infinite;
}



@keyframes gradientAnimation {
  0% {
    background: linear-gradient(45deg, #ff0000, #ff00ff);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }

  25% {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  }

  50% {
    background: linear-gradient(45deg, #00ffff, #00ff00);
    box-shadow: 0 0 15px rgba(255, 255, 255, 1);
  }

  75% {
    background: linear-gradient(45deg, #00ff00, #ffff00);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  }

  100% {
    background: linear-gradient(45deg, #ffff00, #ff0000);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
}


/* MENU */

.menu-website {
  display: grid;
  grid-template-columns: 20% 40% 20%;
  justify-content: center;
  align-items: center;
  font-family: 'Raleway', Arial, sans-serif;
  background-color: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.menu-website img{
width: 71%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.list-menu  {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.list-menu a:hover {
  color: white; /* Adicione esta linha para definir a cor do texto como branco durante a animação */
}


.list-menu li {
  list-style: none;
  margin: 0px 20px;
  transition: 0.5s;
}

.list-menu a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 5px;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  transition: all 0.3s;
  color: black;
}

.list-menu:hover a {
  filter: blur(1px);
  opacity: 1.5;
}



.list-menu  a:hover {
  transform: scale(1.0);
  opacity: 1;
  filter: blur(0);
}

.list-menu a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a78a46;

  transition: 0.3s;
  transform: scale(0);
  z-index: -1;
}

.list-menu a:hover:before {
  transform: scale(1.2);
  color: white;
}
.header-nav{
  display: none;
}

@media only screen and (max-width: 1120px) {
  .menu-website{
    display: none;
  }

  .header-nav{
    display: block;
  }
}



/*  */

.card-imoveis {
  transform: scale(1);
  transition: transform 0.3s ease;
}

.card-imoveis:hover {
  /* animation: scaleUp 0.5s ease-in-out forwards;  */
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}