.vista-cuadricula { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 20px; }
.vista-lista { display: flex; flex-direction: column; gap: 20px; padding: 20px; }
.tarjeta {
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 255, 0.3);
    transition: box-shadow 0.3s;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.tarjeta:hover {
    box-shadow: 0 0 20px rgba(0, 0, 255, 0.6);
}
.tarjeta img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.vista-lista .tarjeta {
    flex-direction: row;
    align-items: center;
}
.vista-lista .tarjeta img {
    width: 300px;
    height: 250px;
    margin-right: 20px;
}
.info {
    padding: 16px;
}
.etiqueta {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    top: 10px;
    left: 10px;
}
.detalles {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
}
.detalles span {
    display: flex;
    align-items: center;
}
.detalles i {
    margin-right: 5px;
}


        .vista-cuadricula { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 20px; }
        .vista-lista { display: flex; flex-direction: column; gap: 20px; padding: 20px; }
        .tarjeta {
            padding: 0;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 255, 0.3);
            transition: box-shadow 0.3s;
            background: white;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .tarjeta:hover {
            box-shadow: 0 0 20px rgb(255, 196, 3);
        }
        .tarjeta img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        .vista-lista .tarjeta {
            flex-direction: row;
            align-items: center;
        }
        .vista-lista .tarjeta img {
            width: 300px;
            height: 250px;
            margin-right: 20px;
        }
        .info {
            padding: 16px;
        }
        .etiqueta {
            position: absolute;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            top: 10px;
            left: 10px;
        }
        .detalles {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 14px;
        }
        .detalles span {
            display: flex;
            align-items: center;
        }
        .detalles i {
            margin-right: 5px;
        }

        .contact-section {
    position: relative;
    width: 100%;
    height: 50vh; 
    background: url('/images/propie.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-box {
    background: rgba(0, 0, 0, 0.5); 
    color: white;
    padding: 20px 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box h1 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
h1.text-2xl {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color: #FFB700;
    background: linear-gradient(90deg, rgba(255, 183, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Cinzel', serif; 
}
