        :root {
            --naranja: #e05c1a;
            --naranja-suave: #fff4ef;
            --gris-texto: #2c2c2c;
        }

        .hero-inmuebles {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
            padding: 60px 0 40px;
            position: relative;
            overflow: hidden;
        }
        .hero-inmuebles::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 350px; height: 350px;
            background: radial-gradient(circle, rgba(224,92,26,0.18) 0%, transparent 70%);
        }
        .hero-titulo {
            font-family: 'Russo One', sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }
        .hero-titulo span { color: var(--naranja); }

        /* Filtros */
        .filtros-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.10);
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }
        .btn-operacion {
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 600;
            border: 2px solid #e0e0e0;
            background: #fff;
            color: #555;
            transition: all 0.2s;
            text-decoration: none;
        }
        .btn-operacion:hover,
        .btn-operacion.activo {
            border-color: var(--naranja);
            background: var(--naranja);
            color: #fff;
        }
        .badge-cnt {
            background: rgba(224,92,26,0.12);
            color: var(--naranja);
            border-radius: 20px;
            padding: 2px 8px;
            font-size: 11px;
            font-weight: 700;
            margin-left: 4px;
        }
        .btn-operacion.activo .badge-cnt {
            background: rgba(255,255,255,0.25);
            color: #fff;
        }

        /* Cards */
        .inmueble-card {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #ececec;
            background: #fff;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .inmueble-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.10);
        }
        .inmueble-foto {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .foto-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #bbb;
            font-size: 2.5rem;
        }
        .badge-operacion {
            position: absolute;
            top: 12px; left: 12px;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .badge-alquiler      { background: #1976d2; color: #fff; }
        .badge-venta         { background: var(--naranja); color: #fff; }
        .badge-alquiler_venta{ background: #7b1fa2; color: #fff; }
        .badge-destacado {
            position: absolute;
            top: 12px; right: 12px;
            background: #ffd600;
            color: #333;
            border-radius: 20px;
            padding: 4px 10px;
            font-size: 10px;
            font-weight: 700;
        }
        .inmueble-precio {
            font-family: 'Russo One', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--naranja);
        }
        .inmueble-titulo {
            font-weight: 700;
            font-size: 15px;
            color: var(--gris-texto);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .inmueble-meta {
            font-size: 12px;
            color: #888;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .inmueble-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .btn-wsp-inm {
            background: #25D366;
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 8px 14px;
            font-size: 13px;
            font-weight: 600;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            text-decoration: none;
            transition: background 0.2s;
        }
        .btn-wsp-inm:hover { background: #1fb855; color: #fff; }
        .btn-ver-inm {
            background: transparent;
            color: #1976d2;
            border: 1.5px solid #1976d2;
            border-radius: 10px;
            padding: 8px 14px;
            font-size: 13px;
            font-weight: 600;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .btn-ver-inm:hover { background: #1976d2; color: #fff; }

        /* Mapa */
        #mapaInmuebles {
            height: 420px;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #ececec;
        }

        /* Sin resultados */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #aaa;
        }
        .empty-state i { font-size: 3rem; margin-bottom: 16px; display: block; }
    