/* INDEX */
/* Buscador */
.bgBuscador {
    background: url(../../img/index/bannerBuscador.webp);
    z-index: 0;
    position: relative;
}

.bgBuscador::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(1, 25, 100, 0.5);
    z-index: -1;
}

/*** Categorias ***/
.cat-item div {
    background: var(--cuarto);
    border: 1px dashed rgba(242, 220, 110, .3);
    transition: .2s;
}

.cat-item {
    transition: .2s ease-out;
}
.cat-item:hover {
    transform: translateY(-5px);
}

.cat-item:hover div {
    background: var(--quinto);
    border-color: transparent;
}

.cat-item div * {
    transition: .2s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}

/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primario);
    border-radius: 1rem;
    transform: skew(20deg);
    z-index: 1;
}

/*** Property List ***/
.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(1, 25, 100, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(1, 25, 100, .3) !important;
}

.custom-position {
    top: 40px; /* Ajusta este valor según tus necesidades */
  }