﻿

.viviendas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: Arial, sans-serif !important;
}

.subtitle {
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    font-family: Arial, sans-serif !important;
}

.modelos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    font-family: Arial, sans-serif !important;
}

.modelo-card {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    font-family: Arial, sans-serif !important;
}

    .modelo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.modelo-imagen {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Imagen Puma */
.modelo-puma {
    background-image: url('/imagenes/topologia/fachadaPuma1.jpg');
}

.modelo-content {
    padding: 1.5rem;
    font-family: Arial, sans-serif !important;
}

    .modelo-content h3 {
        color: #2c3e50;
        margin-top: 0;
        font-family: Arial, sans-serif !important;
    }

.caracteristicas {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-family: Arial, sans-serif !important;
}

    .caracteristicas li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

.programas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    font-family: Arial, sans-serif !important;
}

.programa-tag {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: Arial, sans-serif !important;
}

/* Estilo para cuando falla la carga de imagen
    .modelo-imagen:before {
        content: "Modelo IPV";
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background: #e0e0e0;
        color: #555;
        font-family: Arial, sans-serif;
        } */

