
/* shortcode ultimos_inmuebles */

.latest-inmuebles {
    padding-top: 2%;
    text-align: center;
    
}

.latest-inmuebles .inmueble-row {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}

.inmueble-item {
    width: 32%;
    margin-bottom: 20px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    height: 400px;
}

.inmueble-item img {
    width: 100%;
    height: 40%;
    object-fit: cover; 
    margin-bottom: inherit;
}

.inmueble-precio {
    position: absolute;
    border-radius: 5px;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    padding: 5px 10px; 
}

.inmueble-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
    position: relative;
}

.btn-inmueble {
    display: block;
    background-color: #333;
    border-radius: 5px;
    color: #fff;
    font-size: 0.8em;
    width: 50%;
    margin-left: 25%;
    text-align: center;
    padding: 5px 10px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-bottom: 4%;
}

.btn-inmueble:hover {
    color: #fff;
    background-color: #eb5d0b;
}

@media (max-width: 768px) {
    .inmueble-item {
        width: 100%;
    }
    .info-item {
        width: 100%;
    }
}