

        /* Estilos centrados en IDs */
        #inmo-main-card {
            background: var(--bs-body-bg);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            overflow: hidden;
            border: 1px solid var(--inmo-border);
        }

        #inmo-header {
            padding: 15px 20px;
            border-bottom: 1px solid var(--inmo-border);
        }

        #inmo-logo i {
            color: var(--bs-primary);
            font-size: 1.4rem;
        }

        #inmo-tabs-container {
            border-bottom: 1px solid var(--inmo-border);
            background: var(--bs-body-bg);
            overflow-x: auto;
            scrollbar-width: none;
            display: flex;
            padding: 0 10px;
        }

        #inmo-tabs-container::-webkit-scrollbar {
            display: none;
        }

        .tab-button {
            padding: 12px 37px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: #64748b;
            text-decoration: none;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.2s;
            position: relative;
            border: none;
            background: none;
            min-width: 90px;
        }
        
                .tab-button i {
                    font-size: 35px !important;
                }

        

        .tab-button.active {
            color: var(--bs-primary);
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 3px;
            background: var(--bs-primary);
            border-radius: 10px 10px 0 0;
        }

        #inmo-content-area {
            position: relative;
            min-height: 200px;
        }

        /* Loader por ID */
        #inmo-loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(4px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 100;
        }
        
        #loader-desk{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(4px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 100;
        }

        #inmo-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid var(--inmo-orange-light);
            border-top: 3px solid var(--bs-primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Formulario por ID */
        #inmo-search-form {
            padding: 20px;
            transition: opacity 0.3s ease;
        }

        #inmo-search-form.is-loading {
            opacity: 0.3;
            pointer-events: none;
        }

        .inmo-label {
            font-weight: 600;
            font-size: 13px;
            color: #475569;
            margin-bottom: 6px;
            display: block;
        }

        .inmo-input-field {
            width: 100%;
            height: 50px;
            border: 1px solid var(--inmo-border);
            border-radius: 12px;
            padding: 0 15px;
            font-size: 14px;
            color: var(--inmo-text);
            background-color: #fff;
            appearance: none;
            transition: border-color 0.2s;
        }

        .inmo-input-field:focus {
            outline: none;
            border-color: var(--bs-primary) !important;
            box-shadow: 0 0 0 4px var(--inmo-orange-light);
        }

        #inmo-btn-search {
            width: 100%;
            height: 50px;
            background: var(--bs-primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: 0.3s;
        }

        #inmo-footer {
            padding: 12px 20px;
            background: #f8fafc;
            border-top: 1px solid var(--inmo-border);
            font-size: 11px;
            color: #94a3b8;
        }

        /* Media Queries para Escritorio usando IDs */
        @media (min-width: 992px) {
            #inmo-search-form {
                padding: 40px;
            }
            #inmo-form-grid {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
                gap: 15px;
                align-items: end;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
    /* Esto hace que el loader de móvil use el mismo diseño que el de PC */